/* ===============================
   GLOBAL RESPONSIVE FOUNDATION
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden; /* stops horizontal scroll on mobile */
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}


/* =====================
   GLOBAL RESET & BODY
===================== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url("../images/paper-bg.jpg") repeat;
    background-size: auto;
    overflow-x: hidden; /* OK */
    overflow-y: visible; /* IMPORTANT */
    scroll-padding-top: 90px;


}

/* =====================
   CONTAINER
===================== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* =====================
   SECTIONS
===================== */
section {
    padding: 60px 0;
}

header {
    padding: 0;
}

/* =====================
   TOP MITHILA BORDER
===================== */
.border-top {
    width: 100%;
    height: 70px;
    background: url("../images/mithila-border-top.png") repeat-x center;
    background-size: auto 100%;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.18);
    position: relative;
    z-index: 10;
}

/* =====================
   NAVBAR
===================== */
/* ================= CLEAN STICKY NAVBAR ================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: transparent;   /* 🔥 fully transparent */
    padding: 18px 0;
}


.navbar .container {
    display: flex;
    justify-content: flex-end;
}

.nav-links {
    list-style: none;   /* 🔥 removes bullets */
    padding: 0;
    margin: 0;
     margin-left: auto; 
    display: flex;
    justify-content: flex-end;
    gap: 26px;
}

.nav-links a {
     text-decoration: none;
    color: #6b2434;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 20px;
    transition: background 0.25s ease, color 0.25s ease;
}

.nav-links a.active {
   background: #6b2434;
    color: #fff;
}



.nav-links a:hover {
    background: #76283a9e;
    color: #fff;
}

html {
    scroll-behavior: smooth;
}

/* ================= NAVBAR LOGO ================= */
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0;
    
}

.nav-logo img {
    height: 90px;              /* perfect for navbar */
    width: auto;
    display: block;
     transition: transform 0.2s ease, filter 0.25s ease;;
     filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.18));
}
.nav-logo:hover img {
    transform: translateY(-2px);
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}


/* =====================
   HERO SECTION
===================== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 40px; /* ✅ FIX: replaces negative margin */
}

.hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 350px;
}

/* LEFT SIDE */
.hero-left {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    max-width: 400px;
    width: 100%;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 34px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    line-height: 1;
    box-sizing: border-box;
}

.btn.primary {
    background: #6b2434;
    color: #fff;
    border: 2px solid #6b2434;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
}

.btn.primary:hover {
    transform: translateY(-3px); /* small popup */
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35); /* subtle 3D shadow */
}


.btn.outline {
    background: transparent;
    color: #6b2434;
    border: 2px solid #6b2434;
    text-decoration: none;
}
/* Hover effect for View Menu (outline button) */
.btn.outline:hover {
    background: #6b2434;
    color: #fff;
    border-color: #6b2434;
}
.btn.outline {
    transition: all 0.3s ease;
}



/* =====================
   HERO RIGHT (MANDALA)
===================== */
.hero-right {
    width: 550px;
    height: 550px;
    pointer-events: none; /* ✅ FIX */
}

.mandala-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    pointer-events: none; /* ✅ FIX */
}

.mandala {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 25px rgba(0,0,0,0.15));
}

.biryani {
    position: absolute;
    top: 46%;
    left: 50%;
    width: 72%;

    /* FINAL optical vertical centering */
    transform: translate(-50%, -56%);

    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


.rotate-plate {
    transform-origin: center center;
    will-change: transform;
}


/* =====================
   FOOTER BORDER
===================== */
.border-bottom {
    width: 100%;
    height: 120px;
    background: url("../images/mithila-border-footer.png") repeat-x center;
    background-size: auto 100%;
}

/* =====================
   FOOTER
===================== */
.footer {
    text-align: center;
    padding: 20px;
    background: #f2f2f2;
}

/* =====================
   MODAL
===================== */
.reservation-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.reservation-box {
    background: #fff;
    padding: 20px;
    width: 300px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
}

/* =====================
   MENU SECTION
===================== */
.menu {
    position: relative;
    z-index: 5;
}

/* MENU HEADER */
.menu-header {
    text-align: left;
    margin-bottom: 40px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 6px;
    color: #6b2434;
}

.section-subtitle {
   font-size: 20px;
    font-weight: 600;
    color: #4a2a32;
    margin-top: 0;  
    margin-bottom: 12px;
}

/* GRID */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.menu-card {
    background: #6b2434;
    color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.45),
        0 6px 12px rgba(0, 0, 0, 0.25);
}




