/* Custom Styles for StichWell */

/* Ensure smooth scrolling when clicking on navigation links */
html {
    scroll-behavior: smooth;
}

/* Custom fonts */
.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

.font-lato {
    font-family: 'Lato', sans-serif;
}

/* Custom animations (Tailwind doesn't have these by default) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 1s ease-out forwards;
}

.animate-fadeInUp.delay-100 {
    animation-delay: 0.1s;
}

.animate-fadeInUp.delay-200 {
    animation-delay: 0.2s;
}

/* Basic styling for the contact form aspect ratio */
/* This is a common trick for responsive iframes/videos */
.aspect-w-16 {
    position: relative;
    width: 100%;
}

.aspect-h-9 {
    padding-bottom: 56.25%; /* 9/16 * 100% */
}

.aspect-w-16 iframe, .aspect-h-9 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}