/* Custom Styles & Utilities */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Animation Classes */
.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-image {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.reveal-image.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered delays for hero */
.reveal-text:nth-child(1) { transition-delay: 0.1s; }
.reveal-text:nth-child(2) { transition-delay: 0.3s; }
.reveal-text:nth-child(3) { transition-delay: 0.5s; }
.reveal-text:nth-child(4) { transition-delay: 0.7s; }

/* Mobile Menu Transitions */
#mobile-menu {
    transition: max-height 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
}

#mobile-menu.open {
    max-height: 400px;
}
