:root {
    --primary-color: #1A3F17;
    /* Darker Forest Green */
    --secondary-color: #E6B800;
    /* Sun Yellow (Gary's Original) */
    --accent-color: #5D4037;
    /* Wood Brown (Gary's Original) */
    --text-color: #2A3329;
    /* Dark forest tint for text */
    --light-text: #F2EFE9;
    /* Warm Cream for light text */
    --white: #F8F5F0;
    /* Off-white */
    --bg-color: #FDFCF8;
    /* Very light warm background */
    --bg-light: #F2EFE9;
    /* Warm Cream */
    --font-heading: 'Averia Serif Libre', serif;
    --font-subheading: 'Rokkitt', serif;
    --font-body: 'Outfit', sans-serif;
    --font-banner: 'Oswald', sans-serif;
    --transition: cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    --border-radius: 12px;
    --shadow-sm: 3px 3px 0px rgba(47, 79, 47, 0.15);
    --shadow-md: 5px 5px 0px rgba(47, 79, 47, 0.2);
    --shadow-lg: 8px 8px 0px rgba(47, 79, 47, 0.25);
    --shadow-hover: 8px 8px 0px rgba(47, 79, 47, 0.35);
}

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

html {
    scroll-behavior: smooth;
    width: 100%;
    background: var(--primary-color);
    /* Fill the very bottom base with footer color */
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: transparent;
    /* Allow html gradient to show on overscroll */
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

main {
    background-color: var(--bg-color);
    /* Main site background */
    width: 100%;
}

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

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
}

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

.section-padding {
    padding: 7rem 0;
}

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

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-color);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--bg-color);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}


/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-color);
    line-height: 1.2;
}

.subtitle {
    display: block;
    font-family: var(--font-subheading);
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.divider {
    width: 52px;
    height: 4px;
    background-image: linear-gradient(to right, var(--secondary-color) 60%, transparent 60%);
    background-size: 20px 4px;
    background-repeat: repeat-x;
    background-position: left center;
    margin: 0 auto 3rem;
}

.divider.divider-swoop {
    width: 80px;
    height: 18px;
    background-image: none;
    background-color: var(--secondary-color);
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10 Q 25 2, 50 10 T 95 10' fill='none' stroke='black' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10 Q 25 2, 50 10 T 95 10' fill='none' stroke='black' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    padding: 0.4rem 0;
    background: rgba(255, 255, 255, 0.8); /* More transparent */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid var(--white);
}

#main-header.scrolled {
    padding: 0.2rem 0;
    background: rgba(255, 255, 255, 1); /* Fully opaque on scroll */
}

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

.logo img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

#main-header.scrolled .logo img {
    height: 60px;
}

#main-nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

#main-nav a:not(.btn) {
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    color: var(--text-color);
}

#main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

#main-nav a:hover:not(.btn) {
    color: var(--primary-color);
}

#main-nav a:hover:not(.btn)::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
#hero {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    isolation: isolate;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay for text readability */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.hero-content {
    z-index: 1;
    max-width: 800px;
}

.eyebrow {
    font-family: var(--font-subheading);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

#hero h1 {
    font-size: 4rem;
    /* Large hero text */
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -1px;
}

.highlight {
    color: var(--secondary-color);
    font-style: italic;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* About Section */
#about {
    position: relative;
    overflow: hidden;
}

.about-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.6s ease-out;
    will-change: opacity, transform;
}

.about-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

@media (max-width: 600px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.image-wrapper {
    height: 160px;
    overflow: hidden;
}

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

.about-card:hover .image-wrapper img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
}

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

/* Activities Banner */
#activities-banner {
    position: relative;
    background: linear-gradient(rgba(45, 90, 39, 0.7), rgba(45, 90, 39, 0.8)), url('assets/images/ourLocation.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 3rem 0;
    color: var(--white);
    overflow: hidden;
    white-space: nowrap;
}

.banner-track {
    display: inline-flex;
    width: max-content;
    animation: marquee 60s linear infinite;
}

