/* ============================
   GLOBAL STYLES & VARIABLES
   ============================ */

:root {
    --primary-color: #44a641; /* Forest Green */
    --secondary-color: #2b6c29; /* Forest Green Dark */
    --accent-color: #69c266; /* Forest Green Light */
    --dark-bg: #0A0A0A;
    --card-bg: #1A1A1A;
    --light-bg: #2A2A2A;
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8B8;
    --text-muted: #888888;
    --border-color: #333333;
    --gradient-start: #44a641;
    --gradient-end: #2b6c29;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

/* ============================
   TYPOGRAPHY
   ============================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
}

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

.highlight {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ============================
   BUTTONS
   ============================ */

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--dark-bg);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(68, 166, 65, 0.3);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* ============================
   NAVIGATION
   ============================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.nav-logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

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

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

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--dark-bg);
    padding: 10px 24px;
    border-radius: 6px;
}

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

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(68, 166, 65, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

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

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('hero.jpg') center / cover fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.9);
    z-index: 1;
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

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

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

.scroll-indicator p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================
   ANIMATION CLASSES
   ============================ */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* ============================
   SECTIONS
   ============================ */

section {
    padding: 100px 0;
}

.welcome {
    background-color: var(--dark-bg);
}

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

.badge-logo {
    max-width: 400px;
    filter: drop-shadow(0 10px 30px rgba(68, 166, 65, 0.2));
    animation: float 6s ease-in-out infinite;
}

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

.welcome-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* ============================
   FEATURED BEERS
   ============================ */

.featured-beers {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--card-bg) 100%);
}

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

.beer-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.beer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(68, 166, 65, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.beer-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(68, 166, 65, 0.2);
}

.beer-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.beer-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.beer-stats {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
    padding: 0.75rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.abv, .ibu {
    font-weight: 600;
    color: var(--primary-color);
}

.cta-section {
    margin-top: 4rem;
}

/* ============================
   EXPERIENCE SECTION
   ============================ */

.experience {
    background-color: var(--dark-bg);
}

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

.experience-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 35px rgba(43, 108, 41, 0.2);
}

.experience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.experience-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* ============================
   HOURS & LOCATION
   ============================ */

