/* ===========================================
   DR PEPPER INSPIRED THEME - Peter O. Bertola Jr.
   ENHANCED STUNNING UI VERSION
   Heavy burgundy/maroon vibes with ultra-modern aesthetics
   =========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dr Pepper Color Palette */
    --dr-pepper-maroon: #5C1A33;
    --dr-pepper-burgundy: #771429;
    --dr-pepper-red: #8E2A3F;
    --dr-pepper-dark: #2D0D1A;
    --dr-pepper-darker: #1A0810;
    --cream: #F4E4C1;
    --cream-light: #FFF8E7;
    --gold: #D4AF37;
    --gold-light: #FFD966;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.5);
    --glow-gold: rgba(212, 175, 55, 0.6);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(ellipse at top,
        var(--dr-pepper-darker) 0%,
        var(--dr-pepper-dark) 30%,
        var(--dr-pepper-maroon) 60%,
        var(--dr-pepper-burgundy) 85%,
        var(--dr-pepper-red) 100%
    );
    background-attachment: fixed;
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* ===========================================
   ANIMATED BACKGROUND GRADIENT
   =========================================== */

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(142, 42, 63, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 90%, rgba(92, 26, 51, 0.15) 0%, transparent 50%);
    animation: gradientShift 20s ease infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1) rotate(5deg);
    }
}

/* ===========================================
   ENHANCED FIZZY BUBBLES ANIMATION
   =========================================== */

.fizz-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -150px;
    background: radial-gradient(circle at 35% 35%,
        rgba(255, 255, 255, 0.4),
        rgba(244, 228, 193, 0.3) 40%,
        rgba(212, 175, 55, 0.2) 70%,
        transparent
    );
    border-radius: 50%;
    opacity: 0.7;
    animation: rise linear infinite;
    box-shadow:
        inset 0 0 20px rgba(255, 255, 255, 0.4),
        0 0 30px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(2px);
}

.bubble:nth-child(1) { left: 5%; width: 70px; height: 70px; animation-duration: 17s; animation-delay: 0s; }
.bubble:nth-child(2) { left: 15%; width: 45px; height: 45px; animation-duration: 20s; animation-delay: 2s; }
.bubble:nth-child(3) { left: 25%; width: 90px; height: 90px; animation-duration: 25s; animation-delay: 4s; }
.bubble:nth-child(4) { left: 35%; width: 55px; height: 55px; animation-duration: 18s; animation-delay: 1s; }
.bubble:nth-child(5) { left: 45%; width: 80px; height: 80px; animation-duration: 22s; animation-delay: 3s; }
.bubble:nth-child(6) { left: 55%; width: 50px; height: 50px; animation-duration: 19s; animation-delay: 5s; }
.bubble:nth-child(7) { left: 65%; width: 100px; height: 100px; animation-duration: 28s; animation-delay: 2s; }
.bubble:nth-child(8) { left: 75%; width: 40px; height: 40px; animation-duration: 16s; animation-delay: 4s; }
.bubble:nth-child(9) { left: 85%; width: 60px; height: 60px; animation-duration: 21s; animation-delay: 1s; }
.bubble:nth-child(10) { left: 95%; width: 75px; height: 75px; animation-duration: 24s; animation-delay: 3s; }
.bubble:nth-child(11) { left: 10%; width: 52px; height: 52px; animation-duration: 18s; animation-delay: 6s; }
.bubble:nth-child(12) { left: 30%; width: 85px; height: 85px; animation-duration: 26s; animation-delay: 2s; }
.bubble:nth-child(13) { left: 50%; width: 42px; height: 42px; animation-duration: 17s; animation-delay: 4s; }
.bubble:nth-child(14) { left: 70%; width: 68px; height: 68px; animation-duration: 20s; animation-delay: 1s; }
.bubble:nth-child(15) { left: 90%; width: 48px; height: 48px; animation-duration: 19s; animation-delay: 5s; }