.menu-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.menu-content {
    padding: 20px;
    text-align: left;
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top:14px;
}

.menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 7px 30px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;

    color: #fff5d6;
    background: transparent;

    border: 2px solid #fff5d6;
    border-radius: 999px;

    text-decoration: none;
    transition: all 0.3s ease;
}

.menu-btn:hover {
    background: #fff5d6;
    color: #6b2434;
}
    


.rating {
    margin-top: 10px;
    color: #f4b400;
    font-size: 14px;
}

/* DETAIL MENU BUTTON */
.menu-action {
    margin-top: 40px;
    text-align: center;
}

.detail-menu-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    border: 2px solid #6b2434;
    color: #6b2434;
    text-decoration: none;
    font-size: 15px;
    cursor: pointer;
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

.detail-menu-btn:hover {
    background: #6b2434;
    color: #fff;
}
/* =========================
   ABOUT SECTION (CANVA STYLE)
========================= */

.about-canva {
    padding: 110px 0;
}

/* FLEX LAYOUT */
.about-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px; /* more breathing space */
}

/* =========================
   IMAGE STACK (MANDALA + COFFEE)
========================= */

.about-image {
    position: relative;
    width: 580px;      /* 🔥 increased */
    height: 580px;     /* 🔥 increased */
    max-width: 100%;
}

/* Mandala background */
.mandala-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Coffee image (top layer) */
.coffee-img {
    position: absolute;
    top: 48.5%;
    left: 49.9%;
    width: 52%;       /* 🔥 increased */
    transform: translate(-50%, -50%);
    z-index: 2;
    filter: drop-shadow(0 18px 35px rgba(0,0,0,0.28));
}

/* =========================
   CONTENT (RIGHT SIDE)
========================= */

.about-content {
    max-width: 520px;
}

.about-heading {
    font-size: 38px;
    color: #6b2434;
    margin-bottom: 6px;
}

.about-subheading {
    font-size: 20px;
    font-weight: 600;
    color: #4a2a32;
     margin-top: 0;
    margin-bottom: 12px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #6b2434;
     margin-top: 0;
    margin-bottom: 18px;
}

/* =========================
   BUTTON
========================= */

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 12px 32px;
    border-radius: 30px;
    border: 2px solid #6b2434;
    color: #6b2434;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.about-btn span {
    font-size: 20px;
}

.about-btn:hover {
    background: #6b2434;
    color: #fff;
}

/* =========================
   RESPONSIVE (MOBILE)
========================= */

@media (max-width: 900px) {

    .about-wrap {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .about-image {
        width: 380px;
        height: 380px;
    }

    .coffee-img {
        width: 72%;
    }

    .about-btn {
        justify-content: center;
    }
}
/* =========================
   ABOUT READ MORE TOGGLE
========================= */

.about-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
    opacity: 0;
}

.about-more.show {
    max-height: 500px; /* enough for multiple paragraphs */
    opacity: 1;
}

/* Optional: change arrow direction */
.about-btn span {
    transition: transform 0.3s ease;
}

.about-btn.active span {
    transform: rotate(90deg);
}
/* =========================
   CONTACT SECTION
========================= */
.contact-canva {
    padding: 100px 0;
}

.contact-wrap {
    display: flex;
    justify-content: space-between;
    gap: 90px;
}

/* LEFT CONTENT */
.contact-info {
    max-width: 480px;
}

