/* ==================================
   GRIZZLY HOT HONEY - MAIN STYLES
   Dark, Bold, Rebellious
   ================================== */

/* CSS Variables for consistent theming - National Park Edition */
:root {
    --color-forest-dark: #0d1f0d;
    --color-pine: #1a3318;
    --color-moss: #2d4a2b;
    --color-bark: #3e2723;
    --color-sage: #7c8471;
    --color-cream: #f4f1e8;
    --color-amber: #d4821f;
    --color-honey: #e6a033;
    --color-fire: #cc5500;
    --color-danger: #8b2500;
    --color-ranger-green: #355e3b;
    --font-display: 'Bebas Neue', cursive;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --shadow-brutal: 6px 6px 0 rgba(212, 130, 31, 0.3);
    --shadow-hover: 10px 10px 0 rgba(212, 130, 31, 0.4);
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-forest-dark);
    color: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-image: 
        linear-gradient(180deg, rgba(13, 31, 13, 0.5) 0%, rgba(13, 31, 13, 0.3) 50%, rgba(13, 31, 13, 0.5) 100%),
        url('dark-forest.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.accent {
    color: var(--color-amber);
    text-shadow: 2px 2px 4px rgba(255, 69, 0, 0.5);
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Navigation Bar - DANGER ZONE */
.navbar {
    background: linear-gradient(180deg, rgba(26, 51, 24, 0.98) 0%, rgba(13, 31, 13, 0.95) 100%);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--color-amber);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.navbar:hover {
    box-shadow: 
        0 2px 30px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(255, 69, 0, 0.5);
}

.nav-container {
    width: 100%;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo .logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-amber);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.nav-link {
    color: var(--color-cream);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--color-amber);
    
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-amber), var(--color-fire));
    box-shadow: 0 0 5px rgba(255, 69, 0, 0.6);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: 1rem;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--color-cream);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.icon-btn:hover {
    color: var(--color-amber);
    transform: scale(1.2) rotate(5deg);
    filter: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-cream);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - GROUND ZERO */
.hero {
    margin-top: 82px;
    min-height: 100vh;
    background: 
        radial-gradient(ellipse at center, rgba(13, 31, 13, 0.4) 0%, rgba(13, 31, 13, 0.8) 100%),
        linear-gradient(180deg, rgba(13, 31, 13, 0.3) 0%, rgba(212, 130, 31, 0.1) 50%, rgba(13, 31, 13, 0.5) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(212, 130, 31, 0.02) 100px, rgba(212, 130, 31, 0.02) 102px),
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(53, 94, 59, 0.02) 100px, rgba(53, 94, 59, 0.02) 102px);
    pointer-events: none;
}

@keyframes gridShift {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 100px 100px, -100px 100px; }
}

.hero-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
    transform: scale(1.5);
    margin: 2rem 0;
}

.hero-product {
    width: 100%;
    max-width: 900px;
    height: auto;
    filter: 
        drop-shadow(0 0 40px rgba(255, 69, 0, 0.9))
        drop-shadow(0 0 80px rgba(255, 0, 0, 0.5))
        drop-shadow(0 30px 60px rgba(0, 0, 0, 0.9));
    transition: all 0.3s ease;
}

.hero-product:hover {
    filter: 
        drop-shadow(0 0 60px rgba(255, 69, 0, 1))
        drop-shadow(0 0 100px rgba(255, 0, 0, 0.7))
        drop-shadow(0 40px 80px rgba(0, 0, 0, 1));
    transform: scale(1.08) rotate(3deg);
}


.hero-text {
    position: relative;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    margin-bottom: 1rem;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.5);
}

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

.hero-subtext {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--color-sage);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeFlicker 4s ease-in-out infinite;
}

.warning-text {
    color: var(--color-warning-red);
    font-weight: 800;
    
    animation: dangerBlink 2s ease-in-out infinite;
}

@keyframes fadeFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

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

.legal-disclaimer {
    font-size: 0.9rem;
    color: var(--color-sage);
    font-style: italic;
    margin-top: 1rem;
    opacity: 0.8;
}

.honey-drip {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 100"><path d="M0,50 Q300,100 600,50 T1200,50 L1200,100 L0,100 Z" fill="%23ffa500" opacity="0.2"/></svg>') no-repeat center;
    background-size: cover;
}

/* CTA Buttons */
.cta-btn {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1rem 2.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.primary-cta {
    background: linear-gradient(135deg, var(--color-amber) 0%, var(--color-fire) 100%);
    color: var(--color-forest-dark);
    font-size: 1.2rem;
    box-shadow: var(--shadow-brutal);
    border: 2px solid var(--color-fire);
    position: relative;
    overflow: hidden;
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow-brutal); }
    50% { transform: scale(1.05); box-shadow: var(--shadow-hover); }
}

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

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