.hours-location {
    background: var(--card-bg);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.hours-card, .location-card {
    background: var(--dark-bg);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.hours-card h2, .location-card h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

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

.time {
    color: var(--text-secondary);
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.info-item .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

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

.footer {
    background-color: #000000;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.tagline {
    font-style: italic;
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ============================
   PAGE HERO (Internal Pages)
   ============================ */

.page-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('hero.jpg') center / cover fixed;
    margin-top: 80px;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.4);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-image {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    height: 120%;
    width: auto;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
    display: none;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(68, 166, 65, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(43, 108, 41, 0.15) 0%, transparent 50%);
}

.page-title {
    font-size: 4rem;
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

/* ============================
   ABOUT PAGE STYLES
   ============================ */

.history-section {
    background: var(--dark-bg);
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.badge-container {
    position: sticky;
    top: 100px;
}

.history-badge {
    max-width: 100%;
    filter: drop-shadow(0 10px 30px rgba(68, 166, 65, 0.3));
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--gradient-start), var(--gradient-end));
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    text-align: right;
    padding-right: 2rem;
    position: relative;
    margin-left: -45px;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 10px;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--dark-bg);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Name Story Section */
.name-story {
    background: var(--card-bg);
}

.name-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.name-text h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.swamp-facts {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    position: sticky;
    top: 100px;
}

.swamp-facts h4 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.fact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.fact-item:last-child {
    border-bottom: none;
}

.fact-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.fact-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.transformation {
    margin-top: 3rem;
}

.transformation h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.quote {
    background: var(--dark-bg);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    margin-top: 2rem;
    font-size: 1.1rem;
}

/* Philosophy Section */
.philosophy {
    background: var(--dark-bg);
}

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

.philosophy-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(68, 166, 65, 0.2);
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.philosophy-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    background: var(--card-bg);
}

.team-intro {
    max-width: 800px;
    margin: 2rem auto 3rem;
    text-align: center;
}

.join-team {
    background: var(--dark-bg);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    text-align: center;
    max-width: 700px;
    margin: 3rem auto 0;
}

.join-team h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Visit CTA */
.visit-cta {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--dark-bg);
    padding: 80px 20px;
    text-align: center;
}

.visit-cta h2 {
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.visit-cta p {
    color: rgba(10, 10, 10, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.visit-cta .btn-primary {
    background: var(--dark-bg);
    color: var(--primary-color);
}

.visit-cta .btn-primary:hover {
    background: var(--card-bg);
}

.visit-cta .btn-secondary {
    background: transparent;
    color: var(--dark-bg);
    border-color: var(--dark-bg);
}

.visit-cta .btn-secondary:hover {
    background: var(--dark-bg);
    color: var(--primary-color);
}

/* ============================
   DRINKS PAGE STYLES
   ============================ */

.menu-nav {
    background: var(--card-bg);
    padding: 2rem 0;
    position: sticky;
    top: 80px;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.menu-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 24px;
    background: var(--dark-bg);
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.drinks-section {
    display: none;
}

.drinks-section.active {
    display: block;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.drink-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.drink-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 35px rgba(43, 108, 41, 0.2);
}

.drink-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(68, 166, 65, 0.05) 100%);
}

.drink-card.seasonal {
    border-color: var(--secondary-color);
}

.drink-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.drink-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.drink-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
}

.drink-style {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.drink-stats {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
    padding: 0.75rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat {
    color: var(--text-secondary);
}

.stat strong {
    color: var(--primary-color);
}

.drink-description {
    margin: 1rem 0;
    line-height: 1.7;
}

.drink-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.note {
    background: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.availability {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 1rem;
}

.to-go-section,
.seasonal-note {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    margin-top: 3rem;
    text-align: center;
}

.to-go-section h3,
.seasonal-note p strong {
    color: var(--primary-color);
}

/* Alt Drinks */
.alt-drinks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.alt-drink-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.alt-drink-card h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.wine-types,
.seltzer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.wine-types span {
    background: var(--dark-bg);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.seltzer-info {
    flex-direction: column;
    gap: 1rem;
}

/* Cocktails */
.cocktails-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cocktail-info {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.cocktail-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.bar-note {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--secondary-color);
    margin-top: 3rem;
    text-align: center;
}

/* Food Section */
.food-section {
    background: var(--card-bg);
}

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

.food-card {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.food-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.food-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ============================
   MERCH PAGE STYLES
   ============================ */

.merch-intro {
    background: var(--dark-bg);
    padding: 80px 0;
}

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

.merch-badge {
    max-width: 100%;
    filter: drop-shadow(0 10px 30px rgba(68, 166, 65, 0.3));
    animation: float 6s ease-in-out infinite;
}

.intro-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.merch-category {
    padding: 80px 0;
}

.merch-category:nth-child(even) {
    background: var(--card-bg);
}

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

.merch-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.merch-category:nth-child(even) .merch-card {
    background: var(--dark-bg);
}

.merch-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(68, 166, 65, 0.2);
}

.merch-card.featured {
    border: 2px solid var(--primary-color);
}

.merch-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.merch-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.merch-features,
.glass-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.merch-features span,
.glass-specs span {
    background: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.merch-category:nth-child(even) .merch-features span,
.merch-category:nth-child(even) .glass-specs span {
    background: var(--card-bg);
}

/* Takeout Section */
.takeout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.takeout-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
}

.takeout-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.takeout-card h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.takeout-details ul {
    list-style: none;
    margin: 1rem 0;
}

.takeout-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.takeout-details li::before {
    content: '🍺';
    position: absolute;
    left: 0;
}

.club-callout {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--dark-bg);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

.club-callout h3 {
    color: var(--dark-bg);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.club-callout p {
    color: rgba(10, 10, 10, 0.9);
}

.club-callout ul {
    list-style: none;
    margin-top: 1.5rem;
    display: inline-block;
    text-align: left;
}

.club-callout li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--dark-bg);
}

.club-callout li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 900;
}

/* Gift Section */
.gift-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gift-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.gift-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.gift-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.gift-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Shopping Info */
.shopping-info {
    background: var(--card-bg);
}

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

.info-box {
    background: var(--dark-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Social Section */
.social-section {
    background: var(--dark-bg);
}

.social-handles {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.social-handle {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--card-bg);
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-handle:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(68, 166, 65, 0.2);
}

.social-handle .icon {
    font-size: 2rem;
}

.social-note {
    max-width: 700px;
    margin: 2rem auto 0;
    text-align: center;
    color: var(--text-secondary);
}

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

@media (max-width: 1024px) {
    .welcome-grid,
    .history-content,
    .name-grid,
    .intro-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .badge-container {
        position: static;
        text-align: center;
    }

    .badge-logo,
    .history-badge,
    .merch-badge {
        max-width: 300px;
    }

    .swamp-facts {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 3rem;
        gap: 2rem;
        transition: left 0.3s ease;
        overflow-y: auto;
    }

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

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

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

    .beers-grid,
    .experience-grid,
    .drinks-grid,
    .merch-grid {
        grid-template-columns: 1fr;
    }

    .hours-grid,
    .takeout-grid,
    .alt-drinks {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 1.5rem;
    }

    .timeline-year {
        font-size: 1.5rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .page-title {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }

    .beer-card,
    .experience-card,
    .drink-card,
    .merch-card {
        padding: 1.5rem;
    }

    .menu-tabs {
        flex-direction: column;
    }

    .menu-tab {
        width: 100%;
    }
}

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}