:root {
    --dark-gold: #8a702b;
    --light-gold: #ac8c36;
    --white: #fff9f5;
    --grey-white: #f9f3e5;
    --off-black: #292929;
    --black: #161414;
    --text-light: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Legacy variables for compatibility */
    --primary-gold: #8a702b;
    --dark-brown: #292929;
    --light-cream: #fff9f5;
    --text-dark: #161414;
    --accent-green: #4a7c59;
}


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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 90px; /* Account for fixed navbar */
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(41, 41, 41, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(138, 112, 43, 0.2);
}

.navbar.scrolled {
    background: var(--off-black);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

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

.logo {
    height: 80px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-gold);
    transition: var(--transition);
}

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

.nav-cta {
    display: flex;
    align-items: center;
}

.btn-nav-order {
    background: var(--primary-gold);
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-nav-order:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(155, 128, 74, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Typography */
h1, h2, h3 {
    font-family: 'Bebas Neue', 'Bebas-Fallback', 'Arial Black', 'Impact', 'Franklin Gothic Bold', sans-serif;
    letter-spacing: 1px;
    font-size: 2.5rem; /* Explicit font-size to prevent deprecation warning */
}

/* Ensure all H1 elements have explicit font-size to prevent deprecation warning */
html h1, 
html section h1, 
html article h1, 
html aside h1, 
html nav h1,
body h1,
body section h1,
body article h1,
body aside h1,
body nav h1,
h1.hero-title,
h1.cannabuzzery-hero-title,
h1.thank-you-title,
h1.menu-title,
h1.contact-title,
h1.mission-title,
h1.careers-title,
h1.home-hero-title,
h1.error-title,
section h1.hero-title,
section h1.cannabuzzery-hero-title,
section h1.thank-you-title,
section h1.menu-title,
section h1.contact-title,
section h1.mission-title,
section h1.careers-title,
section h1.home-hero-title,
section h1.error-title,
/* Global wildcard rules to override ALL Astro scoping */
h1[data-astro-cid-sckkx6r4],
h1[data-astro-cid-2pjcwduj],
h1[class*="title"],
h1[class*="hero"],
*[data-astro-cid-sckkx6r4] h1,
*[data-astro-cid-2pjcwduj] h1,
section[data-astro-cid-sckkx6r4] h1,
section[data-astro-cid-2pjcwduj] h1,
article[data-astro-cid-sckkx6r4] h1,
article[data-astro-cid-2pjcwduj] h1,
aside[data-astro-cid-sckkx6r4] h1,
aside[data-astro-cid-2pjcwduj] h1,
nav[data-astro-cid-sckkx6r4] h1,
nav[data-astro-cid-2pjcwduj] h1,
/* Ultra-broad catchall for any H1 in any scoped context */
*[data-astro-cid*=""] h1,
section *[data-astro-cid*=""] h1,
article *[data-astro-cid*=""] h1,
aside *[data-astro-cid*=""] h1,
nav *[data-astro-cid*=""] h1,
/* Attribute selector wildcards for all possible Astro IDs */
h1[data-astro-cid^="data-astro"],
section h1[data-astro-cid^="data-astro"],
article h1[data-astro-cid^="data-astro"],
aside h1[data-astro-cid^="data-astro"],
nav h1[data-astro-cid^="data-astro"] {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--dark-gold);
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(138, 112, 43, 0.3);
}

.btn-primary:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(138, 112, 43, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-gold);
    border: 2px solid var(--dark-gold);
}

.btn-secondary:hover {
    background: var(--dark-gold);
    color: var(--text-light);
}

/* Hero Section */
.hero {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #292929 0%, #1a1a1a 100%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1400px;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: relative;
    animation: fadeIn 1.5s ease-out;
}

.hero-cans {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: heroCansShake 6s ease-in-out infinite;
}