@keyframes rise {
    0% {
        bottom: -150px;
        transform: translateX(0) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    30% {
        transform: translateX(80px) scale(1);
    }
    60% {
        transform: translateX(-60px) scale(1.1);
    }
    90% {
        opacity: 0.5;
    }
    100% {
        bottom: 110vh;
        transform: translateX(40px) scale(0.7);
        opacity: 0;
    }
}

/* ===========================================
   ENHANCED VINTAGE BOTTLE CAPS
   =========================================== */

.bottle-caps {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.05;
}

.cap {
    position: absolute;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle at 40% 40%,
        var(--gold-light),
        var(--gold) 60%,
        var(--dr-pepper-burgundy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    color: var(--dr-pepper-maroon);
    font-weight: bold;
    border: 5px solid var(--gold);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 -3px 10px rgba(0, 0, 0, 0.3);
    animation: capFloat 15s ease-in-out infinite;
}

@keyframes capFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.cap:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.cap:nth-child(2) { top: 30%; right: 10%; animation-delay: 2s; }
.cap:nth-child(3) { top: 50%; left: 15%; animation-delay: 4s; }
.cap:nth-child(4) { top: 70%; right: 20%; animation-delay: 1s; }
.cap:nth-child(5) { bottom: 15%; left: 25%; animation-delay: 3s; }
.cap:nth-child(6) { bottom: 30%; right: 15%; animation-delay: 5s; }

/* ===========================================
   GLASS MORPHISM HEADER
   =========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(29, 8, 16, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 -1px 0 rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    letter-spacing: 5px;
    background: linear-gradient(135deg, var(--cream), var(--gold-light), var(--cream));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s ease infinite;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    font-weight: bold;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

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

.logo-subtitle {
    font-family: 'Righteous', cursive;
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-align: center;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--cream);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--glow-gold);
}

.nav-menu a:hover {
    color: var(--gold-light);
    text-shadow: 0 0 20px var(--glow-gold);
    transform: translateY(-2px);
}

.nav-menu a:hover::before {
    width: 100%;
}

/* ===========================================
   STUNNING HERO SECTION
   =========================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10rem 5% 5rem;
    position: relative;
    z-index: 2;
    gap: 5rem;
}

.hero-content {
    flex: 1;
    max-width: 700px;
}

.vintage-badge {
    margin-bottom: 2.5rem;
    animation: float 8s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(-2deg);
    }
    50% {
        transform: translateY(-25px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.badge-circle {
    width: 160px;
    height: 160px;
    background:
        radial-gradient(circle at 35% 35%,
            var(--gold-light) 0%,
            var(--gold) 40%,
            var(--dr-pepper-burgundy) 100%);
    border-radius: 50%;
    border: 6px solid var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.6),
        inset 0 -5px 20px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 175, 55, 0.3);
    position: relative;
}

.badge-circle::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border: 3px dashed rgba(244, 228, 193, 0.6);
    border-radius: 50%;
    animation: rotateBadge 30s linear infinite;
}

@keyframes rotateBadge {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.badge-top, .badge-middle, .badge-bottom {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 3px;
    color: var(--cream-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.badge-top { font-size: 1.3rem; font-weight: bold; }
.badge-middle { font-size: 1rem; margin: -0.3rem 0; opacity: 0.9; }
.badge-bottom { font-size: 2.2rem; font-weight: bold; }

.hero-title {
    font-family: 'Bebas Neue', cursive;
    margin-bottom: 2rem;
    position: relative;
}

.title-line-1, .title-line-2 {
    display: block;
    line-height: 0.85;
    letter-spacing: 8px;
}

.title-line-1 {
    font-size: 5.5rem;
    background: linear-gradient(135deg,
        var(--cream-light) 0%,
        var(--cream) 50%,
        var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.7));
    animation: shimmer 3s ease-in-out infinite;
}

.title-line-2 {
    font-size: 6.5rem;
    background: linear-gradient(135deg,
        var(--gold-light) 0%,
        var(--gold) 40%,
        var(--cream) 80%,
        var(--gold-light) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.8));
    animation: shimmer 3s ease-in-out infinite, glow 3s ease-in-out infinite;
}

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

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
    }
    50% {
        filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 50px rgba(212, 175, 55, 0.8));
    }
}

.hero-tagline {
    font-family: 'Righteous', cursive;
    font-size: 1.4rem;
    letter-spacing: 3px;
    color: var(--cream-light);
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    opacity: 0.95;
}

.hero-flavor-text {
    margin: 2.5rem 0;
    padding: 2.5rem;
    background: rgba(29, 8, 16, 0.6);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-left: 5px solid var(--gold);
    border-radius: 15px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(244, 228, 193, 0.1);
    transition: all 0.4s ease;
}

.hero-flavor-text:hover {
    transform: translateX(10px);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(244, 228, 193, 0.2);
}

.flavor-emphasis {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--cream-light);
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.flavor-sub {
    font-size: 1.2rem;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    letter-spacing: 3px;
    padding: 1.3rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.5),
        inset 0 -3px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dr-pepper-burgundy) 100%);
    color: var(--cream-light);
    border-color: var(--gold);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 15px 40px rgba(212, 175, 55, 0.5),
        0 0 40px rgba(212, 175, 55, 0.4),
        inset 0 -3px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--dr-pepper-maroon);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--cream);
    color: var(--dr-pepper-maroon);
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 15px 40px rgba(244, 228, 193, 0.4),
        0 0 30px rgba(244, 228, 193, 0.3);
}

/* ===========================================
   ULTRA-REALISTIC VINTAGE BOTTLE
   =========================================== */

.bottle-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: bottle-float 10s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7));
}

