/* ============================================
   THE WATERLOO INN - Main Stylesheet
   Deep Green & Warm Gold palette
   ============================================ */

/* --- CSS Variables --- */
:root {
    --green-darkest: #0F2318;
    --green-dark: #1B3B2D;
    --green: #2D5A45;
    --green-light: #3A7359;
    --gold: #C8A84E;
    --gold-light: #D9BD6A;
    --gold-dark: #A68A3A;
    --cream: #FAF7F0;
    --cream-dark: #F0EBE0;
    --dark: #1A1612;
    --text: #2C2416;
    --text-light: #F5F0E8;
    --white: #FFFFFF;
    --overlay: rgba(15, 35, 24, 0.65);
    --overlay-heavy: rgba(15, 35, 24, 0.8);
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', 'Segoe UI', Tahoma, sans-serif;
    --max-width: 1200px;
    --section-pad: 100px;
    --section-pad-mobile: 60px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--gold-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Section Titles --- */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: var(--green-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6B6456;
    max-width: 600px;
    margin-bottom: 48px;
}

.section-subtitle.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title.centered {
    text-align: center;
}

.section-title.light {
    color: var(--text-light);
}

.section-subtitle.light {
    color: rgba(245, 240, 232, 0.75);
}

/* --- Decorative Divider --- */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.divider.centered {
    justify-content: center;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.divider-icon {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 4px;
}

.divider.light .divider-line {
    background: var(--gold-light);
}

.divider.light .divider-icon {
    color: var(--gold-light);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--dark);
}

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

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--dark);
}

.btn-outline-light {
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
}

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

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    background-color: var(--green-darkest);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    letter-spacing: 1px;
    white-space: nowrap;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

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

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

.nav-phone {
    color: var(--gold) !important;
    font-weight: 600;
    letter-spacing: 0.5px !important;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 35, 24, 0.4) 0%,
        rgba(15, 35, 24, 0.6) 50%,
        rgba(15, 35, 24, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 0 24px;
}

.hero-tag {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(245, 240, 232, 0.85);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    animation: bounceDown 2s infinite;
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: var(--gold);
    margin: 12px auto 0;
}

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

/* ============================================
   WELCOME / ABOUT SECTION
   ============================================ */
.welcome {
    padding: var(--section-pad) 0;
    background-color: var(--cream);
}

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

.welcome-text p {
    margin-bottom: 20px;
    color: #5A5248;
    font-size: 1.0625rem;
}

.welcome-text p:first-of-type::first-letter {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    float: left;
    line-height: 1;
    margin-right: 8px;
    color: var(--green-dark);
    font-weight: 700;
}

.welcome-image {
    position: relative;
}

.welcome-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.welcome-image::before {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: -1;
}

/* --- Features Strip --- */
.features {
    padding: 60px 0;
    background-color: var(--green-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-item {
    color: var(--text-light);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--gold);
}

.feature-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============================================
   BEER GARDEN SECTION
   ============================================ */
.beer-garden {
    position: relative;
    padding: var(--section-pad) 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
}

.beer-garden::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--overlay-heavy);
}

.beer-garden .container {
    position: relative;
    z-index: 2;
}

.beer-garden-content {
    max-width: 650px;
}

.beer-garden-content p {
    color: rgba(245, 240, 232, 0.8);
    font-size: 1.0625rem;
    margin-bottom: 20px;
}

.beer-garden-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
}

.beer-garden-highlights li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.beer-garden-highlights li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   FOOD & DRINK SECTION
   ============================================ */
.food-drink {
    padding: var(--section-pad) 0;
    background-color: var(--cream);
}

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

.food-grid.reversed {
    direction: rtl;
}

.food-grid.reversed > * {
    direction: ltr;
}

.food-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.food-images img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.food-images img:first-child {
    grid-column: 1 / -1;
    height: 300px;
}

.food-text h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--green-dark);
    margin-bottom: 12px;
}

.food-text p {
    color: #5A5248;
    font-size: 1.0625rem;
    margin-bottom: 20px;
}

.menu-highlights {
    list-style: none;
    margin-bottom: 32px;
}

.menu-highlights li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(200, 168, 78, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.menu-highlights .dish-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.0625rem;
}

.menu-highlights .dish-desc {
    font-size: 0.875rem;
    color: #8A7E72;
    display: block;
}

.menu-highlights .dish-price {
    color: var(--gold-dark);
    font-weight: 600;
    white-space: nowrap;
    margin-left: 16px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: var(--section-pad) 0;
    background-color: var(--green-darkest);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 8px;
}

.gallery-item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 35, 24, 0);
    transition: background 0.3s ease;
}

.gallery-item:hover::after {
    background: rgba(15, 35, 24, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Featured items span two columns/rows */
.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

/* ============================================
   CAMPSITE TEASER SECTION
   ============================================ */
.campsite-teaser {
    padding: var(--section-pad) 0;
    background-color: var(--cream);
}

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

.campsite-text h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--green-dark);
    margin-bottom: 12px;
}

.campsite-text p {
    color: #5A5248;
    font-size: 1.0625rem;
    margin-bottom: 20px;
}

.campsite-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.campsite-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
}

.campsite-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.campsite-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* ============================================
   CONTACT / FIND US SECTION
   ============================================ */