@keyframes heroCansShake {
    0%, 100% {
        transform: translateY(0px) rotate(-2deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.hero-title {
    font-size: clamp(60px, 10vw, 120px);
    line-height: 0.9;
    margin-bottom: 20px;
}

.title-line-1 {
    display: block;
    color: var(--primary-gold);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.title-line-2 {
    display: block;
    font-size: 1.2em;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Add shadow for non-webkit browsers */
@supports not (-webkit-background-clip: text) {
    .title-line-2 {
        text-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
    }
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-cta {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-secondary {
    text-decoration: none;
}

.cta-subtext {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.7;
}


.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

/* Made in Kentucky Section */
.made-in-kentucky {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.kentucky-content {
    max-width: 800px;
    margin: 0 auto;
}

.kentucky-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.kentucky-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.kentucky-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.kentucky-stats .stat-number-new {
    color: var(--dark-gold);
}

.kentucky-stats .stat-label-new {
    color: #666;
}

@media (max-width: 768px) {
    .kentucky-stats {
        gap: 20px;
    }
    
    .kentucky-stats .stat-divider {
        display: none;
    }
}

/* Products Section */
.products {
    padding: 80px 0;
    background: var(--white);
}

.product-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(36px, 5vw, 52px);
    text-align: center;
    margin-bottom: 0;
    color: var(--text-dark);
    line-height: 1.1;
}

.section-title.accent {
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.5;
    max-width: 550px;
    margin: 0 auto;
}

.section-subtitle strong {
    color: var(--text-dark);
    font-weight: 600;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: var(--white);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--dark-gold);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
}

.product-info {
    padding: 25px;
}

.product-name {
    font-size: 24px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.product-description {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 16px;
}

.product-features {
    display: flex !important;
    gap: 6px !important;
    margin-bottom: 25px !important;
    flex-wrap: wrap !important;
}

.feature {
    display: flex !important;
    align-items: center !important;
    gap: 2px !important;
    background: #f5f5f5 !important;
    padding: 2px 6px !important;
    border-radius: 8px !important;
    font-size: 0 !important;
}

.feature-icon {
    font-size: 11px !important;
    line-height: 1 !important;
}

.feature-text {
    font-size: 10px !important;
    color: #000 !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Gummies Section */
.gummies {
    padding: 80px 0;
    background: var(--white);
}

.product-actions {
    margin-top: 20px;
}

.strength-options {
    margin-bottom: 25px;
}

.strength-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 12px;
}

.strength-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.strength-badge {
    background: var(--dark-gold);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .product-actions {
        margin-top: 15px;
    }
    
    .strength-options {
        margin-bottom: 20px;
    }
    
    .strength-badges {
        gap: 6px;
    }
    
    .strength-badge {
        font-size: 9px;
        padding: 3px 6px;
    }
}

/* Story Section */
.story {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--off-black) 0%, var(--black) 100%);
    color: var(--text-light);
}

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

.story-badge {
    display: inline-block;
    background: var(--dark-gold);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.story-title {
    font-size: clamp(42px, 5vw, 60px);
    font-family: 'Bebas Neue', 'Bebas-Fallback', 'Arial Black', 'Impact', 'Franklin Gothic Bold', sans-serif;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.story-tagline {
    font-size: 24px;
    color: var(--primary-gold);
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.4;
}

.story-highlight {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--primary-gold);
    padding: 30px;
    border-radius: 0 15px 15px 0;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.story-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 15px;
}

.story-mission {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-style: italic;
}

.story-stats-new {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number-new {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Bebas Neue', 'Bebas-Fallback', 'Arial Black', 'Impact', 'Franklin Gothic Bold', sans-serif;
    display: block;
    line-height: 1;
}

.stat-label-new {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    color: var(--primary-gold);
    font-size: 24px;
    opacity: 0.5;
}

.story-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.story-image {
    width: 80%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

/* Features Section - Compact Design */
.features-compact {
    padding: 60px 0;
    background: white;
}

.mission-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-compact-title {
    font-size: clamp(32px, 4vw, 48px);
    font-family: 'Bebas Neue', 'Bebas-Fallback', 'Arial Black', 'Impact', 'Franklin Gothic Bold', sans-serif;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
}

.mission-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: #666;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.mission-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.mission-button {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
}

.features-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-compact {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-compact:hover {
    background: var(--grey-white);
    transform: translateY(-3px);
}

.feature-compact-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
}

.feature-compact-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.feature-compact-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Testimonials Section - Compact Design */
.testimonials-compact {
    padding: 60px 0;
    background: #f8f8f8;
}

.testimonials-compact-title {
    font-size: clamp(28px, 4vw, 40px);
    font-family: 'Bebas Neue', 'Bebas-Fallback', 'Arial Black', 'Impact', 'Franklin Gothic Bold', sans-serif;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-compact {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.testimonial-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-compact-quote {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-compact-author {
    font-size: 14px;
    color: var(--primary-gold);
    font-weight: 600;
}

/* Email Capture Section - Simple Design */
.email-capture-simple {
    padding: 80px 0;
    background: var(--text-dark);
    color: var(--text-light);
}

.capture-simple-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.capture-simple-title {
    font-size: clamp(36px, 5vw, 54px);
    font-family: 'Bebas Neue', 'Bebas-Fallback', 'Arial Black', 'Impact', 'Franklin Gothic Bold', sans-serif;
    margin-bottom: 20px;
    line-height: 1.1;
}

.capture-simple-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.5;
}

.capture-simple-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.email-simple-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    outline: none;
}

.email-simple-input::placeholder {
    color: #999;
}

.btn-simple-submit {
    padding: 15px 30px;
    background: var(--text-dark);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-simple-submit:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--off-black);
    color: var(--text-light);
    text-align: center;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #999;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.modal-text {
    color: #666;
    margin-bottom: 30px;
}

.modal-form {
    display: flex;
    gap: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        max-width: 275px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    
    .hero-cans {
        position: relative;
        z-index: 1;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
        align-items: center;
    }
    
    .hero-cta .btn-primary-hero,
    .hero-cta .btn-secondary-hero {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    /* Products Section Mobile */
    .products {
        padding: 60px 0;
    }
    
    .product-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 5px;
    }
    
    .section-title.accent {
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 18px;
        padding: 0 20px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }
    
    .product-card {
        margin: 0 10px;
    }
    
    .product-image-wrapper {
        height: 280px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-name {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .product-description {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .product-features {
        gap: 8px !important;
        margin-bottom: 30px !important;
    }
    
    .feature {
        padding: 3px 8px !important;
    }
    
    /* Features Section Mobile */
    .features-compact {
        padding: 50px 0;
    }
    
    .mission-header {
        margin-bottom: 40px;
    }
    
    .mission-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 40px;
    }
    
    .mission-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .features-row {
        flex-direction: column;
        gap: 25px;
    }
    
    .feature-compact {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .feature-compact-icon {
        font-size: 28px;
    }
    
    .feature-compact-content {
        text-align: center;
        width: 100%;
    }
    
    .feature-compact-content h3 {
        font-size: 20px;
        text-align: center;
    }
    
    .feature-compact-content p {
        font-size: 15px;
        text-align: center;
    }
    
    /* Testimonials Mobile */
    .testimonials-compact {
        padding: 50px 0;
    }
    
    .testimonials-grid-compact {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 15px;
    }
    
    .testimonial-compact {
        padding: 20px;
    }
    
    .testimonial-compact-quote {
        font-size: 15px;
    }
    
    /* Story Section Mobile */
    .story {
        padding: 60px 0;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-text {
        order: 2;
        text-align: center;
    }
    
    .story-visual {
        order: 1;
    }
    
    .story-image-container {
        max-width: 200px;
        margin: 0 auto;
        min-height: 200px;
    }
    
    .story-title {
        font-size: 32px;
    }
    
    .story-tagline {
        font-size: 18px;
    }
    
    .story-highlight {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .story-description,
    .story-mission {
        font-size: 16px;
    }
    
    .story-stats-new {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: 120px;
    }
    
    .stat-number-new {
        font-size: 32px;
    }
    
    .stat-label-new {
        font-size: 15px;
        margin-top: 8px;
    }
    
    .stat-divider {
        display: none;
    }
    
    /* Email Capture Mobile */
    .email-capture-simple {
        padding: 60px 0;
    }
    
    .capture-simple-form {
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
    }
    
    .email-simple-input {
        padding: 12px 15px;
    }
    
    .btn-simple-submit {
        padding: 12px 20px;
    }
}

/* Store Locator Section */
.store-locator {
    padding: 120px 0 80px 0;
    background: white;
}

.store-locator-header {
    text-align: center;
    margin-bottom: 50px;
}

.store-locator-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.search-container {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 500px;
}

.location-container {
    display: flex;
}

.store-search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.store-search-input:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(155, 128, 74, 0.1);
}

.btn-search {
    padding: 15px 30px;
    background: var(--primary-gold);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.btn-search:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
}

.btn-location {
    padding: 15px 30px;
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-location:hover {
    background: var(--primary-gold);
    color: white;
}

.btn-location.loading {
    opacity: 0.7;
    cursor: wait;
}

.btn-location svg {
    width: 16px;
    height: 16px;
}


.store-locator-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    min-height: 600px;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.store-map {
    width: 100%;
    height: 600px;
    z-index: 1;
}

.map-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.map-loading.hidden {
    display: none;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e0e0e0;
    border-top: 4px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.store-list-container {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 30px;
    height: fit-content;
    max-height: 600px;
    overflow-y: auto;
}

.store-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.store-list-header h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin: 0;
}

.store-count {
    background: var(--primary-gold);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
}

.store-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.store-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
    border-left: 4px solid transparent;
}

.store-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left-color: var(--primary-gold);
}

.store-card.featured {
    border-left-color: var(--accent-green);
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
}

.store-card.active {
    border-left-color: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(155, 128, 74, 0.2);
}

.store-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.store-type-badge {
    background: var(--accent-green);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.store-type-badge.liquor-barn {
    background: var(--primary-gold);
}

.store-type-badge.party-mart {
    background: var(--accent-green);
}

.store-type-badge.liquor-world {
    background: #FF9800;
}

.store-type-badge.independent {
    background: #2196F3;
}

.store-address {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.store-location {
    color: #888;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
}

.store-description {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 15px;
}

.store-actions {
    display: flex;
    gap: 10px;
}

.btn-directions {
    padding: 8px 16px;
    background: var(--primary-gold);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.btn-directions:hover {
    background: var(--light-gold);
    transform: translateY(-1px);
}

.btn-view-map {
    padding: 8px 16px;
    background: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.btn-view-map:hover {
    background: var(--primary-gold);
    color: white;
}

/* Custom Leaflet Popup Styles */
.leaflet-popup-content-wrapper {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-content {
    margin: 15px;
    font-family: 'Inter', sans-serif;
}

.popup-store-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.popup-store-address {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.popup-store-location {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

/* Custom marker styles */
.custom-marker {
    background: var(--primary-gold);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.custom-marker.flagship {
    background: var(--accent-green);
}

/* User location marker */
.user-location-marker {
    background: #2196F3;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #2196F3, 0 4px 15px rgba(33, 150, 243, 0.5);
    position: relative;
}

.user-location-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid #2196F3;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Navigation Mobile */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--dark-brown);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 15px 0;
        display: block;
        border-bottom: 1px solid rgba(155, 128, 74, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    body {
        padding-top: 80px;
    }
}

/* Store Locator Responsive Design */
@media (max-width: 768px) {
    .store-locator {
        padding: 100px 0 60px 0;
    }
    
    .store-locator-controls {
        flex-direction: column;
        gap: 20px;
    }
    
    .search-container {
        max-width: 100%;
    }
    
    .location-container {
        width: 100%;
        justify-content: center;
    }
    
    .store-search-input {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .btn-search {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .filter-container {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .store-locator-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .store-map {
        height: 400px;
    }
    
    .store-list-container {
        max-height: 450px;
        padding: 20px;
        overflow-y: auto;
    }
    
    /* Show only first 5 stores on mobile initially */
    .store-list .store-card:nth-child(n+6) {
        display: none;
    }
    
    .store-list.show-all .store-card {
        display: block;
    }
    
    .show-more-btn {
        width: 100%;
        padding: 15px;
        margin-top: 15px;
        background: transparent;
        color: var(--primary-gold);
        border: 2px solid var(--primary-gold);
        border-radius: 10px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        font-family: 'Inter', sans-serif;
    }
    
    .show-more-btn:hover {
        background: var(--primary-gold);
        color: white;
    }
    
    .store-card {
        padding: 15px;
    }
    
    .store-name {
        font-size: 16px;
    }
    
    .store-actions {
        flex-wrap: wrap;
    }
}

/* Order Online Section */
.order-online {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--grey-white) 0%, var(--white) 100%);
}

.order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.order-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.1;
}

.order-subtitle {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    opacity: 0.8;
}

.order-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.order-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.order-icon {
    font-size: 1.5rem;
}

.order-cta {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-gold);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.order-cta:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
}

.order-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.order-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.order-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Bar Experience Section */
.bar-experience {
    padding: 80px 0;
    background: var(--dark-brown);
    color: var(--text-light);
}

.bar-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bar-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.bar-highlight {
    background: var(--primary-gold);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bar-description {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.bar-schedule {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(155, 128, 74, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(155, 128, 74, 0.2);
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.schedule-day {
    color: var(--primary-gold);
    font-weight: 600;
}

.schedule-time {
    opacity: 0.9;
}

.bar-cta {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.bar-cta:hover {
    background: var(--primary-gold);
    color: var(--text-dark);
}

.bar-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bar-image-container {
    position: relative;
    width: 100%;
    max-width: 350px;
}

.bar-image {
    width: 100%;
    height: auto;
    filter: brightness(1.1);
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .order-content,
    .bar-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .order-title,
    .bar-title {
        font-size: 2.5rem;
    }
    
    .order-subtitle,
    .bar-description {
        font-size: 1.1rem;
    }
    
    .order-features {
        align-items: center;
    }
    
    .bar-schedule {
        padding: 20px;
    }
    
    .schedule-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

/* Homepage Specific Styles */

/* Cannabuzzery Hero Section - WITH Background Image */
.cannabuzzery-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--dark-brown) 0%, #2A1810 50%, var(--text-dark) 100%);
    color: var(--text-light);
    overflow: hidden;
}

.cannabuzzery-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/cannabuzz-dispensary-bar-lexington-ky_1715716592.webp') center/cover no-repeat;
    background-attachment: fixed;
}

.cannabuzzery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.85) 0%, rgba(62, 39, 35, 0.75) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.cannabuzzery-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--primary-gold), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--primary-gold), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.1), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: float 20s infinite linear;
    opacity: 0.3;
}

.cannabuzzery-hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.cannabuzzery-hero-content {
    text-align: left;
    max-width: 900px;
    width: 100%;
}

.cannabuzzery-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cannabuzzery-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.9;
    color: var(--light-cream);
    line-height: 1.6;
    max-width: 90%;
}

.cannabuzzery-hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    align-items: center;
    flex-wrap: wrap;
}

/* Home Hero Section - NO Background Image */
.home-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #292929 0%, #1a1a1a 100%);
    color: var(--text-light);
    overflow: hidden;
}

.home-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #292929 0%, #1a1a1a 100%);
}

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.home-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--primary-gold), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--primary-gold), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.1), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: float 20s infinite linear;
    opacity: 0.3;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

.home-hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
}

.home-hero-content {
    text-align: left;
    max-width: 100%;
}

.home-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.home-hero-logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: logoFloat 6s ease-in-out infinite;
}

.home-hero-logo-img {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(138, 112, 43, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite alternate;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes pulseGlow {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(138, 112, 43, 0.2);
    border: 1px solid var(--dark-gold);
    padding: 8px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-gold);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.2rem;
}

.home-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-highlight {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Bebas Neue', 'Bebas-Fallback', 'Arial Black', 'Impact', 'Franklin Gothic Bold', sans-serif;
    font-size: 5rem;
    letter-spacing: 2px;
    animation: glow 2s ease-in-out infinite alternate;
}

/* Add shadow for non-webkit browsers */
@supports not (-webkit-background-clip: text) {
    .title-highlight {
        text-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
    }
}

/* Trademark symbol styling */
.trademark {
    font-size: 0.4em;
    font-weight: normal;
    vertical-align: super;
    line-height: 0;
}

@keyframes glow {
    from { opacity: 0.9; }
    to { opacity: 1; }
}

.title-main {
    color: var(--text-light);
    font-size: 3.5rem;
    font-weight: 600;
}

.home-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.9;
    color: var(--light-cream);
    line-height: 1.6;
    max-width: 90%;
}

.home-hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding: 25px 0;
    border-top: 1px solid rgba(155, 128, 74, 0.3);
    border-bottom: 1px solid rgba(155, 128, 74, 0.3);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Bebas Neue', 'Bebas-Fallback', 'Arial Black', 'Impact', 'Franklin Gothic Bold', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-cream);
    opacity: 0.8;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary-hero {
    padding: 18px 35px;
    font-size: 1.1rem;
    background: var(--dark-gold);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(138, 112, 43, 0.3);
}

.btn-primary-hero:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(138, 112, 43, 0.4);
}

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

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

.btn-secondary-hero {
    padding: 18px 35px;
    font-size: 1.1rem;
    background: transparent;
    color: var(--dark-gold);
    border: 2px solid var(--dark-gold);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
    background: var(--dark-gold);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-tertiary-hero {
    padding: 18px 35px;
    font-size: 1.1rem;
    background: transparent;
    color: var(--light-cream);
    border: 2px solid rgba(255, 249, 245, 0.3);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-tertiary-hero:hover {
    background: rgba(255, 249, 245, 0.1);
    border-color: var(--light-cream);
    color: var(--light-cream);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.3rem;
}

.home-hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--light-cream);
    opacity: 0.8;
}

.feature-icon {
    font-size: 1.5rem;
}

.home-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.home-hero-image-main {
    position: relative;
    z-index: 2;
}

.hero-products {
    max-width: 450px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: floatProducts 6s ease-in-out infinite;
}

@keyframes floatProducts {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}


.home-hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    animation: floatElement 8s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    bottom: 20%;
    right: 10%;
    animation-delay: -2s;
}

.element-3 {
    top: 60%;
    left: -10%;
    animation-delay: -4s;
}

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

.floating-product {
    width: 120px;
    height: auto;
    opacity: 0.7;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.floating-badge {
    background: linear-gradient(45deg, var(--primary-gold), #D4AF37);
    color: var(--text-dark);
    padding: 15px 20px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 10px 25px rgba(155, 128, 74, 0.3);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--primary-gold);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
    transform: rotate(45deg);
}

/* Home Order Section */
.home-order {
    padding: 100px 0;
    background: var(--grey-white);
}

.home-order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.home-order-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.1;
}

.home-order-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    opacity: 0.8;
    line-height: 1.6;
}

.home-order-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.home-order-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.home-order-icon {
    font-size: 2rem;
}

.home-order-cta {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary-gold);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
}

.home-order-cta:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
}

.home-order-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Home Drinks Section */
.home-drinks {
    padding: 100px 0;
    background: var(--white);
    color: var(--black);
}

.home-drinks-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.home-drinks-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.home-drinks-highlight {
    background: var(--primary-gold);
    color: var(--text-dark);
    padding: 12px 25px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-drinks-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.home-drinks-schedule {
    padding: 30px;
    background: rgba(155, 128, 74, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(155, 128, 74, 0.2);
    margin-bottom: 50px;
}

.home-schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 1.1rem;
}

.home-schedule-day {
    color: var(--primary-gold);
    font-weight: 600;
}

.home-drinks-cta {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
}

.home-drinks-cta:hover {
    background: var(--primary-gold);
    color: var(--text-dark);
}

.home-drinks-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Home Storefront Section */
.home-storefront {
    padding: 100px 0;
    background: var(--grey-white);
}

.home-storefront-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.home-storefront-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.1;
}

.home-storefront-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    opacity: 0.8;
    line-height: 1.6;
}