.contact-title {
    font-size: 36px;
    color: #6b2434;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #4a2a32;
    margin-bottom: 10px;
}
.quick-support {
    font-size: 20px;
    font-weight: 600;
    color: #6b2434;
    margin-bottom: 10px;
}
.contact-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #6b2434;
    margin-bottom: 30px;
}

/* CONTACT DETAILS */
.contact-details p {
    font-size: 15px;
    color: #6b2434;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-details i {
    margin-top: 3px;
}


/* ========================= 
   GET DIRECTION BUTTON
========================= */
.direction-btn {
    display: inline-flex;
    align-items: center;

    /* LEFT padding only */
    padding-left: 26px;
    padding-right: 0px;

    height: 48px;
    min-width: 10px;

    background: #6b2434;
    color: #ffffff;

    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* ICON CIRCLE (RIGHT SIDE) */
.direction-btn .icon {
    width: 48px;
    height: 48px;

    margin-left: 14px; /* 👈 spacing between text & icon */

    background: #ffffff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}
.direction-btn {
    margin-bottom: 28px; /* 🔥 controls gap */
}

/* ICON */
.direction-btn .icon i {
    font-size: 30px;
    color: #6b2434;
}

/* HOVER – PREMIUM */
.direction-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 35px;
}

.social-icons a {
    color: #6b2434;
    font-size: 35px;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-4px);
    color: #4a1b27;
}


/* RIGHT FORM */
.contact-form {
    width: 420px;
}

.form-title {
    font-size: 26px;
    color: #6b2434;
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    border: 2px solid #6b2434;
    background: transparent;
    font-size: 14px;
    margin-bottom: 18px;
    outline: none;
}

.contact-form textarea {
    resize: none;
}

/* SEND BUTTON */
.send-btn {
    background: #6b2434;
    color: #fff;
    padding: 12px 34px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}

.send-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.35);
}
/* =========================
   RESERVATION MODAL STYLE
========================= */

.reservation-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.reservation-box {
    background: #fff;
    padding: 35px 30px 30px;
    width: 360px;
    border-radius: 18px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    animation: popUp 0.35s ease;
}