.primary-cta:hover {
    transform: translate(-6px, -6px) scale(1.1);
    box-shadow: 
        15px 15px 0 rgba(255, 69, 0, 0.9),
        0 0 30px rgba(255, 0, 0, 0.6);
    animation: none;
}

.add-to-cart {
    background: transparent;
    color: var(--color-amber);
    border: 2px solid var(--color-amber);
    font-size: 0.9rem;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.add-to-cart::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--color-amber);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.add-to-cart:hover {
    color: var(--color-forest-dark);
    border-color: var(--color-fire);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
}

.add-to-cart:hover::after {
    width: 300%;
    height: 300%;
}

/* Shop Section - WEAPONS CACHE */
.shop-preview {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(26, 51, 24, 0.6) 0%, rgba(45, 74, 43, 0.6) 100%);
    position: relative;
    backdrop-filter: blur(3px);
}

.shop-subtitle {
    text-align: center;
    color: var(--color-sage);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.shop-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-amber), var(--color-fire), var(--color-amber), transparent);
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.6);
    animation: borderPulse 3s ease-in-out infinite;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    background: linear-gradient(90deg, transparent, rgba(13, 31, 13, 0.8), transparent);
    padding: 1rem 2rem;
    display: inline-block;
    width: 100%;
}

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            4px 4px 8px rgba(0, 0, 0, 0.8);
    }
    50% { 
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            4px 4px 8px rgba(0, 0, 0, 0.8);
    }
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.product-details {
    padding: 2rem;
}

.product-name {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-amber);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-tagline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-cream);
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.9;
}

.product-tagline-large {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-amber);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    filter: brightness(1.3) contrast(1.2);
}

.product-description {
    margin-bottom: 2rem;
}

.product-description p {
    color: var(--color-cream);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.product-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.product-features li {
    color: var(--color-cream);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.product-features li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--color-amber);
    font-weight: bold;
}

.product-features strong {
    color: var(--color-amber);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.product-perfect {
    font-style: italic;
    color: var(--color-sage);
    border-left: 3px solid var(--color-amber);
    padding-left: 1rem;
    margin: 2rem 0;
}

.product-purchase {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.product-purchase .product-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-amber);
    margin: 0;
}

.product-guarantee {
    width: 100%;
    font-size: 0.9rem;
    color: var(--color-sage);
    font-style: italic;
    margin-top: 1rem;
}

.product-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.showcase-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
    transform: scale(1.2);
}

.showcase-image:hover {
    transform: scale(1.25) rotate(-2deg);
}

.product-visual .product-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--color-amber);
    color: var(--color-forest-dark);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transform: rotate(-5deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.product-card {
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.8) 0%, rgba(45, 74, 43, 0.8) 100%);
    border: 2px solid transparent;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}


.product-card:hover {
    border-color: var(--color-amber);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 149, 0, 0.2);
}


.product-image {
    position: relative;
    background: linear-gradient(135deg, var(--color-forest-dark) 0%, var(--color-bark) 100%);
    padding: 2rem;
    margin-bottom: 1rem;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 130, 31, 0.2);
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.1), transparent);
    animation: scanLine 4s linear infinite;
}

@keyframes scanLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, var(--color-amber), var(--color-fire));
    color: var(--color-forest-dark);
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    border: 2px solid var(--color-fire);
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.6);
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

.product-badge:hover {
    transform: rotate(0deg) scale(1.1);
}

.product-badge.limited {
    background: linear-gradient(45deg, var(--color-fire), var(--color-warning-red));
    color: var(--color-cream);
    animation: dangerPulse 1.5s infinite;
    box-shadow: 
        0 0 15px rgba(255, 0, 0, 0.8),
        inset 0 0 5px rgba(0, 0, 0, 0.3);
}

@keyframes dangerPulse {
    0%, 100% { 
        opacity: 1; 
        transform: rotate(-5deg) scale(1);
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    }
    50% { 
        opacity: 0.8; 
        transform: rotate(-5deg) scale(1.05);
        box-shadow: 0 0 25px rgba(255, 0, 0, 1);
    }
}

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

.product-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-cream);
}

