/* =========================================
   1. VARIABLES & CORE SETUP
   ========================================= */
:root {
    --maroon: #5D0E11;
    /* Royal Coastal Red */
    --gold: #D4AF37;
    /* Traditional Gold */
    --cream: #FFFDF5;
    /* Warm Traditional Background */
    --dark: #121212;
    /* Rich Contrast Dark */
    --white: #ffffff;
    --grey: #f4f4f4;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   2. PRELOADER & PROGRESS CIRCLE
   ========================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: 0.8s ease;
}

.loader-content {
    text-align: center;
    color: var(--gold);
}

.logo-loader {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 5px;
    animation: pulse 2s infinite;
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(93, 14, 17, 0.2);
    z-index: 10000;
    opacity: 1;
    transition: var(--transition);
}

.progress-circle path {
    fill: none;
    stroke: var(--gold);
    stroke-width: 4;
    box-sizing: border-box;
    transition: var(--transition);
}

/* =========================================
   3. NAVIGATION (ADVANCED)
   ========================================= */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    transition: var(--transition);
}

nav.nav-scrolled {
    background: var(--maroon);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

.logo a {
    font-size: 1.6rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-btn {
    background: var(--gold);
    color: var(--maroon) !important;
    padding: 10px 25px;
    border-radius: 5px;
}

/* =========================================
   4. HERO SECTION (CINEMATIC)
   ========================================= */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video video {
    /* ... keep your existing width: 100%, etc. ... */

    height: 110% !important;
    /* Makes the video 10% taller than the screen */
    object-fit: cover;
    /* Prevents the video from looking stretched */
    bottom: -50px;
    /* Pushes the extra 10% toward the bottom */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    z-index: 1;
    max-width: 800px;
}

.hero-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--gold);
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: var(--maroon);
    color: var(--white);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--maroon);
    transition: var(--transition);
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

/* =========================================
   5. QUICK STATS BAR
   ========================================= */
