/* Sacred Geometry Landing Page - Custom Styles */

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
    --brand-dark: #2D2A26;
    --brand-gold: #B8956E;
    --brand-accent: #B91C1C;
    --brand-light: #F5F0E8;
    --brand-sage: #4A6741;
    --brand-text: #3D3A36;
    --brand-muted: #7A7570;
}

/* ========================================
   BASE STYLES
   ======================================== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background-color: var(--brand-light);
    color: var(--brand-text);
}

/* ========================================
   SCROLLBAR HIDE
   ======================================== */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ========================================
   HERO SECTION STYLES
   ======================================== */
.hero-bg {
    position: relative;
    overflow: hidden;
    background: #2D2A26;
}

/* Hero Image Positioning */
.hero-mobile-image {
    object-position: center center; /* Default: center on desktop */
}

/* Empower Thyself Hero - Pentagram Background (Parallax + Full Visibility) */
#top .hero-pentagram-bg {
    background-color: #2D2A26;
}

.pentagram-parallax-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    will-change: transform;
}

/* Mobile: Show right side of hero image (Tree of Life) */
@media (max-width: 768px) {
    #top .hero-mobile-image,
    section#top .hero-mobile-image {
        object-position: 75% center !important;
    }
}

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-parallax-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    object-fit: cover;
    object-position: center 60%;
}

/* Hero Gold Line */
.hero-gold-line {
    height: 2px;
    width: 120px;
    background: linear-gradient(90deg, transparent, #B8956E, transparent);
    animation: lineExpand 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

@keyframes lineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 120px;
        opacity: 1;
    }
}

/* Hero Headline Glow Effect */
.hero-headline {
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 1),
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 4px 8px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(184, 149, 110, 0.25);
}

/* Hero Text - Strong shadows for clear readability over image */
.hero-text-shadow {
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 1),
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 4px 8px rgba(0, 0, 0, 0.7);
}

.hero-headline.hero-animate {
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards, heroGlow 4s ease-in-out infinite 1.5s;
}

/* Responsive Hero Typography */
@media (min-width: 1280px) {
    .hero-headline-xl {
        font-size: 5.5rem;
        line-height: 1.05;
    }
}

@media (min-width: 1536px) {
    .hero-headline-xl {
        font-size: 6.5rem;
    }
}

/* ========================================
   HERO ANIMATIONS
   ======================================== */
@keyframes heroFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroGlow {
    0%, 100% {
        text-shadow: 0 0 40px rgba(184, 149, 110, 0.2);
    }
    50% {
        text-shadow: 0 0 80px rgba(184, 149, 110, 0.4);
    }
}

.hero-animate {
    opacity: 0;
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-animate-delay-1 { animation-delay: 0.1s; }
.hero-animate-delay-2 { animation-delay: 0.3s; }
.hero-animate-delay-3 { animation-delay: 0.5s; }
.hero-animate-delay-4 { animation-delay: 0.7s; }
.hero-animate-delay-5 { animation-delay: 0.9s; }

.hero-animate:nth-child(1) { animation-delay: 0.1s; }
.hero-animate:nth-child(2) { animation-delay: 0.2s; }
.hero-animate:nth-child(3) { animation-delay: 0.3s; }
.hero-animate:nth-child(4) { animation-delay: 0.4s; }
.hero-animate:nth-child(5) { animation-delay: 0.5s; }
.hero-animate:nth-child(6) { animation-delay: 0.6s; }

/* Hero CTA Button Enhancement */
.hero-cta-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-cta-primary:hover::before {
    left: 100%;
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 149, 110, 0.4);
}

/* Hero Secondary Link */
.hero-cta-secondary {
    position: relative;
    transition: all 0.3s ease;
}

.hero-cta-secondary::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #B8956E;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.hero-cta-secondary:hover::after {
    width: 100%;
}

.hero-cta-secondary:hover {
    color: #B8956E;
}

/* ========================================
   NAV INITIATION - GLOW EFFECT
   ======================================== */