.product-title:hover {
    color: var(--color-amber);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

.product-description {
    font-size: 0.9rem;
    color: var(--color-sage);
    font-style: italic;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 1.4rem;
    color: var(--color-amber);
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    
}

.price-subtext {
    font-size: 0.7rem;
    display: block;
    color: var(--color-sage);
    font-weight: 400;
    font-family: var(--font-body);
    text-shadow: none;
    margin-top: 0.25rem;
    letter-spacing: 1px;
}

/* Story Section - THE MANIFESTO */
.story-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(45, 74, 43, 0.6) 0%, rgba(13, 31, 13, 0.6) 100%);
    position: relative;
    backdrop-filter: blur(3px);
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 200px, rgba(255, 69, 0, 0.02) 200px, rgba(255, 69, 0, 0.02) 202px);
    pointer-events: none;
    animation: manifestoShift 15s linear infinite;
}

@keyframes manifestoShift {
    0% { background-position-x: 0; }
    100% { background-position-x: 200px; }
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-amber);
    margin-bottom: 1.5rem;
}

@keyframes manifestoGlow {
    0%, 100% { 
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            4px 4px 8px rgba(0, 0, 0, 0.8);
    }
    50% { 
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            4px 4px 8px rgba(0, 0, 0, 0.8);
    }
}

.story-paragraph {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--color-cream);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.story-paragraph strong {
    color: var(--color-amber);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1em;
    
}

.bold-text {
    color: var(--color-fire);
    font-family: var(--font-display);
    font-weight: 800;
    
    animation: textFlicker 3s ease-in-out infinite;
}

@keyframes textFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.warning-box {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 3px solid var(--color-warning-red);
    border-left: 8px solid var(--color-fire);
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 
        0 0 20px rgba(255, 0, 0, 0.3),
        inset 0 0 10px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.warning-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-fire), transparent);
    animation: warningPulse 2s linear infinite;
}

@keyframes warningPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.warning-label {
    color: var(--color-fire);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    
}

.warning-box p:last-child {
    margin-bottom: 0;
    color: var(--color-cream);
}

.story-image {
    position: relative;
    background: linear-gradient(135deg, var(--color-bark) 0%, var(--color-pine) 100%);
    padding: 2rem;
    border: 3px solid var(--color-amber);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.story-image:hover {
    transform: rotate(0deg);
}

.story-image img {
    width: 100%;
    height: auto;
    filter: sepia(0.2) contrast(1.2);
}

/* Hive Section - CULT RECRUITMENT */
.hive-section {
    padding: 6rem 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 130, 31, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(230, 160, 51, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, rgba(26, 51, 24, 0.6) 0%, rgba(45, 74, 43, 0.6) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(3px);
}

.exclusivity-text {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    border: 2px solid var(--color-warning-red);
    padding: 1rem 2rem;
    margin: 2rem auto;
    max-width: 600px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-cream);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    animation: exclusivityPulse 4s ease-in-out infinite;
}

@keyframes exclusivityPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
    }
}

.hive-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300%;
    height: 300%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 69, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 0, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
    animation: hiveRotate 20s linear infinite;
}

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

.hive-subtitle {
    font-size: 1.4rem;
    color: var(--color-amber);
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 600;
    
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hive-perks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.perk {
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.9) 0%, rgba(53, 94, 59, 0.9) 100%);
    padding: 2.5rem;
    border: 3px solid var(--color-bark);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    text-align: left;
}

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

.perk:hover::before {
    left: 100%;
}

.perk:hover {
    border-color: var(--color-amber);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
}

.perk-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: iconBob 3s ease-in-out infinite;
    filter: none;
}

@keyframes iconBob {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

.perk h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-amber);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    border-bottom: 2px solid var(--color-amber);
    padding-bottom: 0.5rem;
}

.perk p {
    color: var(--color-cream);
    line-height: 1.8;
    font-weight: 400;
    font-size: 1.1rem;
    opacity: 0.9;
}

.membership-disclaimer {
    margin-top: 1.5rem;
    color: var(--color-sage);
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Reviews Section - SURVIVAL STORIES */
.reviews-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(13, 31, 13, 0.6) 0%, rgba(26, 51, 24, 0.6) 100%);
    backdrop-filter: blur(3px);
}

.reviews-subtitle {
    text-align: center;
    color: var(--color-sage);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: linear-gradient(135deg, rgba(45, 74, 43, 0.8) 0%, rgba(62, 39, 35, 0.8) 100%);
    padding: 2rem;
    border-left: 4px solid var(--color-amber);
    border-top: 1px solid rgba(212, 130, 31, 0.3);
    position: relative;
    transition: transform 0.3s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.review-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-amber), var(--color-fire));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover::after {
    opacity: 1;
}

