/* ===================================
   THE DIANA ROSS STORY
   A Magical Fairytale Journey
   Version: Enchanted Experience
   =================================== */

/* ===================================
   ROOT VARIABLES - MAGICAL PALETTE
   =================================== */
:root {
    /* Primary Colors - Enchanted */
    --burgundy: #030abb;
    --deep-purple: #29baf9;
    --warm-gold: #D4A017;
    --soft-cream: #F5F1E8;
    --charcoal: #2F2F2F;
    --dusty-pink: #C48B9F;
    --lavender: #9A7B9F;

    /* Magical Additions */
    --moonlight: #E8E4F3;
    --stardust: #FFE5B4;
    --twilight: #2E1A47;
    --rose-gold: #B76E79;
    --vintage-sepia: #F4E7D7;

    /* Gradient Magic */
    --gradient-enchanted: linear-gradient(135deg, #030abb 0%, #29baf9 50%, #29baf9 100%);
    --gradient-stardust: linear-gradient(45deg, #D4A017, #FFE5B4, #D4A017);
    --gradient-twilight: linear-gradient(180deg, rgba(3, 10, 187, 0.95) 0%, rgba(41, 186, 249, 0.9) 100%);
    --gradient-rose: linear-gradient(135deg, #030abb, #29baf9, #29baf9);
    --gradient-shimmer: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);

    /* Shadows & Glows */
    --shadow-magical: 0 15px 60px rgba(3, 10, 187, 0.25);
    --shadow-deep: 0 25px 80px rgba(0, 0, 0, 0.3);
    --glow-gold: 0 0 30px rgba(212, 160, 23, 0.6), 0 0 60px rgba(212, 160, 23, 0.3);
    --glow-purple: 0 0 30px rgba(154, 123, 159, 0.6), 0 0 60px rgba(154, 123, 159, 0.3);
    --text-glow: 0 0 20px rgba(255, 255, 255, 0.5);

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-elegant: 'Cormorant Garamond', serif;

    /* Transitions */
    --transition-magical: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===================================
   BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--soft-cream);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

.magical-experience {
    background: linear-gradient(to bottom, #F5F1E8 0%, #E8E4F3 50%, #F4E7D7 100%);
    background-attachment: fixed;
}

/* ===================================
   MAGICAL PARTICLES BACKGROUND
   =================================== */
.magical-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.magical-particles::before,
.magical-particles::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(circle, rgba(212, 160, 23, 0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(154, 123, 159, 0.08) 1px, transparent 1px),
        radial-gradient(circle, rgba(199, 139, 159, 0.06) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 120px 120px;
    background-position: 0 0, 40px 60px, 20px 100px;
    animation: float-particles 60s linear infinite;
    opacity: 0.4;
}

.magical-particles::after {
    animation-duration: 90s;
    animation-direction: reverse;
}

@keyframes float-particles {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===================================
   ENCHANTED STARS OVERLAY
   =================================== */
.stars-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 33% 80%, rgba(255, 255, 255, 0.4), transparent);
    background-size: 200% 200%;
    background-position: 0 0;
    animation: twinkle-stars 10s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes twinkle-stars {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* ===================================
   JOURNEY PROGRESS INDICATOR
   =================================== */
.journey-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 9999;
    pointer-events: none;
}

.journey-progress-bar {
    height: 100%;
    background: var(--gradient-stardust);
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.8);
}

.journey-milestone {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: var(--warm-gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-shadow: var(--text-glow);
    letter-spacing: 1px;
}

/* ===================================
   ENCHANTED NAVIGATION
   =================================== */
.navbar-enchanted {
    z-index: 9998;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    background: #000000;
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.navbar-enchanted.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.navbar-brand-enchanted,
.navbar-brand.navbar-brand-enchanted {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition-magical);
}

.brand-icon-magical {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #B8860B 0%, #FFD700 50%, #FDB931 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.5);
    animation: pulse-glow-gold 3s ease-in-out infinite;
}

.brand-icon-magical i {
    font-size: 1.1rem;
    color: #2F2F2F;
}

@keyframes pulse-glow-gold {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 160, 23, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.8); }
}

.brand-text-enchanted {
    display: flex;
    flex-direction: column;
}

.brand-name-magic {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #B8860B 0%, #FFD700 50%, #FDB931 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.brand-tagline-magic {
    font-family: var(--font-elegant);
    font-size: 0.75rem;
    font-style: italic;
    color: rgba(255, 215, 0, 0.9);
    letter-spacing: 1px;
}

.navbar-toggler {
    border: 2px solid rgba(255, 215, 0, 0.5);
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FFD700' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
    gap: 1rem;
}

.nav-link.nav-link-enchanted {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: var(--transition-magical);
    position: relative;
    overflow: hidden;
}

.nav-link.nav-link-enchanted::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-rose);
    z-index: -1;
    transition: left 0.4s ease;
    border-radius: 30px;
}