.quick-stats {
    background: var(--maroon);
    padding: 60px 0;
    color: var(--gold);
    margin-top: -85px;
    /* Increased from -50px to pull it HIGHER */
    position: relative;
    /* Keep this as is */
    z-index: 10;
    /* Increased to 10 to make sure it sits ON TOP of the gap */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info h3 {
    font-size: 2.5rem;
    color: var(--white);
}

.stat-info p {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* =========================================
   6. ABOUT SECTION (IMAGE STACK)
   ========================================= */

.about-section {
    padding: 120px 0;
    margin-top: -60px;
    /* This pulls the section UP to cover the white gap */
    position: relative;
    /* This tells the browser the section can move */
    z-index: 5;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 500px;
}

.img-stack-top {
    width: 80%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    border: 10px solid var(--white);
    box-shadow: var(--shadow);
}

.img-stack-bottom {
    width: 80%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    filter: grayscale(100%);
    transition: 0.5s;
}

.about-images:hover .img-stack-bottom {
    filter: grayscale(0%);
    transform: translate(-20px, -20px);
}

.img-stack-top img,
.img-stack-bottom img {
    width: 100%;
    border-radius: 5px;
}

.section-tag {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
}

.about-text h2 {
    font-size: 3rem;
    color: var(--maroon);
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text h2 span {
    color: var(--gold);
}

.about-list {
    list-style: none;
    margin: 30px 0;
}

.about-list li {
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-list i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* =========================================
   7. SERVICES (MODERN CARDS)
   ========================================= */
.services-section {
    padding: 100px 0;
    background: var(--grey);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    color: var(--maroon);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.s-card-img {
    height: 200px;
    overflow: hidden;
}

.s-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.s-card-content {
    padding: 30px;
    position: relative;
}

.s-card-content i {
    position: absolute;
    top: -30px;
    right: 30px;
    background: var(--maroon);
    color: var(--gold);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 4px solid var(--white);
}

.service-card:hover {
    transform: translateY(-15px);
}

.service-card:hover .s-card-img img {
    transform: scale(1.1);
}



/* =========================================
   GALLERY GRID STYLES
   ========================================= */
.gallery-section {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(93, 14, 17, 0.8);
    /* Maroon Overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s ease;
}

.gallery-overlay span {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--gold);
    padding: 10px 20px;
}

/* Hover Effects */
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* =========================================
   8. MENU TABS (CLEAN)
   ========================================= */
.menu-section {
    padding: 100px 0;
}

.tab-triggers {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-trigger {
    padding: 15px 40px;
    border: 2px solid var(--maroon);
    background: transparent;
    color: var(--maroon);
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.tab-trigger.active {
    background: var(--maroon);
    color: var(--white);
}


.tab-content {
    display: none;
    animation: fadeIn 0.8s ease;
}

.tab-content.active {
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.menu-item {
    border-bottom: 1px dashed #ccc;
    padding-bottom: 15px;
}

.menu-item span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--maroon);
}

.menu-item p {
    font-style: italic;
    color: #666;
}

/* --- THE NEW EYE-CATCHING MENU ITEM --- */
.menu-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    /* Rounded corners for a modern look */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Soft shadow to make it 'pop' */
    border-left: 4px solid var(--maroon);
    /* Thick maroon line on the left */
    transition: all 0.4s ease;
    /* Makes the hover move smoothly */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--maroon);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Smooth 'luxury' feel */
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Make the menu item move when you hover your mouse */
.menu-item:hover {
    transform: translateY(-8px);
    /* Lifts the card up */
    border-left-color: var(--gold);
    /* Changes the accent line to GOLD on hover */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    /* Deepens the shadow */
    background: var(--maroon);
    /* Background turns rich maroon */
    transform: translateY(-10px);
    /* Card lifts up */
    box-shadow: 0 15px 30px rgba(128, 0, 0, 0.2);
    /* Reddish glow */
    border-left-color: var(--gold);
    /* Side line turns gold */
}

.menu-item span {
    font-size: 1.4rem;
    font-weight: 800;
    /* Extra bold for the dish name */
    color: var(--maroon);
    margin-bottom: 8px;
    display: block;
}

.menu-item p {
    font-size: 0.95rem;
    color: #121212;
    /* Slightly darker for better reading */
    line-height: 1.5;
    font-style: normal;
    /* Clean look instead of italics */

}

.menu-item:hover span {
    color: var(--gold) !important;
    /* Dish name turns Gold */
}

.menu-item:hover p {
    color: var(--white) !important;
    /* Description turns White */
    opacity: 0.9;
}

/* =========================================
   9. BOOKING FORM (PREMIUM)
   ========================================= */
.booking-section {
    padding: 120px 0;
    background: var(--maroon);
    color: var(--white);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.booking-info h2 span {
    color: var(--gold);
}

.method-item {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
}

.method-item i {
    font-size: 1.5rem;
    color: var(--gold);
}

.booking-form-box {
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    color: var(--dark);
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

input,
select,
textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    outline: none;
}

input:focus {
    border-color: var(--maroon);
}

.btn-submit {
    width: 100%;
    background: var(--maroon);
    color: var(--white);
    border: none;
    padding: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--gold);
    color: var(--maroon);
}

/* =========================================
   10. REVEAL ANIMATIONS
   ========================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: 1s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: 1s ease;
}

.active.reveal-up,
.active.reveal-left,
.active.reveal-right {
    opacity: 1;
    transform: translate(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

/* =========================================
   11. MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .booking-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .img-stack-top,
    .img-stack-bottom {
        width: 100%;
        position: static;
        margin-bottom: 20px;
    }

    .about-images {
        height: auto;
    }

    .nav-links {
        display: none;
    }

    /* Add mobile menu JS later */
}

/* --- MOBILE OVERLAP REPAIR --- */
@media screen and (max-width: 768px) {

    /* 1. Fix the "Traditional Bantwal Flavors" text */
    .hero-subtitle {
        font-size: 0.8rem !important;
        /* Smaller text */
        letter-spacing: 3px !important;
        /* Less spacing between letters */
        margin-bottom: 10px !important;
    }

    /* 2. Fix the "Legendary Taste" Headline */
    .hero h1 {
        font-size: 2.2rem !important;
        /* Shrink size so it doesn't overlap */
        line-height: 1.2 !important;
        /* Add space between lines */
        margin-bottom: 15px !important;
    }

    /* 3. Fix the paragraph text */
    .hero p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 25px !important;
        padding: 0 10px;
        /* Gives it room on the sides */
    }

    /* 4. Fix the Buttons overlapping or being too wide */
    .hero-btns {
        display: flex !important;
        flex-direction: column !important;
        /* Stack them */
        align-items: center !important;
        gap: 15px !important;
        width: 100% !important;
        margin-top: 20px !important;
        padding-bottom: 50px !important;
        /* Pushes content up so it's not hidden by the clip-path */
    }

    .btn-primary,
    .btn-secondary {
        width: 85% !important;
        /* Give them a consistent tap-friendly width */
        padding: 14px 20px !important;
        text-align: center !important;
        font-size: 0.9rem !important;
        display: block !important;
        /* Ensures visibility */
    }

    /* Fix the Hero content height so it doesn't cut off the buttons */
    .hero-content {
        padding-top: 60px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* --- MOBILE GAP REPAIR --- */
@media screen and (max-width: 768px) {

    /* 1. Reduce the massive space between About and Services */
    .about-section {
        padding: 40px 0 !important;
        /* Was 120px - now much tighter */
    }

    .services-section {
        padding: 30px 0 !important;
        /* Was 100px */
    }

    /* 2. Fix the Hero Text Overlap from your 'mobile.jpg' */
    .hero h1 {
        font-size: 2.3rem !important;
        /* Shrinks the 'Legendary Taste' headline */
        line-height: 1.2 !important;
        /* Adds breathing room between lines */
        margin-bottom: 10px !important;
    }

    .hero-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 5px !important;
    }

    /* 3. Fix the buttons getting cut off at the bottom */
    .hero-btns {
        flex-direction: column;
        /* Stacks buttons so they fit the width */
        gap: 10px !important;
    }

    .hero-content {
        position: relative !important;
        z-index: 100 !important;
        /* High number to stay on top of the Maroon bar */
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 12px !important;
        text-align: center;
    }
}

/* --- MOBILE-ONLY CSS REPAIR --- */
@media screen and (max-width: 768px) {

    /* 1. Force the image to always be in color and in position, bypassing the hover state */
    .about-images .img-stack-bottom {
        filter: grayscale(0%) !important;
        /* No grayscale */
        transform: translate(-20px, -20px) !important;
        /* Proper stacked position */
        transition: none !important;
        /* No transition needed as it's static */
    }

    /* 2. (Optional) Adjust the entire container so it's not looking for interaction */
    .about-images {
        cursor: default !important;
        /* No hover cursor on mobile */
    }
}

/* --- MOBILE-ONLY REPAIR --- */
@media screen and (max-width: 768px) {

    /* 1. Fix the massive gap between About and Services (gap.png) */
    .about-section {
        padding: 40px 0 !important;
        /* Reduces bottom gap */
    }

    .services-section {
        padding: 20px 0 !important;
        /* Reduces top gap */
    }

    /* 2. Fix text overlap in Hero (mobile.jpg) */
    .hero h1 {
        font-size: 2.2rem !important;
        /* Prevents words from colliding */
        line-height: 1.2 !important;
        /* Adds breathing room between lines */
        margin-bottom: 15px !important;
    }

    .hero-subtitle {
        font-size: 0.8rem !important;
        letter-spacing: 3px !important;
    }

    /* 3. Fix the "Explore" & "Check" buttons getting cut off */
    .hero-btns {
        flex-direction: column;
        /* Stacks buttons vertically for better fit */
        gap: 12px !important;
        width: 100%;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 85%;
        /* Makes buttons easy to tap with a thumb */
        padding: 12px 20px !important;
        text-align: center;
    }
}

/* =========================================
   ULTIMATE MOBILE RESPONSIVE REPAIR
   ========================================= */
@media screen and (max-width: 768px) {

    /* 1. FIX THE GAPS (gap.png, gap1.png, gap3.png) */
    section,
    .about-section,
    .services-section,
    .gallery-section,
    .booking-section {
        padding: 40px 0 !important;
        /* Reduces huge 120px gaps to a clean 40px */
    }

    /* 2. FIX THE HERO OVERLAP & TEXT (mobile.jpg, problem.png) */
    .hero h1 {
        font-size: 2.2rem !important;
        /* Prevents text collision */
        line-height: 1.2 !important;
        /* Adds space between lines */
    }

    .hero-btns {
        flex-direction: column;
        /* Stacks 'Explore' and 'Check' buttons vertically */
        gap: 15px !important;
        width: 100%;
    }

    /* 3. FIX EDGE TOUCHING (home3.png) */
    .container {
        padding: 0 25px !important;
        /* Pushes content away from the glass edges */
    }

    /* 4. FIX MENU BOXES (home3.png) */
    .tab-triggers {
        flex-wrap: wrap;
        /* Allows 'Vegetarian/Non-Veg' buttons to wrap instead of squishing */
        gap: 10px;
    }

    .tab-trigger {
        padding: 10px 20px !important;
        /* Smaller buttons for smaller screens */
        font-size: 0.85rem !important;
        flex: 1 1 40%;
        /* Ensures buttons take up even space */
    }

    .menu-grid {
        grid-template-columns: 1fr !important;
        /* Forces menu items into a single neat column */
        gap: 20px !important;
    }

    /* 5. FIX THE OVERLAY PROBLEM (problem.png) */
    .overlay {
        height: auto !important;
        min-height: 100vh;
        padding-top: 80px !important;
    }
}

/* =========================================
   MOBILE RESPONSIVE & ALIGNMENT REPAIR
   ========================================= */
@media screen and (max-width: 768px) {

    /* 1. FIX THE GAPS (gap.png, gap1.png, gap3.png, home4.png, home5.png) */
    /* We override the 120px/100px desktop padding with a clean 40px */
    .about-section,
    .services-section,
    .gallery-section,
    .booking-section {
        padding: 40px 0 !important;
    }

    /* 2. JUSTIFY & ALIGN CONTENT (justify.png, home2.png) */
    /* This fixes the text touching edges and centers it for mobile */
    .container {
        padding: 0 25px !important;
    }

    .about-text,
    .section-header {
        text-align: center !important;
        /* Centers headings for a professional mobile look */
    }

    /* This targets the paragraph in justify.png specifically */
    .about-text p,
    .hero p {
        text-align: left;
        /* Cleans up the jagged edges shown in your screenshot */
        hyphens: auto;
        /* Prevents large gaps between words when justified */
        font-size: 1.0 rem;
        /* Makes it easier to read on narrow screens */
    }

    /* 3. FIX MENU BOXES & TABS (home3.png) */
    .tab-triggers {
        flex-wrap: wrap;
        /* Allows buttons to drop to a second row instead of squishing */
        justify-content: center;
        gap: 10px;
    }

    .tab-trigger {
        flex: 1 1 40%;
        /* Ensures buttons take up equal width on the phone */
        padding: 12px !important;
        font-size: 0.85rem !important;
    }


    /* 4. FIX HERO OVERLAP (problem.png, mobile.jpg) */
    .hero h1 {
        font-size: 2.3rem !important;
        /* Shrinks the headline so words don't collide */
        line-height: 1.2 !important;
        /* Adds breathing room between wrapped lines */
    }

    .hero-btns {
        flex-direction: column;
        /* Stacks 'Explore' and 'Check' vertically */
        width: 100%;
        gap: 12px !important;
    }
}

/* --- FIXING LOGO & HERO OVERLAP --- */
@media screen and (max-width: 768px) {

    /* 1. Give the Navbar more breathing room */
    .nav-container {
        padding: 15px 5% !important;
        /* Adds space around the logo */
    }

    /* 2. Prevent the 'Bantwal Flavors' subtitle from touching the logo */
    .hero-content {
        position: relative !important;
        padding-top: 100px !important;
        /* Pushes content down away from the fixed navbar */
    }

    /* 3. Fix the 'Legendary Taste' font size and overlap */
    .hero h1 {
        font-size: 2.4rem !important;
        /* Smaller size to prevent word collision */
        line-height: 1.2 !important;
        /* Adds space between the wrapped lines */
        margin-bottom: 15px !important;
    }
    @media screen and (max-width: 768px) {
    
    /* 1. Give the Hero section more height so buttons have room to breathe */
    .hero {
        height: auto !important;
        min-height: 110vh !important; /* Forces the section to be taller than the screen */
        padding-top: 120px !important;
        padding-bottom: 100px !important; /* Pushes the buttons up away from the bottom */
    }

    /* 2. Pull the content to the front so it's not hidden by the maroon bar */
    .hero-content {
        position: relative !important;
        z-index: 10 !important; /* High number to stay on top */
    }

    /* 3. Stack the buttons vertically and move them UP */
    .hero-btns {
        display: flex !important;
        flex-direction: column !important; /* Stacks buttons one on top of the other */
        align-items: center;
        gap: 15px !important;
        margin-top: 20px !important;
        margin-bottom: 50px !important; /* This 'nudges' the Check button up */
    }

    /* 4. Make buttons wider so they are easy to click on a phone */
    .btn-primary, .btn-secondary {
        width: 85% !important; /* 35% was too small; 85% is perfect for mobile */
        padding: 14px 20px !important;
        text-align: center;
        display: block !important;
    }
}

    /* 4. Fix the overlay height that was forcing things together (problem.png) */
    .overlay,
    .hero-overlay {
        height: auto !important;
        min-height: 100vh;
        /* Ensures it still covers the screen but grows with text */
    }
}

/* --- FIXING CONTACT ALIGNMENT --- */
@media screen and (max-width: 768px) {
    .contact-methods {
        display: flex;
        flex-direction: column;
        /* Stacks them vertically */
        align-items: flex-start !important;
        /* Forces items to the LEFT edge */
        text-align: left !important;
        /* Ensures text doesn't center */
    }

    .method-item {
        display: flex;
        align-items: flex-start;
        /* Aligns the icon with the top of the text */
        width: 100%;
        margin-bottom: 25px;
        /* Adds space between the three items */
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        /* Shows 2 stats per row on phones */
        gap: 15px;
    }

    .quick-stats {
        margin-top: -60px;
        /* A smaller pull-up is better for small phone screens */
    }
}

@media (max-width: 768px) {

    /* 1. Hamburger Icon Styling */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1100;
        /* Stays above the menu */
    }

    .mobile-menu-btn .bar {
        width: 100%;
        height: 3px;
        background-color: var(--white);
        transition: var(--transition);
    }

    /* 2. Full-screen Mobile Menu */
    .nav-links {
        display: flex !important;
        /* Override the display:none in your current CSS */
        position: fixed;
        top: 0;
        right: -100%;
        /* Start off-screen to the right */
        width: 100%;
        height: 100vh;
        background: var(--maroon);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
    }

    /* Slide in when active */
    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
        margin-left: 0 !important;
        /* Remove desktop margin */
    }

    .nav-links a {
        font-size: 1.5rem !important;
        color: var(--white);
    }

    /* 3. Hamburger to 'X' Animation */
    #mobile-toggle.is-active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--gold);
    }

    #mobile-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--gold);
    }
}