.activity-item {
    font-family: var(--font-banner);
    /* Using Oswald for a classic wooden trail-sign aesthetic */
    font-size: 1.8rem;
    /* Confident size */
    font-weight: 500;
    /* Sturdy, medium weight */
    text-transform: uppercase;
    /* Structural all-caps */
    color: #ffffff;
    /* Pure white as requested */
    margin: 0 3rem;
    letter-spacing: 2px;
    /* Authentic painted-sign spacing */
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0.9;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Instagram Feed Section */
.ig-handle-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.ig-handle-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1rem;
    padding-bottom: 2rem;
}

/* Individual Scrapbook Photos */
.ig-post {
    width: 100%;
    /* Take whatever 1fr provides exactly */
    position: relative;
    border-radius: var(--border-radius);
    border: 8px solid var(--white);
    /* Thick photo paper border */
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--transition), box-shadow 0.4s ease;
    background: var(--white);
    aspect-ratio: 4 / 5;
    /* Standardizes sizing so photos don't look weirdly jagged */
}

/* Stagger every other post downwards! */
.ig-post:nth-child(even) {
    margin-top: 3.5rem;
}

@media (max-width: 900px) {
    .ig-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Exactly 2x2 grid */
    }

    .ig-post:nth-child(even) {
        margin-top: 0;
        /* Remove stagger on smaller screens */
    }
}

@media (max-width: 600px) {
    .ig-grid {
        grid-template-columns: 1fr;
        /* Force single column list */
        padding-bottom: 0;
    }

    .ig-post {
        margin: 0 auto;
        /* Center the posts in the list if they are maxed */
        max-width: 400px;
        /* Keep it from getting obscenely huge on dense screens */
    }

    .section-padding {
        padding: 4rem 0;
        /* Fix excessive vertical padding */
    }

    .card-content {
        text-align: center;
        /* Center buttons and text on mobile cabin cards */
    }
}

.ig-post img {
    width: 100%;
    height: 100%;
    /* Force image to fill aspect ratio */
    object-fit: cover;
    /* Crop natively without squishing */
    display: block;
    transition: transform 0.6s var(--transition);
}

.ig-post:hover {
    transform: translateY(-8px) scale(1.02) rotate(2deg);
    /* Organic tilt on hover! */
    box-shadow: var(--shadow-hover);
    z-index: 10;
}

.ig-post:hover img {
    transform: scale(1.05);
}


.ig-overlay {
    position: absolute;
    inset: 0;
    /* Use dark forest green (primary color #1A3F17 -> RGB 26,63,23) */
    background: linear-gradient(to top, rgba(26, 63, 23, 0.95) 0%, rgba(26, 63, 23, 0.4) 50%, rgba(26, 63, 23, 0) 100%);
    display: flex;
    align-items: flex-end;
    /* Align to bottom for a more dynamic look */
    justify-content: center;
    padding-bottom: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ig-post:hover .ig-overlay {
    opacity: 1;
}

.ig-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: white;
    text-align: center;
    padding: 0 1rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    width: 100%;
}

.ig-post:hover .ig-content {
    transform: translateY(0);
}