.nav-link.nav-link-enchanted:hover::before,
.nav-link.nav-link-enchanted.active::before {
    left: 0;
}

.nav-link.nav-link-enchanted:hover,
.nav-link.nav-link-enchanted.active {
    color: white;
    transform: translateY(-2px);
}

.nav-link.nav-link-enchanted i {
    font-size: 1.1rem;
}

.btn-tickets-enchanted {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    background: linear-gradient(135deg, #D4A017 0%, #FFD700 25%, #FDB931 50%, #FFED4E 75%, #D4A017 100%);
    background-size: 200% 100%;
    color: var(--charcoal);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 223, 0, 0.8);
    box-shadow: 0 10px 40px rgba(212, 160, 23, 0.4),
                inset 0 2px 10px rgba(255, 255, 255, 0.6),
                inset 0 -2px 10px rgba(139, 90, 0, 0.3);
    transition: var(--transition-bounce);
    animation: shimmerSlide 3s ease-in-out infinite;
}

.btn-tickets-enchanted .btn-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.sparkle-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

.btn-tickets-enchanted:hover .sparkle-effect {
    animation: sparkle-burst 0.6s ease-out;
}

@keyframes sparkle-burst {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(15); opacity: 0; }
}

.magical-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.9) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shine 3s ease-in-out infinite;
}

.btn-tickets-enchanted:hover .magical-glow {
    animation-duration: 1.5s;
}

.btn-tickets-enchanted:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(212, 160, 23, 0.6),
                0 0 40px rgba(255, 215, 0, 0.8),
                inset 0 2px 15px rgba(255, 255, 255, 0.8);
    animation-duration: 1.5s;
}

/* Smaller buttons in navbar */
.navbar-enchanted .btn-secondary-enchanted {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
    gap: 0.5rem;
}

/* ===================================
   MAIN CONTENT
   =================================== */