@keyframes bottle-float {
    0%, 100% {
        transform: translateY(0) rotate(-3deg);
    }
    25% {
        transform: translateY(-20px) rotate(-1deg);
    }
    50% {
        transform: translateY(-35px) rotate(2deg);
    }
    75% {
        transform: translateY(-20px) rotate(0deg);
    }
}

.bottle {
    width: 240px;
    height: 480px;
    position: relative;
    transition: transform 0.4s ease;
}

.bottle:hover {
    transform: scale(1.05);
}

.bottle-cap-top {
    width: 85px;
    height: 45px;
    background: linear-gradient(180deg,
        #F0F0F0 0%,
        #D5D5D5 30%,
        #B0B0B0 70%,
        #999 100%);
    border-radius: 42px 42px 0 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow:
        inset 0 -8px 15px rgba(0, 0, 0, 0.4),
        0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.bottle-cap-top::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 2px;
}

.bottle-neck {
    width: 95px;
    height: 90px;
    background: linear-gradient(90deg,
        rgba(70, 20, 40, 0.95),
        rgba(119, 20, 41, 0.95) 30%,
        rgba(142, 42, 63, 0.95) 50%,
        rgba(119, 20, 41, 0.95) 70%,
        rgba(70, 20, 40, 0.95)
    );
    border-radius: 12px 12px 0 0;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.6),
        inset -20px 0 40px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.bottle-body {
    width: 240px;
    height: 390px;
    background: linear-gradient(90deg,
        var(--dr-pepper-dark) 0%,
        var(--dr-pepper-maroon) 15%,
        var(--dr-pepper-burgundy) 35%,
        var(--dr-pepper-red) 50%,
        var(--dr-pepper-burgundy) 65%,
        var(--dr-pepper-maroon) 85%,
        var(--dr-pepper-dark) 100%
    );
    border-radius: 120px 120px 35px 35px;
    position: absolute;
    top: 90px;
    left: 0;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.8),
        inset -30px 0 60px rgba(0, 0, 0, 0.5),
        inset 30px 0 30px rgba(142, 42, 63, 0.3);
    overflow: hidden;
    z-index: 1;
}

.bottle-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 25%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.15) 50%,
        transparent);
    border-radius: 100px;
    animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.9;
    }
}

.bottle-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 190px;
    height: 220px;
    background: linear-gradient(135deg,
        var(--cream-light) 0%,
        var(--cream) 50%,
        var(--gold) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.6),
        inset 0 2px 10px rgba(255, 255, 255, 0.4),
        inset 0 -2px 10px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--gold);
    z-index: 2;
    transition: transform 0.4s ease;
}

.bottle-label:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.bottle-label::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px solid rgba(92, 26, 51, 0.2);
    border-radius: 20px;
    pointer-events: none;
}

.label-badge {
    text-align: center;
    padding: 1.5rem;
}

.label-brand {
    display: block;
    font-family: 'Bebas Neue', cursive;
    font-size: 3.3rem;
    letter-spacing: 4px;
    color: var(--dr-pepper-maroon);
    text-shadow:
        3px 3px 6px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(92, 26, 51, 0.2);
    line-height: 1;
    margin-bottom: 0.7rem;
}

.label-tagline {
    display: block;
    font-family: 'Righteous', cursive;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--dr-pepper-burgundy);
    margin-bottom: 0.7rem;
}