.ig-type {
    font-family: var(--font-subheading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    align-self: flex-start;
    margin-bottom: auto;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.ig-caption {
    font-family: var(--font-subheading);
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    word-break: break-word;
}

.ig-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.6rem 1.4rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50px;
    border: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.ig-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Margin Top Utility */
.mt-3 {
    margin-top: 2rem;
}

.mt-4 {
    margin-top: 3rem;
}

.mt-5 {
    margin-top: 4rem;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: transparent;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
}

.contact-info {
    padding: 4rem 3rem;
    background-color: var(--primary-color);
    color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.contact-info span.subtitle {
    color: var(--secondary-color);
}

.contact-info h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-desc {
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

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

.contact-info h4 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-map {
    height: 100%;
    min-height: 400px;
    display: flex;
}

.map-placeholder {
    flex: 1;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .contact-info {
        text-align: center;
        align-items: center;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .social-links {
        justify-content: center;
    }
}

.social-links a {
    color: white;
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.social-links a:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--bg-light);
    padding: 4rem 0 2rem;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    /* Fill iOS safe area */
    border-top: 6px solid var(--accent-color);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.6fr 1.2fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brand-col .footer-logo-img {
    height: 75px; /* Reduced from 90px */
    width: auto;
    transition: var(--transition);
}

.brand-col .footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-tagline {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.4rem;
    margin-top: 0.5rem;
}

.est-text {
    font-style: italic;
    font-family: var(--font-subheading);
    color: rgba(242, 239, 233, 0.7);
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(242, 239, 233, 0.6);
}

.footer-heading {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

.footer-links-list a:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

.contact-col p {
    color: var(--bg-light);
    margin-bottom: 0.5rem;
}

.contact-col a {
    color: var(--bg-light);
}

.contact-col a:hover {
    color: var(--secondary-color);
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
    margin-top: 1rem;
}

.footer-socials a {
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    color: var(--white);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-col {
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }

    .hours-col {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .links-col,
    .contact-col {
        display: none;
        /* Radically simplify footer by hiding redundant info */
    }

    .footer-tagline,
    .est-text {
        display: none;
        /* Only show logo and copyright on mobile */
    }

    footer {
        padding: 3rem 0 2rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1150px) {
    #main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        overflow-y: auto;
        background: white;
        transition: 0.4s ease;
        padding-top: 4rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    #main-nav.active {
        right: 0;
    }

    #main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 2rem;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
}

@media (max-width: 768px) {

    #hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* =========================================
   Menu Page Styles
   ========================================= */
/* =========================================
   PREMIUM MENU PAGE REDESIGN
   ========================================= */
.menu-page .page-header {
    position: relative;
    padding: 8rem 0 2rem;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(26, 63, 23, 0.8)), url('assets/images/ourHistory.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden;
}

.menu-page .page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    color: var(--white);
}

.menu-page .page-header .subtitle {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.menu-page .page-header p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.takeout-call {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    opacity: 0.9;
    flex-wrap: wrap;
    line-height: 1.4;
}

.takeout-call a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.takeout-call a:hover {
    color: var(--white);
}

/* Tabs Redesign */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 20;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.tab-btn {
    padding: 0.8rem 2.2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.tab-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

/* Menu Grid Redesign */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-category-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Wood grain texture overlay */
.menu-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
}

.menu-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 1rem;
}

.category-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    background: var(--bg-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: var(--transition);
}

.menu-category-card:hover .category-icon {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: rotate(-10deg) scale(1.1);
}

.menu-category-card h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 0;
    font-family: var(--font-heading);
}

.category-note {
    font-size: 0.95rem;
    color: #666;
    background: var(--bg-light);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Menu Items List */
.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.menu-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    position: relative;
}

.item-main {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    width: 100%;
}

.item-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    flex-shrink: 0;
    max-width: 75%;
}

.item-dots {
    flex-grow: 1;
    border-bottom: 1px dotted #ddd;
    height: 1px;
    margin-bottom: 0.4rem;
}

.item-price {
    font-family: var(--font-subheading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    flex-shrink: 0;
}

.item-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
    max-width: 90%;
}

/* Featured Badge */


.menu-footer {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    color: #666;
}

/* Responsive Redesign */
@media (min-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1000px) {
    .menu-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 2rem;
    }

    .menu-page .page-header h1 {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .menu-page .page-header {
        padding: 7rem 0 2rem;
    }

    .menu-tabs {
        gap: 0.8rem;
    }

    .tab-btn {
        width: 100%;
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .menu-category-card {
        padding: 1.5rem;
    }

    .item-name {
        font-size: 1.1rem;
        max-width: 70%;
    }

    .item-price {
        font-size: 1.1rem;
    }

    .category-note {
        margin-bottom: 1.5rem;
    }
}

/* Hero Section */
.cabins-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-top: 0;
    padding: 100px 0 120px;
    /* Added 120px bottom buffer */
}

.cabins-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}



.cabins-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    /* Slight zoom for parallax feel */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(33, 37, 41, 0.8) 100%);
    z-index: 2;
}

.cabins-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding-bottom: 2rem;
    /* Reduced because hero now has padding */
}

.eyebrow {
    display: inline-block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: var(--tertiary-color);
    font-weight: 600;
}

.cabins-hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.cabins-hero-content h1 .highlight {
    color: var(--secondary-color);
    font-style: italic;
    font-family: inherit;
    /* Optional: adds elegance if loaded */
}

.cabins-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.glow-btn {
    box-shadow: 0 0 20px rgba(107, 142, 35, 0.4);
    transition: all 0.3s ease;
}

.glow-btn:hover {
    box-shadow: 0 0 30px rgba(107, 142, 35, 0.6);
    transform: translateY(-2px);
}

/* Floating Features Bar */
.floating-features-wrapper {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10;
    width: 90%;
    max-width: 1200px;
}

.premium-features-bar {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
}

.feature-col {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-col:last-child {
    border-right: none;
    padding-right: 0;
}

.feature-col .f-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: rgba(107, 142, 35, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-col .f-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.feature-col strong {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.feature-col span {
    color: #666;
    font-size: 0.9rem;
}

/* Premium Details Section */
.premium-details {
    padding-top: 5rem;
    background: var(--bg-color);
}

.details-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.details-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: left;
}

.details-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: left;
}

.cabin-amenities-list {
    list-style: none;
    padding: 0;
}

.cabin-amenities-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-color);
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-style: normal;
}