.enchanted-main {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

/* ===================================
   HERO SECTION - MAGICAL ENTRANCE
   =================================== */
.hero-enchanted {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-video-enchanted {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay-enchanted {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(3, 10, 187, 0.7) 0%, rgba(41, 186, 249, 0.85) 100%);
    z-index: 2;
    opacity: 0;
    animation: fadeInMagic 2s ease-out 2s forwards;
}

@keyframes fadeInMagic {
    to { opacity: 1; }
}

.hero-content-enchanted {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 2rem;
    opacity: 0;
    animation: heroReveal 3s ease-out 0s forwards;
}

@keyframes heroReveal {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-badge-enchanted {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--stardust);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: var(--glow-gold);
    animation: float-gentle 3s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-badge-enchanted i {
    font-size: 1.2rem;
    animation: spin-slow 10s linear infinite;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title-enchanted {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-title-top {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-title-main {
    font-size: clamp(3rem, 10vw, 9rem);
    font-weight: 900;
    letter-spacing: 12px;
    white-space: nowrap;
    background: linear-gradient(135deg,
        #8B6914 0%,
        #B8860B 10%,
        #DAA520 20%,
        #FFD700 35%,
        #FFED4E 48%,
        #FFFFFF 50%,
        #FFED4E 52%,
        #FFD700 65%,
        #DAA520 80%,
        #B8860B 90%,
        #8B6914 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: glamourShift 6s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(139, 105, 20, 0.3));
}

@keyframes glamourShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.hero-title-bottom {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 3px;
}

.text-gold {
    color: #FFD700;
    text-shadow: 0 0 20px rgba(212, 160, 23, 0.8),
                 0 0 40px rgba(255, 215, 0, 0.6),
                 0 3px 10px rgba(0, 0, 0, 0.5);
}

.text-silver {
    color: #E0E0E0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6),
                 0 0 40px rgba(224, 224, 224, 0.4),
                 0 3px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-enchanted {
    font-family: var(--font-elegant);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    color: var(--stardust);
    margin-bottom: 2rem;
    text-shadow: var(--text-glow);
    font-weight: 400;
}

.hero-description-enchanted {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-cta-enchanted {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-primary-enchanted,
.btn-secondary-enchanted {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-magical);
}

.btn-primary-enchanted {
    background: linear-gradient(135deg, #D4A017 0%, #FFD700 25%, #FDB931 50%, #FFED4E 75%, #D4A017 100%);
    background-size: 200% 100%;
    color: var(--charcoal);
    border: 2px solid rgba(255, 223, 0, 0.8);
    box-shadow: 0 10px 40px rgba(212, 160, 23, 0.5),
                inset 0 2px 10px rgba(255, 255, 255, 0.6),
                inset 0 -2px 10px rgba(139, 90, 0, 0.3);
    animation: shimmerSlide 3s ease-in-out infinite;
}

@keyframes shimmerSlide {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-primary-enchanted::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.9) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.btn-primary-enchanted:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(212, 160, 23, 0.6),
                0 0 40px rgba(255, 215, 0, 0.8),
                inset 0 2px 15px rgba(255, 255, 255, 0.8);
    animation-duration: 1.5s;
}

.btn-secondary-enchanted {
    background: linear-gradient(135deg, #A8A8A8 0%, #E0E0E0 25%, #B8B8B8 50%, #D8D8D8 75%, #C0C0C0 100%);
    background-size: 200% 100%;
    color: var(--charcoal);
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                inset 0 2px 10px rgba(255, 255, 255, 0.4),
                inset 0 -2px 10px rgba(0, 0, 0, 0.15);
    animation: shimmerSlide 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

.btn-secondary-enchanted::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shine 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

.btn-secondary-enchanted:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(255, 255, 255, 0.5),
                inset 0 2px 15px rgba(255, 255, 255, 0.6);
    animation-duration: 1.5s;
}

.hero-scroll-enchanted {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator-enchanted {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    animation: bounce-scroll 2s ease-in-out infinite;
}

@keyframes bounce-scroll {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(15px); }
}

.scroll-indicator-enchanted i {
    font-size: 2rem;
    text-shadow: var(--text-glow);
}

.scroll-text-enchanted {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ===================================
   CHAPTER DIVIDER
   =================================== */
.chapter-divider {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--twilight) 0%, var(--burgundy) 100%);
}

.chapter-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.chapter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(41, 182, 246, 0.85) 0%, rgba(1, 87, 155, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
}

.chapter-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 10 L60 40 L90 40 L65 60 L75 90 L50 70 L25 90 L35 60 L10 40 L40 40 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.2;
    animation: float-particles 40s linear infinite;
    z-index: 2;
}

.chapter-divider .container {
    position: relative;
    z-index: 3;
}

.chapter-number {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    letter-spacing: 5px;
}

.chapter-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: var(--text-glow);
}

.chapter-subtitle {
    font-family: var(--font-elegant);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-style: italic;
    color: var(--stardust);
    max-width: 700px;
    margin: 0 auto;
}

.divider-ornament {
    width: 150px;
    height: 3px;
    background: var(--gradient-stardust);
    margin: 2rem auto;
    border-radius: 3px;
    box-shadow: var(--glow-gold);
}

/* ===================================
   MAGICAL CARDS
   =================================== */
.magical-card {
    position: relative;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(116, 191, 249, 0.6) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 60%, rgba(77, 78, 248, 0.5) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(3, 154, 211, 0.7) 0%, rgba(9, 34, 118, 0.85) 35%, rgba(1, 0, 38, 0.92) 60%, rgba(0, 0, 0, 0.98) 100%),
        linear-gradient(135deg, rgba(0, 1, 174, 0.4) 0%, transparent 50%, rgba(9, 34, 118, 0.3) 100%);
    border-radius: 30px;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: var(--transition-magical);
    overflow: hidden;
    border: 2px solid rgba(116, 191, 249, 0.2);
}

.magical-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-rose);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.magical-card:hover::before {
    opacity: 1;
}

.magical-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(116, 191, 249, 0.4), 0 0 40px rgba(77, 78, 248, 0.3);
}

.card-icon-enchanted {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #74bff9, #4d4ef8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 0 30px rgba(116, 191, 249, 0.6), 0 0 60px rgba(77, 78, 248, 0.3);
    transition: var(--transition-bounce);
}

.magical-card:hover .card-icon-enchanted {
    transform: rotateY(360deg) scale(1.1);
}

.card-icon-enchanted i {
    font-size: 2rem;
    color: white;
}

.card-title-enchanted {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.card-text-enchanted {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    text-align: center;
    opacity: 0.9;
}

/* ===================================
   PHOTO GALLERY - ALBUM STYLE
   =================================== */
.photo-album-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-magical);
    transition: var(--transition-magical);
    height: fit-content;
    background: white;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
}

.photo-album-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-twilight);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.photo-album-card:hover::before {
    opacity: 1;
}

.photo-album-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition-magical);
    filter: sepia(0.15) contrast(1.1);
    display: block;
    flex-shrink: 0;
}