.label-est {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 700;
}

.bottle-liquid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(29, 8, 16, 0.5) 15%,
        rgba(45, 13, 26, 0.8) 40%,
        var(--dr-pepper-darker) 100%
    );
    animation: liquid-shimmer 5s ease-in-out infinite;
}

@keyframes liquid-shimmer {
    0%, 100% {
        opacity: 0.85;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(0.98);
    }
}

/* ===========================================
   SECTIONS WITH GLASS MORPHISM
   =========================================== */

.section {
    padding: 8rem 5%;
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4.5rem;
    letter-spacing: 8px;
    background: linear-gradient(135deg, var(--cream-light), var(--gold-light), var(--cream-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.8));
    margin-bottom: 1.5rem;
    animation: titleShimmer 4s ease-in-out infinite;
}

@keyframes titleShimmer {
    0%, 100% {
        filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    }
    50% {
        filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 40px rgba(212, 175, 55, 0.6));
    }
}

.section-subtitle {
    font-size: 1.4rem;
    color: var(--gold-light);
    font-style: italic;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* ===========================================
   EXPERIMENT SECTION
   =========================================== */

.experiment-section {
    background: rgba(29, 8, 16, 0.5);
    backdrop-filter: blur(15px) saturate(180%);
}

.experiment-box {
    background: linear-gradient(135deg,
        rgba(92, 26, 51, 0.4),
        rgba(119, 20, 41, 0.4)
    );
    border: 3px solid var(--gold);
    border-radius: 35px;
    padding: 4.5rem;
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(244, 228, 193, 0.1);
    backdrop-filter: blur(15px) saturate(180%);
    transition: all 0.4s ease;
}

.experiment-box:hover {
    transform: translateY(-10px);
    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(244, 228, 193, 0.2);
}

.experiment-icon {
    text-align: center;
    margin-bottom: 3.5rem;
}

.magnifying-glass {
    width: 140px;
    height: 140px;
    color: var(--gold-light);
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.6));
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.search-results h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.2rem;
    letter-spacing: 4px;
    color: var(--cream-light);
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.result-box {
    background: rgba(45, 13, 26, 0.7);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 6px solid var(--dr-pepper-red);
    margin-bottom: 3.5rem;
    backdrop-filter: blur(10px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(244, 228, 193, 0.05);
    transition: all 0.3s ease;
}

.result-box:hover {
    transform: translateX(10px);
}

.result-status {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.no-results {
    color: var(--dr-pepper-red);
    font-weight: bold;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(142, 42, 63, 0.6);
}

.minimal-results {
    color: var(--gold-light);
    font-weight: bold;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.attempted-searches {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.attempted-searches li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.15rem;
    color: var(--cream);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.attempted-searches li:hover {
    transform: translateX(10px);
    color: var(--cream-light);
}

.x-mark {
    color: var(--dr-pepper-red);
    font-size: 1.6rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(142, 42, 63, 0.8);
}

.check-mark {
    color: var(--gold-light);
    font-size: 1.6rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    animation: checkGlow 2s ease-in-out infinite;
}

@keyframes checkGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    }
    50% {
        text-shadow: 0 0 25px rgba(212, 175, 55, 1);
    }
}

.conclusion-box {
    background: rgba(45, 13, 26, 0.9);
    padding: 3.5rem;
    border-radius: 20px;
    border: 3px solid var(--gold);
    backdrop-filter: blur(10px);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(244, 228, 193, 0.1);
}

.conclusion-box h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.8rem;
    letter-spacing: 5px;
    color: var(--gold-light);
    margin-bottom: 2rem;
    text-align: center;
    text-shadow:
        2px 2px 6px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(212, 175, 55, 0.5);
}

.conclusion-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--cream);
    margin-bottom: 1.8rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.conclusion-highlight {
    font-size: 1.35rem;
    line-height: 1.9;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-style: italic;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 5rem;
}

.stat-card {
    background: linear-gradient(135deg,
        rgba(92, 26, 51, 0.6),
        rgba(119, 20, 41, 0.6));
    padding: 3.5rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    border: 3px solid var(--gold);
    backdrop-filter: blur(15px) saturate(180%);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(244, 228, 193, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: statRotate 15s linear infinite;
}

@keyframes statRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(244, 228, 193, 0.2);
    border-color: var(--gold-light);
}

