/* ============================================
   MODELS, DANCERS, AND EXOTICS — STYLESHEET
   Bold Editorial · Teal & Slate Grey
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
}

::selection {
    background: rgba(20, 184, 166, 0.3);
    color: #f0fdfa;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #020617;
}
::-webkit-scrollbar-thumb {
    background: #115e59;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0d9488;
}

/* ---------- Navbar ---------- */
#navbar {
    background: transparent;
    transition: background 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease;
}

#navbar.scrolled {
    background: rgba(2, 6, 23, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(17, 94, 89, 0.15);
}

/* ---------- Hero Animations ---------- */
.hero-title {
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform: translateY(40px);
    opacity: 0;
}

.hero-subtitle {
    animation: slideUp 1s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform: translateY(30px);
    opacity: 0;
}

.hero-desc {
    animation: slideUp 1s 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform: translateY(30px);
    opacity: 0;
}

.hero-image {
    animation: fadeInRight 1.2s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateX(40px);
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ---------- Reveal Animations (below fold) ---------- */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.hidden-reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* Staggered children */
.reveal > * {
    transition-delay: calc(var(--index, 0) * 0.1s);
}

/* ---------- Mobile Menu ---------- */
#mobile-menu.open {
    transform: translateX(0);
}

#mobile-menu a {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ---------- Image hover glow ---------- */
.group:hover img {
    filter: brightness(1.05);
}

/* ---------- Button ripple effect ---------- */
button, a {
    position: relative;
    overflow: hidden;
}

/* ---------- Form focus states ---------- */
input:focus, textarea:focus {
    box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.3);
}

/* ---------- Mobile responsive ---------- */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .hero-title span {
        display: inline;
    }

    #hero {
        padding-top: 80px;
    }

    .hero-image {
        display: none;
    }

    section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .font-serif.text-4xl,
    .font-serif.text-5xl,
    .font-serif.text-6xl {
        line-height: 1.1;
    }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal.hidden-reveal {
        opacity: 1;
        transform: none;
    }
}

/* ---------- Print ---------- */
@media print {
    #navbar, #mobile-menu {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