.nav-initiation {
    color: var(--brand-gold) !important;
    text-shadow: 0 0 12px rgba(184, 149, 110, 0.6), 0 0 24px rgba(184, 149, 110, 0.4);
    font-weight: 600;
    transition: all 0.3s ease;
}
.nav-initiation:hover {
    text-shadow: 0 0 16px rgba(184, 149, 110, 0.9), 0 0 32px rgba(184, 149, 110, 0.6);
    color: var(--brand-gold) !important;
}

/* ========================================
   NAVIGATION DOTS
   ======================================== */
#nav-dots .nav-dot span {
    transition: all 0.3s ease;
}

#nav-dots .nav-dot.active span,
#nav-dots .nav-dot:hover span {
    background-color: var(--brand-gold);
    transform: scale(1.3);
}

#nav-dots .nav-dot.active span {
    box-shadow: 0 0 10px rgba(184, 149, 110, 0.5);
}

/* ========================================
   COUNTDOWN TIMER
   ======================================== */
#countdown-timer {
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile: Hide countdown on very small screens */
@media (max-width: 480px) {
    #countdown-timer {
        left: 50%;
        transform: translateX(-50%);
        bottom: 4px;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    #countdown-timer span.text-2xl {
        font-size: 1.25rem;
    }
}

/* ========================================
   SOCIAL PROOF NOTIFICATIONS
   ======================================== */
.social-proof-notification {
    animation: slideInRight 0.5s ease-out, fadeOut 0.5s ease-out 4.5s forwards;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid #B91C1C;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.social-proof-notification .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-sage));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
}

.social-proof-notification .content {
    flex: 1;
}

.social-proof-notification .name {
    font-weight: bold;
    color: var(--brand-dark);
    font-size: 0.875rem;
}

.social-proof-notification .action {
    color: var(--brand-muted);
    font-size: 0.75rem;
}

.social-proof-notification .time {
    color: var(--brand-gold);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hide on mobile */
@media (max-width: 768px) {
    #social-proof-container {
        display: none;
    }
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--brand-gold);
}

.faq-trigger {
    cursor: pointer;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-content {
    max-height: 500px;
}

/* ========================================
   VIDEO CONTAINERS
   ======================================== */
.video-container {
    position: relative;
    cursor: pointer;
}

.video-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

/* ========================================
   CAROUSEL STYLES
   ======================================== */
#testimonial-carousel,
#review-carousel {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

#testimonial-carousel > div,
#review-carousel > div {
    scroll-snap-align: center;
}

/* ========================================
   PARTICLES CANVAS
   ======================================== */
#particles-canvas {
    opacity: 0.3;
}

/* ========================================
   COSMIC FLOATING BACKGROUND
   ======================================== */