.review-card:hover {
    transform: translateX(15px) scale(1.02);
    border-left-color: var(--color-fire);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 69, 0, 0.3),
        inset 0 1px 0 rgba(255, 69, 0, 0.2);
}

.review-stars {
    color: var(--color-amber);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    
    animation: starGlow 4s ease-in-out infinite;
}

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

.review-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-cream);
    margin-bottom: 1rem;
    font-style: italic;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.review-author {
    color: var(--color-sage);
    font-weight: 700;
    text-align: right;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Footer - FINAL WARNING */
.footer {
    background: linear-gradient(180deg, var(--color-forest-dark) 0%, #0a1a0a 100%);
    border-top: 3px solid var(--color-amber);
    padding: 3rem 0 1rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.4);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-fire), var(--color-amber), var(--color-fire));
    animation: footerPulse 3s ease-in-out infinite;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: var(--font-display);
    color: var(--color-amber);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
    
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--color-sage);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: var(--color-amber);
    
    transform: translateX(5px);
}

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

.social-icon {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.3) rotate(10deg);
    filter: none;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-amber);
    margin-bottom: 0.5rem;
    
    animation: taglineFlicker 5s ease-in-out infinite;
}

@keyframes taglineFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.footer-warning {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    border: 1px solid var(--color-warning-red);
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--color-sage);
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 69, 0, 0.3);
    color: var(--color-sage);
    font-size: 0.9rem;
}