.contact {
    padding: var(--section-pad) 0;
    background-color: var(--green-dark);
    color: var(--text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 20px;
    margin-top: 32px;
}

.contact-info h3:first-child {
    margin-top: 0;
}

.contact-info p,
.contact-info address {
    font-style: normal;
    color: rgba(245, 240, 232, 0.8);
    font-size: 1rem;
    line-height: 1.8;
}

.contact-info a {
    color: var(--gold);
}

.contact-info a:hover {
    color: var(--gold-light);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}

.hours-table td {
    padding: 8px 0;
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
    color: rgba(245, 240, 232, 0.8);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--text-light);
}

.contact-map {
    min-height: 400px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    filter: grayscale(30%) contrast(1.05);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 40px 0;
    background-color: var(--green-darkest);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    color: var(--text-light);
}

.footer-logo span {
    color: var(--gold);
}

.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-links a {
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.8125rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.footer-social {
    display: flex;
    gap: 16px;
    list-style: none;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(245, 240, 232, 0.2);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-copy {
    color: rgba(245, 240, 232, 0.4);
    font-size: 0.8125rem;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 16px;
    transition: color 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--gold);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ============================================
   PAGE HERO (for sub-pages)
   ============================================ */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 35, 24, 0.5) 0%,
        rgba(15, 35, 24, 0.75) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-light);
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(245, 240, 232, 0.8);
    font-size: 1.125rem;
}

/* ============================================
   MENU PAGE
   ============================================ */
.menu-section {
    padding: var(--section-pad) 0;
}

.menu-section:nth-child(even) {
    background-color: var(--cream-dark);
}

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

.menu-category h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--green-dark);
    margin-bottom: 8px;
    text-align: center;
}

.menu-category > p {
    text-align: center;
    color: #8A7E72;
    font-size: 0.9375rem;
    margin-bottom: 40px;
}

.menu-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(200, 168, 78, 0.15);
}

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

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 4px;
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
}

.menu-item-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(200, 168, 78, 0.3);
    min-width: 40px;
    margin-bottom: 6px;
}

.menu-item-price {
    font-weight: 600;
    color: var(--gold-dark);
    font-size: 1.0625rem;
    white-space: nowrap;
}

.menu-item-desc {
    color: #8A7E72;
    font-size: 0.9375rem;
    font-style: italic;
}

.menu-item-tag {
    display: inline-block;
    padding: 2px 8px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 2px;
    margin-left: 8px;
    vertical-align: middle;
}

.tag-v { background: #E8F5E9; color: #2E7D32; }
.tag-ve { background: #F1F8E9; color: #558B2F; }
.tag-gf { background: #FFF8E1; color: #F57F17; }

.menu-note {
    text-align: center;
    color: #8A7E72;
    font-size: 0.875rem;
    margin-top: 40px;
    font-style: italic;
}

/* ============================================
   EVENTS / WHAT'S ON
   ============================================ */
.events {
    padding: var(--section-pad) 0;
    background-color: var(--cream-dark);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.event-card {
    background: var(--white);
    overflow: hidden;
    border-bottom: 3px solid var(--gold);
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-card-body {
    padding: 24px;
}

.event-day {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.event-card h3 {
    font-size: 1.25rem;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.event-card p {
    color: #5A5248;
    font-size: 0.9375rem;
}

/* ============================================
   BOOKING FORM
   ============================================ */
.booking {
    padding: var(--section-pad) 0;
    background-color: var(--green-darkest);
    color: var(--text-light);
}

.booking-intro {
    text-align: center;
    color: rgba(245, 240, 232, 0.8);
    font-size: 1.0625rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.booking-intro a {
    color: var(--gold);
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(245, 240, 232, 0.08);
    border: 1px solid rgba(245, 240, 232, 0.2);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--green-darkest);
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    margin-bottom: 20px;
}

.booking-form .btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/* ============================================
   CAMPSITE PAGE
   ============================================ */
.campsite-section {
    padding: var(--section-pad) 0;
}

.campsite-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.campsite-intro p {
    color: #5A5248;
    font-size: 1.0625rem;
    margin-bottom: 20px;
}

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

.campsite-card {
    background: var(--white);
    padding: 40px;
    border-bottom: 3px solid var(--gold);
}

.campsite-card h3 {
    font-size: 1.375rem;
    color: var(--green-dark);
    margin-bottom: 16px;
}

.campsite-card p {
    color: #5A5248;
    font-size: 0.9375rem;
}

.campsite-card ul {
    list-style: none;
    margin-top: 12px;
}

.campsite-card li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5A5248;
    font-size: 0.9375rem;
}

.campsite-card li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .welcome-grid,
    .food-grid,
    .campsite-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .food-grid.reversed {
        direction: ltr;
    }

    .welcome-image::before {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 220px);
    }

    .gallery-item.featured {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 60px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--green-darkest);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 24px;
        transition: right 0.4s ease;
    }

    .nav-links.open {
        right: 0;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 200px);
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .campsite-features {
        grid-template-columns: 1fr;
    }

    .welcome-image img,
    .campsite-image img {
        height: 350px;
    }

    .beer-garden {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 180px);
    }

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

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .food-images {
        grid-template-columns: 1fr;
    }

    .food-images img:first-child {
        height: 250px;
    }
}
