/* 
    Summer Beach Resort - Custom Styles
    Bold Editorial Aesthetic
*/

:root {
    --forest: #1A3C34;
    --off-white: #F9F7F2;
    --sand: #D4CFC7;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--off-white);
    color: var(--forest);
}

/* Typography Tweaks */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
}

p {
    font-family: var(--font-sans);
    font-weight: 300;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.6, 0.2, 1) forwards;
    opacity: 0; /* Start hidden */
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--off-white);
}
::-webkit-scrollbar-thumb {
    background: var(--forest);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #2c5c52;
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

/* Image Hover Effects */
img {
    transition: transform 0.7s ease;
}