.details-images {
    position: relative;
    height: 500px;
}

.img-comp {
    position: absolute;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

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

.main-img {
    width: 75%;
    height: 80%;
    top: 0;
    right: 0;
    z-index: 1;
}

.secondary-img {
    width: 55%;
    height: 60%;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 10px solid var(--bg-color);
}

/* Masonry Gallery */
.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    gap: 1.5rem;
    padding-top: 2rem;
}

.masonry-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.masonry-item.tall {
    grid-row: span 2;
}

.masonry-item.wide {
    grid-column: span 2;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.masonry-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.masonry-item:hover::after {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .premium-features-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-col:nth-child(2) {
        border-right: none;
    }

    .floating-features-wrapper {
        bottom: 1rem;
    }
}

@media (max-width: 991px) {
    .cabins-hero {
        flex-direction: column;
    }

    .cabins-hero-content {
        padding-bottom: 0;
    }

    .cabins-hero-content h1 {
        font-size: 3.5rem;
    }

    .details-grid-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .details-images {
        height: 400px;
    }

    .floating-features-wrapper {
        position: relative;
        transform: none;
        left: 0;
        width: 90%;
        margin-top: 3rem;
        bottom: auto;
    }

    .premium-details {
        padding-top: 4rem !important;
    }
}

@media (max-width: 768px) {
    .cabins-hero {
        height: auto;
        padding: 8rem 0 6rem;
    }

    .cabins-hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .premium-features-bar {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }

    .feature-col {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-right: 0;
        padding-bottom: 1rem;
    }

    .feature-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .masonry-item.wide {
        grid-column: span 1;
    }
}

/* Announcement Bar */
#announcement-bar {
    background: var(--secondary-color);
    color: #1a3f17;
    text-align: center;
    padding: 10px 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    display: none;
    /* Hidden by default, shown via JS */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#announcement-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#announcement-bar i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    #announcement-bar {
        font-size: 0.85rem;
        padding: 8px 15px;
    }
}

/* Positioning Logic for Announcement Bar + Fixed Header */
.announcement-active .menu-page .page-header {
    padding: 6rem 0 1rem;
    /* Push down menu/cabins hero */
}

.announcement-active .cabins-hero {
    padding-top: 140px;
}

.announcement-active #hero {
    padding-top: 140px;
}

/* Reduce whitespace between hero and menu options */
#menu-section {
    padding-top: 1rem;
}

@media (max-width: 768px) {
    #menu-section {
        padding-top: 0.5rem;
    }
}
/* Hours List Styling */
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list.compact li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.15rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-list .day {
    font-weight: 500;
    color: var(--secondary-color);
}

.hours-list .time {
    color: var(--white);
    opacity: 0.9;
}

.hours-list .holiday-hours {
    font-style: italic;
    font-size: 0.8rem;
    color: var(--secondary-color);
    opacity: 0.7;
    margin-top: 0.2rem;
}

.hours-list .season-dates {
    border-bottom: 2px solid rgba(255, 255, 255, 0.15) !important;
    margin-bottom: 0.4rem;
    padding-bottom: 0.3rem !important;
}

.hours-list .season-dates .day {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}