.stat-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 6rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--cream);
    letter-spacing: 2px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

/* ===========================================
   23 FLAVORS/FACTS SECTION
   =========================================== */

.flavors-section {
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(29, 8, 16, 0.7) 100%
    );
}

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.flavor-card {
    background: linear-gradient(135deg,
        rgba(92, 26, 51, 0.5),
        rgba(119, 20, 41, 0.5)
    );
    padding: 2.5rem;
    border-radius: 25px;
    border: 2px solid var(--gold);
    backdrop-filter: blur(15px) saturate(180%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(244, 228, 193, 0.05);
    position: relative;
    overflow: hidden;
}

.flavor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.flavor-card:hover::before {
    left: 100%;
}

.flavor-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--gold-light);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(244, 228, 193, 0.15);
}

.flavor-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1.2rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
}

.flavor-card h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.6rem;
    color: var(--cream-light);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.flavor-card p {
    font-size: 1.05rem;
    color: var(--cream);
    opacity: 0.95;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* ===========================================
   CONTACT SECTION
   =========================================== */

.contact-section {
    background: rgba(29, 8, 16, 0.9);
}

.vintage-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg,
        rgba(92, 26, 51, 0.7),
        rgba(119, 20, 41, 0.7)
    );
    padding: 5.5rem 3.5rem;
    border-radius: 40px;
    border: 4px solid var(--gold);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.8),
        inset 0 2px 20px rgba(244, 228, 193, 0.1);
    transition: all 0.4s ease;
}

.vintage-box:hover {
    transform: translateY(-10px);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.9),
        0 0 60px rgba(212, 175, 55, 0.3),
        inset 0 2px 20px rgba(244, 228, 193, 0.15);
}

.vintage-text {
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 3.5rem;
    line-height: 1.9;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.contact-methods-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 3.5rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: scale(1.05);
}

.method-icon {
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
}

.contact-email {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.2rem;
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
}

.contact-email::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    transition: width 0.4s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.contact-email:hover {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    transform: translateY(-3px);
}

.contact-email:hover::after {
    width: 100%;
}

.contact-disclaimer {
    font-size: 1rem;
    color: var(--cream);
    opacity: 0.75;
    font-style: italic;
    margin-top: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* ===========================================
   FOOTER
   =========================================== */

.footer {
    background: var(--dr-pepper-darker);
    padding: 4.5rem 5% 2.5rem;
    text-align: center;
    border-top: 3px solid var(--gold);
    position: relative;
    z-index: 2;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    letter-spacing: 3px;
    color: var(--cream);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.footer-tagline {
    font-family: 'Righteous', cursive;
    font-size: 1.7rem;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 2rem 0;
    font-style: italic;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
}

.footer-note {
    font-size: 1rem;
    color: var(--cream);
    opacity: 0.75;
    margin-top: 2rem;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .vintage-badge {
        margin: 0 auto 2rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .bottle-wrapper {
        margin-top: 4rem;
    }

    .bottle {
        transform: scale(0.85);
    }

    .nav-menu {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.2rem 2rem;
    }

    .nav-menu {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }

    .title-line-1 {
        font-size: 4rem;
    }

    .title-line-2 {
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .experiment-box {
        padding: 3rem 2rem;
    }

    .flavors-grid {
        grid-template-columns: 1fr;
    }

    .vintage-box {
        padding: 4rem 2.5rem;
    }

    .contact-email {
        font-size: 1.8rem;
    }

    .bottle {
        transform: scale(0.7);
    }

    .stat-card {
        padding: 2.5rem 2rem;
    }

    .stat-number {
        font-size: 5rem;
    }
}

@media (max-width: 480px) {
    .title-line-1 {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .title-line-2 {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.8rem;
        letter-spacing: 4px;
    }

    .btn {
        font-size: 1.1rem;
        padding: 1.1rem 2.2rem;
    }

    .bottle {
        transform: scale(0.55);
    }

    .badge-circle {
        width: 130px;
        height: 130px;
    }

    .flavor-number {
        font-size: 3rem;
    }

    .flavor-card h3 {
        font-size: 1.4rem;
    }
}

/* ===========================================
   SCROLL ANIMATIONS
   =========================================== */

@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        animation: fadeIn 0.8s ease-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