.cosmic-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Universe gradient - light-filled, ethereal */
.cosmic-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(184, 149, 110, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 70%, rgba(74, 103, 65, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
}

/* Floating stars/particles */
.cosmic-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(184, 149, 110, 0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 20%, rgba(184, 149, 110, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 80% 50%, rgba(255, 255, 255, 0.25) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 60%, rgba(184, 149, 110, 0.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 50% 40%, rgba(184, 149, 110, 0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 90%, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
    animation: twinkle 8s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Floating Pyramid Container */
.floating-pyramids {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Individual floating pyramid */
.pyramid {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0.15;
    animation: floatPyramid 20s ease-in-out infinite;
}

/* Triangle shapes using borders */
.pyramid-1 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid rgba(184, 149, 110, 0.3);
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.pyramid-2 {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(255, 255, 255, 0.2);
    top: 60%;
    left: 85%;
    animation-delay: -5s;
    animation-duration: 22s;
}

.pyramid-3 {
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(184, 149, 110, 0.2);
    top: 70%;
    left: 5%;
    animation-delay: -10s;
    animation-duration: 28s;
}

.pyramid-4 {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 26px solid rgba(255, 255, 255, 0.25);
    top: 25%;
    left: 90%;
    animation-delay: -3s;
    animation-duration: 18s;
}

.pyramid-5 {
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid rgba(184, 149, 110, 0.15);
    top: 45%;
    left: 50%;
    animation-delay: -8s;
    animation-duration: 30s;
}

.pyramid-6 {
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 31px solid rgba(255, 255, 255, 0.2);
    top: 80%;
    left: 70%;
    animation-delay: -12s;
    animation-duration: 24s;
}

/* Floating circles (sacred geometry) */
.sacred-circle {
    position: absolute;
    border: 1px solid rgba(184, 149, 110, 0.2);
    border-radius: 50%;
    animation: floatCircle 25s ease-in-out infinite;
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 15%;
    animation-delay: -2s;
}

.circle-2 {
    width: 50px;
    height: 50px;
    top: 65%;
    left: 20%;
    animation-delay: -7s;
    animation-duration: 20s;
}

.circle-3 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 25%;
    animation-delay: -12s;
    animation-duration: 30s;
    border-color: rgba(255, 255, 255, 0.15);
}

@keyframes floatPyramid {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
    75% {
        transform: translateY(-25px) rotate(2deg);
    }
}

@keyframes floatCircle {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.05);
        opacity: 0.5;
    }
}

/* Dark section variant */
.cosmic-bg-dark::before {
    background: 
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(184, 149, 110, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 70%, rgba(100, 140, 200, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
}

.cosmic-bg-dark::after {
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(184, 149, 110, 0.5) 0%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 20%, rgba(184, 149, 110, 0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 80% 50%, rgba(255, 255, 255, 0.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 60%, rgba(184, 149, 110, 0.45) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 80%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 50% 40%, rgba(184, 149, 110, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 90%, rgba(255, 255, 255, 0.35) 0%, transparent 100%);
}

.cosmic-bg-dark .pyramid {
    opacity: 0.2;
}

.cosmic-bg-dark .pyramid-1 {
    border-bottom-color: rgba(184, 149, 110, 0.4);
}

.cosmic-bg-dark .pyramid-2 {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.cosmic-bg-dark .pyramid-3 {
    border-bottom-color: rgba(184, 149, 110, 0.3);
}

.cosmic-bg-dark .sacred-circle {
    border-color: rgba(184, 149, 110, 0.25);
}

/* ========================================
   HOSTS SECTION - ENHANCED COSMIC BACKGROUND
   ======================================== */
.cosmic-bg-hosts::before {
    background: 
        /* Nebula glow - gold center */
        radial-gradient(ellipse 70% 50% at 50% 50%, rgba(184, 149, 110, 0.15) 0%, transparent 60%),
        /* Rose Crimson accent - subtle top right */
        radial-gradient(ellipse 40% 30% at 85% 15%, rgba(185, 28, 28, 0.08) 0%, transparent 50%),
        /* Rose Crimson accent - subtle bottom left */
        radial-gradient(ellipse 35% 25% at 10% 85%, rgba(185, 28, 28, 0.06) 0%, transparent 50%),
        /* Deep space blue hints */
        radial-gradient(ellipse 50% 40% at 20% 30%, rgba(80, 100, 140, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 45% 35% at 80% 70%, rgba(100, 80, 120, 0.08) 0%, transparent 50%);
}

.cosmic-bg-hosts::after {
    background-image: 
        /* Gold stars */
        radial-gradient(2px 2px at 5% 15%, rgba(184, 149, 110, 0.6) 0%, transparent 100%),
        radial-gradient(2px 2px at 15% 45%, rgba(184, 149, 110, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 25% 75%, rgba(184, 149, 110, 0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 35% 25%, rgba(184, 149, 110, 0.55) 0%, transparent 100%),
        radial-gradient(1px 1px at 45% 85%, rgba(184, 149, 110, 0.45) 0%, transparent 100%),
        radial-gradient(2px 2px at 55% 35%, rgba(184, 149, 110, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 65% 65%, rgba(184, 149, 110, 0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 75% 15%, rgba(184, 149, 110, 0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 85% 55%, rgba(184, 149, 110, 0.45) 0%, transparent 100%),
        radial-gradient(2px 2px at 95% 85%, rgba(184, 149, 110, 0.5) 0%, transparent 100%),
        /* White stars */
        radial-gradient(2px 2px at 10% 35%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 20% 65%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 30% 95%, rgba(255, 255, 255, 0.45) 0%, transparent 100%),
        radial-gradient(1px 1px at 40% 5%, rgba(255, 255, 255, 0.35) 0%, transparent 100%),
        radial-gradient(2px 2px at 50% 55%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 25%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(2px 2px at 70% 75%, rgba(255, 255, 255, 0.45) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 45%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 90% 5%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        /* Rose Crimson accent stars - very subtle */
        radial-gradient(2px 2px at 12% 82%, rgba(185, 28, 28, 0.25) 0%, transparent 100%),
        radial-gradient(1px 1px at 88% 18%, rgba(185, 28, 28, 0.2) 0%, transparent 100%),
        radial-gradient(2px 2px at 72% 92%, rgba(185, 28, 28, 0.22) 0%, transparent 100%);
    animation: twinkleHosts 6s ease-in-out infinite;
}

@keyframes twinkleHosts {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Glowing pyramids for hosts section */
.cosmic-bg-hosts .pyramid {
    opacity: 0.25;
    filter: drop-shadow(0 0 8px rgba(184, 149, 110, 0.4));
}

.cosmic-bg-hosts .pyramid-1 {
    border-bottom-color: rgba(184, 149, 110, 0.5);
}

.cosmic-bg-hosts .pyramid-2 {
    border-bottom-color: rgba(255, 255, 255, 0.35);
}

.cosmic-bg-hosts .pyramid-3 {
    border-bottom-color: rgba(184, 149, 110, 0.4);
}

.cosmic-bg-hosts .pyramid-4 {
    border-bottom-color: rgba(185, 28, 28, 0.2);
}

.cosmic-bg-hosts .pyramid-5 {
    border-bottom-color: rgba(184, 149, 110, 0.35);
}

.cosmic-bg-hosts .pyramid-6 {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.cosmic-bg-hosts .sacred-circle {
    border-color: rgba(184, 149, 110, 0.3);
    box-shadow: 0 0 15px rgba(184, 149, 110, 0.15);
}

.cosmic-bg-hosts .circle-crimson {
    border-color: rgba(185, 28, 28, 0.15);
    box-shadow: 0 0 20px rgba(185, 28, 28, 0.1);
}

/* ========================================
   CTA BUTTON EFFECTS
   ======================================== */
#checkout-btn {
    position: relative;
    overflow: hidden;
}

#checkout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

#checkout-btn:hover::before {
    left: 100%;
}

/* ========================================
   PULSE ANIMATION FOR URGENCY
   ======================================== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
button:focus,
a:focus {
    outline: 2px solid #B91C1C;
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@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;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    nav,
    footer,
    #countdown-timer,
    #social-proof-container,
    #nav-dots,
    #particles-canvas,
    .video-container {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    section {
        page-break-inside: avoid;
    }
}

/* ========================================
   MOBILE MENU
   ======================================== */
#mobile-menu {
    transition: all 0.3s ease;
}

#mobile-menu.hidden {
    max-height: 0;
    overflow: hidden;
    padding: 0;
}

#mobile-menu:not(.hidden) {
    max-height: 500px;
}

/* ========================================
   LEGACY CARDS HOVER EFFECT
   ======================================== */
section#masters .group:hover {
    transform: translateY(-4px);
}

/* ========================================
   HOST CARDS IMAGE OVERLAY
   ======================================== */
section#hosts .aspect-\[4\/3\]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 42, 38, 0.8) 0%, transparent 50%);
    pointer-events: none;
}

/* ========================================
   CURRICULUM ITEMS HOVER
   ======================================== */
section#curriculum .bg-white\/5:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {
    /* Smaller hero text on mobile */
    section#top h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    /* Stack curriculum value on mobile */
    section#curriculum .flex.items-start.justify-between {
        flex-direction: column;
    }
    
    section#curriculum .flex.items-start.justify-between > span {
        margin-top: 1rem;
    }
    
    /* Full width buttons on mobile */
    #buy-cta a.inline-block {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   LOADING STATE
   ======================================== */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