.home-storefront-highlights {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.home-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.home-highlight-icon {
    font-size: 2.5rem;
    margin-top: 5px;
}

.home-highlight-text h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.home-highlight-text p {
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 1rem;
    line-height: 1.5;
}

.home-storefront-cta {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary-gold);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
}

.home-storefront-cta:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
}

.home-storefront-image {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Home Location Section */
.home-location {
    padding: 100px 0;
    background: var(--off-black);
    color: var(--text-light);
}

.location-header {
    text-align: center;
    margin-bottom: 60px;
}

.location-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-family: 'Bebas Neue', 'Bebas-Fallback', 'Arial Black', 'Impact', 'Franklin Gothic Bold', sans-serif;
    letter-spacing: 1px;
}

.location-subtitle {
    font-size: 1.2rem;
    color: var(--light-cream);
    opacity: 0.8;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-card {
    background: rgba(155, 128, 74, 0.1);
    border: 1px solid rgba(155, 128, 74, 0.3);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: var(--transition);
}

.info-card:hover {
    background: rgba(155, 128, 74, 0.15);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.info-icon {
    font-size: 1.5rem;
    min-width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-gold);
    color: var(--text-dark);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-weight: bold;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    font-size: 1.1rem;
    color: var(--primary-gold);
    margin-bottom: 8px;
    font-weight: 600;
}

.business-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 4px;
}