.legal-fine-print {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--color-sage);
    opacity: 0.7;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Ensure forest background is strongly visible on mobile */
    body {
        background-image: 
            linear-gradient(180deg, rgba(13, 31, 13, 0.3) 0%, rgba(13, 31, 13, 0.15) 50%, rgba(13, 31, 13, 0.3) 100%),
            url('dark-forest.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: scroll; /* Better for mobile performance */
        background-repeat: no-repeat;
    }
    /* Navigation */
    .nav-menu,
    .nav-icons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-logo {
        gap: 0.5rem;
    }
    
    .nav-logo .logo {
        height: 45px;
    }
    
    .logo-text {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    /* Hero Section - Professional with forest visible */
    .hero {
        min-height: 100vh;
        padding-top: 80px;
        background: 
            radial-gradient(ellipse at center, rgba(13, 31, 13, 0.3) 0%, rgba(13, 31, 13, 0.5) 100%);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 15px;
        gap: 0;
    }
    
    .hero-image {
        order: 2;
        transform: scale(1.1);
        margin: 1.5rem 0;
        padding: 0 1rem;
    }
    
    .hero-product {
        max-width: 100%;
        width: 100%;
        height: auto;
        filter: 
            drop-shadow(0 0 25px rgba(255, 69, 0, 0.6))
            drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
    }
    
    .hero-text {
        order: 1;
        padding: 1rem;
        z-index: 2;
    }
    
    .hero-headline {
        font-size: clamp(3.5rem, 13vw, 5.5rem);
        line-height: 0.85;
        margin-bottom: 1rem;
        text-shadow: 4px 4px 10px rgba(0,0,0,0.8);
        color: var(--color-cream);
    }
    
    .hero-headline .accent {
        color: var(--color-amber);
        text-shadow: 4px 4px 10px rgba(0,0,0,0.9);
    }
    
    .hero-subtext {
        font-size: 1.15rem;
        text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
        color: var(--color-sage);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    /* Product Showcase - Professional with forest showing */
    .shop-preview {
        background: 
            linear-gradient(180deg, rgba(26, 51, 24, 0.4) 0%, rgba(45, 74, 43, 0.4) 100%);
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-details {
        padding: 2rem 1.5rem;
        background: rgba(13, 31, 13, 0.3);
        border-radius: 15px;
        backdrop-filter: blur(5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }
    
    .product-tagline-large {
        font-size: 2.5rem;
        letter-spacing: 3px;
        color: var(--color-amber);
        text-shadow: 3px 3px 8px rgba(0,0,0,0.9);
        margin-bottom: 2rem;
        font-weight: 700;
        text-align: center;
    }
    
    .showcase-image {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        transform: scale(1);
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
        display: block;
    }
    
    .showcase-image:hover {
        transform: scale(1.05);
    }
    
    /* Story Section - Forest visible */
    .story-section {
        background: 
            linear-gradient(180deg, rgba(45, 74, 43, 0.35) 0%, rgba(13, 31, 13, 0.35) 100%);
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-image {
        transform: rotate(0);
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    /* Hive Perks - Forest atmosphere */
    .hive-section {
        background: 
            radial-gradient(circle at 20% 50%, rgba(212, 130, 31, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(230, 160, 51, 0.05) 0%, transparent 50%),
            linear-gradient(180deg, rgba(26, 51, 24, 0.35) 0%, rgba(45, 74, 43, 0.35) 100%);
    }
    
    .hive-perks {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .perk {
        padding: 2rem;
        background: 
            linear-gradient(135deg, rgba(62, 39, 35, 0.7) 0%, rgba(53, 94, 59, 0.7) 100%);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }
    
    .perk h3 {
        font-size: 1.8rem;
        color: var(--color-amber);
    }
    
    /* Reviews - Forest transparency */
    .reviews-section {
        background: 
            linear-gradient(180deg, rgba(13, 31, 13, 0.35) 0%, rgba(26, 51, 24, 0.35) 100%);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 2rem;
        background: 
            linear-gradient(135deg, rgba(45, 74, 43, 0.65) 0%, rgba(62, 39, 35, 0.65) 100%);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    /* General Typography - Clean and professional */
    .section-title {
        font-size: clamp(2.8rem, 11vw, 4.5rem);
        padding: 1.5rem 1rem;
        background: linear-gradient(90deg, transparent, rgba(13, 31, 13, 0.6), transparent);
        text-shadow: 4px 4px 8px rgba(0,0,0,0.9);
        margin-bottom: 3rem;
        color: var(--color-cream);
    }
    
    .section-title .accent {
        color: var(--color-amber);
        filter: brightness(1.2);
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    /* Navigation - Keep it clean */
    .navbar {
        background: linear-gradient(180deg, rgba(26, 51, 24, 0.95) 0%, rgba(13, 31, 13, 0.92) 100%);
    }
    
    .nav-container {
        padding: 0.75rem 10px;
    }
    
    .nav-logo .logo {
        height: 45px;
    }
    
    .logo-text {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    /* Hero - Maximum impact on small screens */
    .hero {
        min-height: 90vh;
        padding-top: 70px;
    }
    
    .hero-headline {
        font-size: 3.8rem;
        line-height: 0.85;
        margin-bottom: 1rem;
        color: var(--color-cream);
        text-shadow: 4px 4px 10px rgba(0,0,0,0.8);
        font-weight: 700;
    }
    
    .hero-subtext {
        font-size: 1.1rem;
        color: var(--color-sage);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
        margin-bottom: 1.5rem;
    }
    
    .hero-product {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        display: block;
    }
    
    .primary-cta {
        font-size: 1.15rem;
        padding: 1.1rem 3rem;
        margin-top: 1.5rem;
        box-shadow: 0 8px 25px rgba(255, 69, 0, 0.5);
        background: linear-gradient(135deg, var(--color-amber) 0%, var(--color-fire) 100%);
        border: 2px solid var(--color-fire);
        font-weight: 700;
        letter-spacing: 2px;
    }
    
    /* Product Section - Bold and clear */
    .product-tagline-large {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        filter: brightness(1.4);
    }
    
    .product-features {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .product-features li {
        margin-bottom: 1rem;
        padding-left: 1.2rem;
    }
    
    .product-features strong {
        display: block;
        margin-bottom: 0.25rem;
        font-size: 0.95rem;
    }
    
    .showcase-image {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        display: block;
    }
    
    /* Story Section - Readable and engaging */
    .story-text h3 {
        font-size: 2rem;
        color: var(--color-amber);
        margin-bottom: 1.5rem;
    }
    
    .story-paragraph {
        font-size: 1.05rem;
        line-height: 1.7;
        color: var(--color-cream);
    }
    
    .story-image img {
        border-radius: 10px;
    }
    
    /* Section Titles - Big and bold */
    .section-title {
        font-size: 2.8rem;
        margin-bottom: 2.5rem;
        line-height: 1.1;
    }
    
    /* Hive Section - Clear benefits */
    .hive-subtitle {
        font-size: 1.3rem;
        color: var(--color-amber);
        margin-bottom: 2rem;
    }
    
    .perk h3 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    
    .perk p {
        font-size: 1.05rem;
        line-height: 1.6;
    }
    
    /* Reviews - Impactful testimonials */
    .review-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .review-stars {
        font-size: 1.8rem;
        color: var(--color-amber);
        filter: brightness(1.3);
    }
    
    /* Footer - Clean and organized */
    .footer {
        background: linear-gradient(180deg, rgba(13, 31, 13, 0.95) 0%, #0a1a0a 100%);
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-tagline {
        font-size: 1.8rem;
        color: var(--color-amber);
    }
}