/* Uniform height for landscape gallery images (4-column grids) */
.col-md-3 .photo-album-card img,
.col-lg-3 .photo-album-card img {
    height: 450px;
    object-fit: cover;
}

/* Landscape images in 2-column sections */
.col-md-6 .photo-album-card img {
    height: 500px;
    object-fit: cover;
}

.photo-album-card:hover img {
    transform: scale(1.1);
    filter: sepia(0) contrast(1);
}

.photo-caption-enchanted {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 3;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-magical);
}

.photo-album-card:hover .photo-caption-enchanted {
    opacity: 1;
    transform: translateY(0);
}

.photo-caption-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.photo-caption-text {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ===================================
   TIMELINE SECTION
   =================================== */
.timeline-enchanted {
    position: relative;
    padding: 6rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-enchanted);
    transform: translateX(-50%);
    box-shadow: var(--glow-purple);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-content {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: var(--shadow-magical);
    transition: var(--transition-magical);
    position: relative;
}

.timeline-item:hover .timeline-content {
    transform: scale(1.03);
    box-shadow: var(--shadow-deep);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 30px;
    height: 30px;
    background: var(--gradient-stardust);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: var(--glow-gold);
    z-index: 2;
    border: 4px solid white;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-enchanted);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.timeline-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--charcoal);
    opacity: 0.9;
}

/* ===================================
   PARALLAX MAGICAL BANNERS
   =================================== */
.parallax-enchanted {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.parallax-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.parallax-overlay-enchanted {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-twilight);
    z-index: 1;
}

.parallax-content-enchanted {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 3rem;
}

.parallax-title-enchanted {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
    line-height: 1.2;
}

.parallax-text-enchanted {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 2.5rem;
}

/* ===================================
   STATS SECTION - MAGICAL COUNTERS
   =================================== */
.stats-enchanted {
    background: var(--gradient-enchanted);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-enchanted::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float-particles 30s linear infinite;
}

.stat-item-enchanted {
    text-align: center;
    color: white;
    padding: 2rem;
}

.stat-icon-enchanted {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float-gentle 3s ease-in-out infinite;
}

.stat-number-enchanted {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.stat-label-enchanted {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.95;
}

/* ===================================
   CONTENT SECTIONS
   =================================== */
.section-enchanted {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.section-header-enchanted {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle-enchanted {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--rose-gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-title-enchanted {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description-enchanted {
    font-size: 1.2rem;
    color: var(--charcoal);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.9;
}

/* ===================================
   VENUE CARDS - SOLD OUT BADGES
   =================================== */
.venue-card-enchanted {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(116, 191, 249, 0.2);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition-magical);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.venue-card-enchanted:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(116, 191, 249, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.venue-info h5 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #74bff9;
    margin-bottom: 0.5rem;
}

.venue-info p {
    color: rgba(255, 255, 255, 0.7);
    opacity: 0.9;
    margin: 0;
}

.sold-out-badge {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.4);
}

/* ===================================
   ENCHANTED FOOTER
   =================================== */
.enchanted-footer {
    position: relative;
    background: #000000;
    color: white;
    padding-top: 5rem;
    overflow: hidden;
}

.footer-stars-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent);
    background-size: 200% 200%;
    opacity: 0.1;
    animation: twinkle-stars 8s ease-in-out infinite;
}

.footer-content-magical {
    position: relative;
    z-index: 1;
    padding-bottom: 3rem;
}

.footer-brand-magic {
    margin-bottom: 2rem;
}

.footer-logo-enchanted {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-enchanted i {
    color: var(--stardust);
    font-size: 1.5rem;
}

.footer-slogan-magic {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--stardust);
    margin-bottom: 1rem;
}

.footer-description-magic {
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.social-links-magical {
    display: flex;
    gap: 1rem;
}

.social-link-magic {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition-magical);
    position: relative;
    overflow: hidden;
}

.social-link-magic:hover {
    background: white;
    color: var(--burgundy);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.social-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    transform: scale(0);
    transition: transform 0.4s ease;
}

.social-link-magic:hover .social-glow {
    transform: scale(1.5);
}

.footer-heading-magic {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--stardust);
}

.footer-links-magical {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-magical li {
    margin-bottom: 0.75rem;
}

.footer-links-magical a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition-magical);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links-magical a i {
    font-size: 0.7rem;
    color: var(--stardust);
}

.footer-links-magical a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--stardust);
}

