/* Custom Styles for JYOO Corporation */

:root {
    --brand-cream: #fdfcf9;
    --brand-gold: #c5a059;
    --brand-olive: #5a5a40;
    --brand-ink: #1a1a1a;
}

body { background: var(--brand-cream); color: var(--brand-ink); }

.bg-white { background-color: rgba(255,255,255,0.9); }

body {
    overflow-x: hidden;
}

/* Reveal Animation on Scroll */
.reveal {
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-700 { transition-delay: 0.7s; }

/* Navbar (match other pages) */
#navbar {
    background: linear-gradient(135deg, rgba(253, 252, 249, 0.94) 0%, rgba(197, 160, 89, 0.08) 100%);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.16);
}

nav.scrolled {
    background: linear-gradient(135deg, rgba(253, 252, 249, 0.95) 0%, rgba(197, 160, 89, 0.1) 100%);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 2px 8px rgba(197, 160, 89, 0.1);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

nav a:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

nav a:first-child:hover span {
    animation: glow 1s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(197, 160, 89, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(197, 160, 89, 0.8), 0 0 30px rgba(197, 160, 89, 0.6);
    }
}

@media (max-width: 767px) {
    #navbar {
        background: linear-gradient(135deg, rgba(253, 252, 249, 0.97) 0%, rgba(197, 160, 89, 0.06) 100%);
        backdrop-filter: blur(14px);
    }

    #mobile-menu {
        background: rgba(253, 252, 249, 0.98);
        border-top: 1px solid rgba(197, 160, 89, 0.16);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
        border-radius: 0;
        padding-top: 0.45rem;
        padding-bottom: 0.45rem;
    }

    #mobile-menu .navbar-mobile-link {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.2rem;
        font-weight: 600;
        line-height: 1.3;
        color: #1a1a1a;
        padding: 0.58rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    #mobile-menu-toggle {
        color: #1a1a1a;
        font-size: 1.55rem;
        line-height: 1;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--brand-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-gold);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-olive);
}

/* Global intro background */
.intro-bg {
    background-image: url("../img/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