.address {
    font-size: 0.85rem;
    color: var(--light-cream);
    opacity: 0.9;
    line-height: 1.4;
    margin-bottom: 10px;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--primary-gold);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.directions-btn:hover {
    background: #D4AF37;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(155, 128, 74, 0.3);
}

.btn-icon {
    font-size: 1rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(155, 128, 74, 0.2);
}

.hours-group:last-child {
    border-bottom: none;
}

.hours-group.closed {
    opacity: 0.6;
}

.hours-group.weekend {
    background: rgba(155, 128, 74, 0.1);
    padding: 6px 10px;
    border-radius: 6px;
    border-bottom: none;
}

.days {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.85rem;
}

.time {
    color: var(--primary-gold);
    font-weight: 500;
    font-size: 0.85rem;
}

.hours-group.closed .time {
    color: #888;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.contact-label {
    font-weight: 600;
    color: var(--light-cream);
    min-width: 45px;
    font-size: 0.85rem;
}

.contact-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.85rem;
}

.contact-link:hover {
    color: #D4AF37;
    text-decoration: underline;
}

.location-map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* Footer Updates */
.footer {
    background: var(--off-black);
    padding: 60px 0 40px;
    color: var(--text-light);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    gap: 30px;
    align-items: center;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-external {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.footer-external a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-external a:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(155, 128, 74, 0.5);
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}


.footer-legal a {
    color: var(--text-light) !important;
    text-decoration: none !important;
    font-weight: 400 !important;
    transition: var(--transition);
    font-size: 0.85rem !important;
    opacity: 0.8 !important;
}

.footer-legal a:hover {
    color: var(--primary-gold) !important;
    opacity: 1 !important;
}

.footer-text {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Mobile Responsiveness for Homepage */
@media (max-width: 768px) {
    /* Cannabuzzery Hero Mobile */
    .cannabuzzery-hero {
        z-index: 1;
        position: relative;
        padding-top: 20px;
    }
    
    .cannabuzzery-hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding-top: 40px;
        min-height: 85vh;
    }
    
    .cannabuzzery-hero-bg {
        background-attachment: scroll;
        background-position: center;
        background-size: cover;
    }
    
    .cannabuzzery-hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .cannabuzzery-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
        text-align: center;
        max-width: 100%;
    }
    
    .cannabuzzery-hero-content {
        text-align: center;
    }

    .cannabuzzery-hero-cta {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    /* Fix hero z-index and positioning */
    .home-hero {
        z-index: 1;
        position: relative;
        padding-top: 20px;
        height: auto;
        min-height: 110vh;
    }
    
    .home-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-top: 40px;
        min-height: 95vh;
    }
    
    .home-hero-content {
        text-align: center;
        order: 2;
    }
    
    .home-hero-image {
        order: 1;
    }
    
    .home-hero-bg {
        background-attachment: scroll;
        background-position: center;
        background-size: cover;
    }
    
    .home-hero-logo-img {
        max-width: 280px;
    }
    
    .home-hero-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
        margin-bottom: 15px;
    }
    
    .home-hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .title-highlight {
        font-size: 3rem;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .home-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .home-hero-cta {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-bottom: 30px;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }
    
    .home-hero-features {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .hero-feature {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        font-size: 0.85rem;
    }
    
    .feature-icon {
        font-size: 1.2rem;
    }
    
    .hero-products {
        max-width: 300px;
    }
    
    .floating-element {
        display: none;
    }
    
    /* Other sections mobile fixes */
    .home-order {
        padding: 60px 0;
    }
    
    .home-order-content,
    .home-drinks-content,
    .home-storefront-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .home-order-title,
    .home-drinks-title,
    .home-storefront-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .location-title {
        font-size: 2.2rem;
    }
    
    .home-hero-subtitle,
    .home-order-subtitle,
    .home-drinks-description,
    .home-storefront-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .home-order-features,
    .home-storefront-highlights {
        align-items: center;
        gap: 20px;
    }
    
    .home-order-feature {
        font-size: 1rem;
    }
    
    .home-order-icon {
        font-size: 1.5rem;
    }
    
    .home-drinks-schedule {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .home-schedule-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        font-size: 0.95rem;
    }
    
    .home-storefront-highlights {
        text-align: left;
    }
    
    .home-highlight-item {
        align-items: center;
        text-align: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .home-highlight-text {
        text-align: center;
    }
    
    .home-highlight-icon {
        font-size: 2rem;
    }
    
    /* Location section mobile fixes */
    .location-info {
        gap: 20px;
    }
    
    .info-card {
        padding: 20px;
        text-align: left;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .info-content {
        text-align: center;
    }
    
    .hours-group {
        padding: 10px 0;
    }
    
    .contact-item {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .map-container {
        height: 300px;
        margin-top: 20px;
    }
    
    /* Footer mobile fixes */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 30px;
        justify-content: center;
    }
    
    .footer-text {
        font-size: 0.85rem;
    }
    
    /* Navigation mobile fixes */
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: var(--dark-brown);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        margin: 20px 0;
        padding: 10px 20px;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-cta {
        display: none;
    }
}

/* Menu Page Styles */
.menu-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--text-dark) 100%);
    color: var(--text-light);
    text-align: center;
}