.footer-contact-magical {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-magical li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-magical i {
    color: var(--stardust);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.footer-contact-magical a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-contact-magical a:hover {
    opacity: 1;
    color: var(--stardust);
}

.magic-badge {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.magic-badge i {
    font-size: 1.5rem;
    color: var(--stardust);
}

.magic-badge span {
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-bottom-enchanted {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.footer-copyright-magic {
    opacity: 0.8;
}

.footer-copyright-magic i {
    color: var(--stardust);
    font-size: 0.9rem;
}

.footer-legal-links-magic {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.footer-legal-links-magic a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-legal-links-magic a:hover {
    opacity: 1;
}

/* ===================================
   BACK TO TOP - FLOATING MAGIC
   =================================== */
.back-to-top-enchanted {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #092276, #039ad3);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-magical);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-magical);
    z-index: 9997;
}

.back-to-top-enchanted.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-enchanted:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: var(--shadow-deep), var(--glow-purple);
}

.floating-sparkles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.floating-sparkles::before,
.floating-sparkles::after {
    content: '✨';
    position: absolute;
    font-size: 1rem;
    animation: sparkle-float 2s ease-in-out infinite;
}

.floating-sparkles::before {
    top: -10px;
    left: -10px;
}

.floating-sparkles::after {
    bottom: -10px;
    right: -10px;
    animation-delay: 1s;
}

@keyframes sparkle-float {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-20px); }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        padding: 2rem;
        border-radius: 20px;
        margin-top: 1rem;
        box-shadow: var(--shadow-magical);
        border: 1px solid rgba(116, 191, 249, 0.2);
    }

    .navbar-nav {
        gap: 0.5rem;
    }

    .navbar-nav .nav-item {
        width: 100%;
        margin: 0 !important;
    }

    .nav-link.nav-link-enchanted {
        width: 100%;
    }

    .btn-tickets-enchanted,
    .btn-secondary-enchanted,
    .btn-primary-enchanted {
        width: 100% !important;
        justify-content: center;
        margin-top: 1rem;
        display: flex !important;
    }

    .navbar-enchanted .btn-secondary-enchanted {
        margin-top: 0.5rem;
    }

    .navbar-enchanted .btn-tickets-enchanted {
        margin-top: 1rem;
    }
}

    .timeline-line {
        left: 30px;
    }

    .timeline-marker {
        left: 30px;
    }

    .timeline-content {
        margin-left: 80px;
    }
}

@media (max-width: 768px) {
    .hero-content-enchanted {
        padding: 1rem;
    }

    .hero-title-main {
        font-size: clamp(2.5rem, 12vw, 9rem);
        letter-spacing: 2px;
        white-space: normal;
        word-break: break-word;
    }

    .hero-title-top {
        letter-spacing: 1px;
        font-size: clamp(1.2rem, 4vw, 2.5rem);
    }

    .hero-title-bottom {
        letter-spacing: 1px;
        font-size: clamp(1.2rem, 4vw, 2.5rem);
    }

    .hero-description-enchanted {
        font-size: clamp(1rem, 3vw, 1.3rem);
        padding: 0 1rem;
    }

    .hero-subtitle-enchanted {
        font-size: clamp(1.3rem, 4vw, 2.5rem);
    }

    .hero-cta-enchanted {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-enchanted,
    .btn-secondary-enchanted {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .footer-legal-links-magic {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .parallax-enchanted {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero-title-main {
        font-size: clamp(2rem, 15vw, 9rem);
        letter-spacing: 0px;
    }

    .hero-title-top {
        letter-spacing: 0px;
        font-size: clamp(1rem, 5vw, 2.5rem);
    }

    .hero-title-bottom {
        letter-spacing: 0px;
        font-size: clamp(1rem, 5vw, 2.5rem);
    }

    .hero-description-enchanted {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
}

/* ===================================
   LOADING STATES & ANIMATIONS
   =================================== */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.loading-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}