@keyframes popUp {
    from {
        transform: scale(0.9) translateY(10px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: #f2f2f2;
    font-size: 18px;
    cursor: pointer;
}

/* TITLE */
.reservation-box h2 {
    text-align: center;
    color: #6b2434;
    margin-bottom: 18px;
}

/* FORM ELEMENTS */
.reservation-box input,
.reservation-box select,
.reservation-box textarea {
    width: 100%;
    padding: 11px 14px;
    border-radius: 10px;
    border: 2px solid #6b2434;
    background: transparent;
    font-size: 14px;
    margin-bottom: 12px;
    outline: none;
}

/* DATE + TIME ROW */
.date-time {
    display: flex;
    gap: 10px;
}

.date-time input {
    width: 100%;
}

/* TEXTAREA */
.reservation-box textarea {
    resize: none;
    height: 70px;
}

/* BOOK BUTTON */
.reservation-box .btn {
    width: 100%;
    background: #6b2434;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    margin-top: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reservation-box .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
/* FIX DATE & TIME GAP ISSUE */
.reservation-box input,
.reservation-box select,
.reservation-box textarea {
    box-sizing: border-box;
}

/* DATE + TIME PERFECT BALANCE */
.date-time {
    display: flex;
    gap: 12px;
}

.date-time input {
    flex: 1;
    width: 100%;
}


/* MOBILE */
@media (max-width: 480px) {
    .reservation-box {
        width: 90%;
    }
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .contact-wrap {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .contact-details p {
        justify-content: center;
    }

    .contact-form {
        width: 100%;
    }
}
/* ===============================
   NAVBAR RESPONSIVE (STEP 2)
================================ */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: #6b2434;
    cursor: pointer;
    z-index: 2000;
}

@media (max-width: 992px) {

    .menu-toggle {
        display: block;
    }

    .navbar {
        background: transparent;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;

        width: 100%;
        flex-direction: column;
        align-items: center;

        background: #fff;
        padding: 15px 0;

        display: none;
        box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 12px 0;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-logo img {
        height: 60px;
    }
}
/* ===============================
   HERO RESPONSIVE – IMAGE FIRST
================================ */

/* Tablet & Mobile */
@media (max-width: 992px) {

    .hero {
        padding: 60px 0 40px;
        min-height: auto;
    }

    .hero-inner {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    /* IMAGE COMES FIRST */
    .hero-right {
        order: 1;
        width: 360px;
        height: 360px;
        margin: 0 auto;
    }

    /* LOGO + BUTTONS BELOW */
    .hero-left {
        order: 2;
        align-items: center;
        max-width: 100%;
    }

    .logo {
        max-width: 260px;
        margin-bottom: 18px;
    }

    .hero-buttons {
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .hero-right {
        width: 300px;
        height: 300px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .hero {
        padding: 40px 0 30px;
    }

    .hero-right {
        width: 260px;
        height: 260px;
    }

    .logo {
        max-width: 230px;
    }
}
/* ===============================
   MOBILE BIRYANI OPTICAL CENTER
================================ */
@media (max-width: 768px) {

    .biryani {
        top: 51%;                 /* reset desktop lift */
        transform: translate(-50%, -52%);
    }

}
/* ===============================
   HERO – TABLET (LARGER SCALE)
================================ */
@media (max-width: 1024px) {

    /* HERO SECTION */
    .hero {
        padding: 90px 0 70px;
        min-height: auto;
    }

    /* STACKED LAYOUT */
    .hero-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 55px;
    }

    /* =====================
       MANDALA + BIRYANI
    ====================== */
    .hero-right {
        order: 1;
        width: 520px;          /* 🔥 increased */
        height: 520px;         /* 🔥 increased */
        margin: 0 auto;
        position: relative;
    }

    .mandala-wrap {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .mandala {
        width: 100%;
        height: auto;
    }

    /* Tablet optical centering */
    .biryani {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 74%;            /* 🔥 slightly bigger */
        transform: translate(-50%, -54%);
    }

    /* =====================
       LOGO
    ====================== */
    .hero-left {
        order: 2;
        align-items: center;
        max-width: 140%;
    }

    .logo {
        max-width: 370px;      /* 🔥 increased */
        margin-bottom: 24px;
    }

    /* =====================
       BUTTONS
    ====================== */
    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 22px;
        flex-wrap: wrap;
    }

    .hero-buttons .btn {
        height: 60px;          /* 🔥 taller */
        padding: 0 50px;       /* 🔥 wider */
        font-size: 17px;       /* 🔥 bigger text */
        border-radius: 999px;
    }
}
/* ===============================
   HERO – MOBILE FINAL FIX
================================ */
@media (max-width: 768px) {

    /* Reduce overall hero height */
    .hero {
        padding: 40px 0 30px;
    }

    .hero-inner {
        gap: 28px;
    }

    /* =====================
       MANDALA + BIRYANI
    ====================== */
    .hero-right {
        width: 260px;        /* 🔽 reduced */
        height: 260px;
        margin-top: 10px;
    }

    .biryani {
        top: 50%;
        width: 70%;          /* 🔽 slightly smaller */
        transform: translate(-50%, -52%);
    }

    /* =====================
       LOGO
    ====================== */
    .logo {
        max-width: 230px;    /* 🔽 reduced */
        margin-bottom: 12px;
    }

    /* =====================
       BUTTONS
    ====================== */
    .hero-buttons {
        gap: 12px;
    }

    .hero-buttons .btn {
        max-width: 260px;
        height: 46px;
        font-size: 14px;
    }
}
/* ===============================
   NAVBAR RESPONSIVE
================================ */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: #6b2434;
    cursor: pointer;
}

/* Tablet + Mobile */
@media (max-width: 1024px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 15px 0;
        box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

    .nav-links.active {
        display: flex;
    }
}
/* ===============================
   MENU GRID – TABLET
================================ */
@media (max-width: 1024px) {

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }

    .menu-card img {
        height: 200px; /* better visual balance */
    }
}
/* ===============================
   MENU GRID – MOBILE
================================ */
@media (max-width: 768px) {

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .menu-card {
        max-width: 360px;
        margin: 0 auto;
    }

    .menu-card img {
        height: 190px;
    }

    .menu-content {
        padding: 18px;
    }

    .menu-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .menu-btn {
        width: 100%;
        text-align: center;
    }
}
/* ===============================
   MENU CARD – TABLET PROPORTION FIX
================================ */
@media (max-width: 1024px) {

    /* Make cards taller */
    .menu-card {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    /* Increase image height */
    .menu-card img {
        height: 240px;        /* 🔥 taller image */
        object-fit: cover;
    }

    /* Give content more breathing space */
    .menu-content {
        padding: 22px;
        flex-grow: 1;
    }

    /* Push footer down for balance */
    .menu-footer {
        margin-top: auto;
    }
}
/* =========================================
   MENU GRID – TABLET FINAL FORCE FIX
========================================= */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Keep 2 columns but reduce card width feel */
    .menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 30px !important;
    }

    /* FORCE card to be taller */
    .menu-card {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
    }

    /* FORCE image ratio (THIS IS THE KEY) */
    .menu-card img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 4 / 3 !important; /* 🔥 makes card taller */
        object-fit: cover !important;
    }

    /* Give content vertical space */
    .menu-content {
        flex-grow: 1 !important;
        padding: 22px !important;
    }

    /* Push footer to bottom */
    .menu-footer {
        margin-top: auto !important;
    }
}
/* =========================================
   MENU CARD – TABLET CONTENT FIX (NO OVERLAP)
========================================= */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Card layout */
    .menu-card {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;          /* 🔥 allow natural height */
    }

    /* Image stays tall */
    .menu-card img {
        width: 100% !important;
        aspect-ratio: 4 / 3 !important;
        object-fit: cover !important;
        flex-shrink: 0;                   /* 🔥 prevent image shrinking */
    }

    /* Content must grow */
    .menu-content {
        display: flex !important;
        flex-direction: column !important;
        flex-grow: 1 !important;
        padding: 22px !important;
    }

    /* Text spacing */
    .menu-content h3 {
        margin-bottom: 6px;
    }

    .menu-content p {
        margin-bottom: 14px;
        line-height: 1.5;
    }

    /* Footer pushed to bottom */
    .menu-footer {
        margin-top: auto !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 14px;
    }

    /* Button should NEVER overlap */
    .menu-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
}
/* ===============================
   CONTACT SECTION – TABLET
================================ */
@media (max-width: 1024px) {

    .contact-canva {
        padding: 80px 0;
    }

    .contact-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 60px;
    }

    .contact-info {
        max-width: 800px;
    }

    .contact-details p {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .contact-form {
        width: 100%;
        max-width: 520px;
    }
}
/* ===============================
   CONTACT SECTION – MOBILE
================================ */
@media (max-width: 768px) {

    .contact-canva {
        padding: 60px 0;
    }

    .contact-wrap {
        gap: 40px;
    }

    .contact-title {
        font-size: 30px;
    }

    .contact-subtitle {
        font-size: 18px;
    }

    .contact-desc {
        font-size: 14px;
    }

    .contact-form {
        max-width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
    }

    .send-btn {
        width: 100%;
        height: 48px;
    }
}
/* =========================================
   CONTACT INFO – TABLET (MEDIUM SIZE)
========================================= */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Titles */
    .contact-title {
        font-size: 34px;      /* 🔼 slightly bigger */
        margin-bottom: 8px;
    }

    .contact-subtitle {
        font-size: 20px;      /* 🔼 clearer */
        margin-bottom: 12px;
    }

    /* Description text */
    .contact-desc {
        font-size: 20px;      /* 🔼 readable */
        line-height: 1.7;
        margin-bottom: 26px;
    }

    /* Contact details */
    .contact-details p {
        font-size: 20px;
        gap: 10px;
        margin-bottom: 12px;
    }

    /* Get Direction button */
    .direction-btn {
        height: 48px;         /* 🔼 comfortable */
        font-size: 15px;
        padding-left: 26px;
    }

    .direction-btn .icon {
        width: 48px;
        height: 48px;
    }

    /* Social icons */
    .social-icons {
        gap: 30px;
    }

    .social-icons a {
        font-size: 32px;      /* 🔼 visible but not huge */
    }
}
/* ===============================
   FOOTER – TABLET
================================ */
@media (max-width: 1024px) {

    .footer {
        padding: 50px 0 40px;
        text-align: center;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        justify-items: center;
    }

    .footer-logo img {
        max-width: 150px;
        margin-bottom: 16px;
    }

    .footer-links ul {
        padding: 0;
    }

    .footer-links a {
        font-size: 15px;
    }

    .footer-social {
        justify-content: center;
        gap: 22px;
    }
}
/* ===============================
   FOOTER – MOBILE
================================ */
@media (max-width: 768px) {

    .footer {
        padding: 40px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo img {
        max-width: 130px;
    }

    .footer-links a {
        display: inline-block;
        padding: 6px 0;
        font-size: 14px;
    }

    .footer-social a {
        font-size: 24px;
    }

    .footer-bottom {
        font-size: 13px;
        margin-top: 20px;
    }
}
/* ===============================
   FOOTER LOGO CENTER FIX
================================ */
@media (max-width: 1024px) {

    .footer-logo {
        text-align: center;
        width: 100%;
    }

    .footer-logo img {
        margin: 0 auto;      /* 🔥 centers the logo */
        display: block;
    }
}

/* =========================================
   MOBILE MENU –  (FINAL)
   Shadow ONLY on centred card
   Tablet / Desktop NOT affected
========================================= */
@media (max-width: 768px) {

    /* Horizontal scroll container */
   .menu-grid {
    display: flex;
    gap: 16px;

    /* 🔥 extra side space for shadow */
    padding: 16px 24px;

    overflow-x: auto;
    overflow-y: visible;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}


    .menu-grid::-webkit-scrollbar {
        display: none;
    }

    /* =========================
       BASE MENU CARD (inactive)
    ========================= */
    .menu-card {
        position: relative;          /* required for shadow layer */
        flex: 0 0 84%;
        max-width: 84%;
        scroll-snap-align: center;

        border-radius: 16px;
        overflow: hidden;            /* keep image rounded */

        transform: scale(0.9);
        opacity: 0.85;

        box-shadow: none !important; /* NO shadow for side cards */
        transition:
            transform 0.35s ease,
            opacity 0.35s ease;
    }

    /* Disable hover effect on mobile */
    .menu-card:hover {
        transform: scale(0.9);
        box-shadow: none;
    }

    /* =========================
       SHADOW LAYER (OFF by default)
    ========================= */
    .menu-card::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 16px;
        pointer-events: none;

        opacity: 0;
        transition: opacity 0.35s ease;

        /* 🔥 SHADOW SAME FEEL AS BUTTON HOVER */
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
    }

    /* =========================
       ACTIVE (CENTER) CARD ONLY
    ========================= */
    .menu-card.is-active {
        transform: scale(1);
        opacity: 1;
        z-index: 5;
    }

    .menu-card.is-active::after {
        opacity: 1;   /* shadow visible ONLY here */
    }

    /* =========================
       CARD SIZE (compact)
    ========================= */
    .menu-card img {
        height: 120px;
        object-fit: cover;
    }

    .menu-content {
        padding: 14px;
    }

    .menu-content h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .menu-content p {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .menu-btn {
        padding: 6px 22px;
        font-size: 13px;
    }
}
/* =====================
   About Image
===================== */
@media (max-width: 480px) {
    .about-image {
        width: 320px;
        height: 320px;
    }

    .coffee-img {
         top: 49%;
        width: 50%;          /* 🔽 slightly smaller */
        transform: translate(-50%, -52%);
    }
}