.menu-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.menu-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(138, 112, 43, 0.2);
    border: 1px solid var(--dark-gold);
    padding: 8px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-gold);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.menu-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Bebas Neue', 'Bebas-Fallback', 'Arial Black', 'Impact', 'Franklin Gothic Bold', sans-serif;
    letter-spacing: 1px;
}

.menu-title .title-highlight {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Safari fix: prevent text shadows from bleeding through transparent text */
    text-shadow: none !important;
}

.menu-subtitle {
    font-size: 1.2rem;
    color: var(--light-cream);
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.menu-content {
    padding: 80px 0;
    background: var(--grey-white);
}

.menu-header {
    text-align: center;
    margin-bottom: 50px;
}

.menu-section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Bebas Neue', 'Bebas-Fallback', 'Arial Black', 'Impact', 'Franklin Gothic Bold', sans-serif;
    letter-spacing: 1px;
}

.menu-section-subtitle {
    font-size: 1.1rem;
    color: var(--primary-gold);
    font-weight: 600;
    background: rgba(155, 128, 74, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
}

.menu-image-container {
    text-align: center;
    margin-bottom: 60px;
}

.menu-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.menu-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.menu-info {
    margin-bottom: 60px;
}

.menu-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-info-card {
    background: white;
    border: 1px solid rgba(155, 128, 74, 0.2);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.menu-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(155, 128, 74, 0.2);
    border-color: var(--primary-gold);
}

.menu-info-card .info-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gold);
    color: var(--text-dark);
    border-radius: 50%;
    font-weight: bold;
}

.menu-info-card .info-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.menu-info-card .info-content p {
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.5;
}

.menu-cta {
    text-align: center;
}

.btn-primary-large {
    display: inline-block;
    padding: 20px 40px;
    background: var(--dark-gold);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(138, 112, 43, 0.3);
    margin-bottom: 15px;
}

.btn-primary-large:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(138, 112, 43, 0.4);
}

.menu-cta-text {
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 1rem;
}

/* Menu Page Mobile Styles */
@media (max-width: 768px) {
    .menu-hero {
        padding: 140px 0 60px;
    }
    
    .menu-title {
        font-size: 2.5rem;
    }
    
    .menu-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .menu-section-title {
        font-size: 2.2rem;
    }
    
    .menu-image-container {
        padding: 0 20px;
    }
    
    .menu-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .menu-info-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .menu-info-card .info-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .btn-primary-large {
        padding: 18px 30px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
    }
}