/* ===== global.css ===== */
:root {
  --primary-red-color: #a50606;
  --primary-green-color: #037c52;
  --secondary-red-color: #d94948;
  --red-color: #ff0000;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Marcellus SC', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  max-width: 100%;
}

.container {
  padding-left: 10%;
  padding-right: 10%;
  text-align: center;
}
.container_reservation_catering {
  padding-left: 10%;
  padding-right: 10%;
}

body {
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
  line-height: 1;
  cursor: pointer;
  color: var(--secondary-red-color);
}

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

/* General css */
.btn-red {
  background: var(--secondary-red-color);
  color: #fff;
  padding: 14px 25px;
  font-size: 15px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid var(--secondary-red-color);
  outline: 0;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.56);
  width: fit-content;
}

.btn-red:hover {
  background: var(--primary-green-color);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.6);
  border: 1px solid var(--primary-green-color);
}

.btn-green {
  background: var(--primary-green-color);
  color: #fff;
  padding: 14px 25px;
  font-size: 15px;
  border-radius: 10px;
  cursor: pointer;
  border: 0;
  outline: 0;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.4);
  width: fit-content;
}

.btn-green:hover {
  background: var(--primary-red-color);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.6);
}

/* Outline button */
.btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 26px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  width: fit-content;
  scroll-behavior: smooth;
}

.btn-outline:hover {
  background: #fff;
  color: #111;
}


.section-title p {
  color: var(--primary-red-color);
  font-size: 45px;
  /* margin: 20px 0 0; */
  display: block;
  line-height: 1.3em;
  text-align: center;
}

.section-subtitle p {
  font-size: 18px;
  margin: 20px 0;
  color: #000;
  word-spacing: 0.8px;
}

.section-subtitle-green p {
  color: var(--primary-green-color);
  text-align: center;
  font-size: 22px;
  line-height: 1.3em;
  display: block;
}

.page-section-paragraph {
  font-size: 18px;
  margin: 20px 0;
  color: #000;
  word-spacing: 0.8px;
}

.page-header{
  color: #fff;
  text-align: center;
  
}
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.40);
}
/* nav bar css */
.navbar-container img {
  width: 200px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 100%;
  position: absolute;
  top: 0;
  /* background: rgba(0, 0, 0, 0.497);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5); */
  z-index: 999;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  max-width: 1600px;
}

.navbar-container .navbar-menu {
  display: flex;
  text-align: center;
  gap: 30px;
  list-style: none;
  align-items: center;
}

.navbar-container .navbar-menu li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  /* font-weight: 600; */
  padding: 8px 12px;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.7s ease;
  white-space: nowrap;
}

.navbar-container .navbar-menu li a:hover {
  color: var(--secondary-red-color);
}

/* Locations dropdown */
.navbar-dropdown { position: relative; }
.navbar-dropdown-toggle {
  border: 0; background: transparent; color: #fff; font: inherit; font-size: 18px;
  padding: 8px 12px; cursor: pointer; white-space: nowrap; transition: color .3s ease;
}
.navbar-dropdown-toggle:hover, .navbar-dropdown.open > .navbar-dropdown-toggle { color: var(--secondary-red-color); }
.navbar-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  min-width: 190px; margin: 0; padding: 10px 0; list-style: none; text-align: left;
  background: rgba(20,20,20,.97); border-radius: 8px; box-shadow: 0 10px 28px rgba(0,0,0,.25); z-index: 1100;
}
.navbar-dropdown:hover > .navbar-dropdown-menu, .navbar-dropdown:focus-within > .navbar-dropdown-menu, .navbar-dropdown.open > .navbar-dropdown-menu { display: block; }
.navbar-container .navbar-menu .navbar-dropdown-menu li a { display: block; padding: 10px 18px; border-radius: 0; font-size: 16px; }

.navbar-toggle {
  display: none;
  background: Transparent;
  padding: 10px;
  border: none;
  cursor: pointer;
}

.navbar-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

/* ///////// ALL MEDIA QUERIES ////////// */
@media (max-width: 768px) {
  .container {
    padding-left: 5%;
    padding-right: 5%;
    text-align: center;
  }
  .container_reservation_catering {
  padding-left: 5%;
  padding-right: 5%;
}

  .section-title p {
  color: var(--primary-red-color);
  font-size: 35px;
  display: block;
  line-height: 1.3em;
  text-align: center;
}

  .navbar {
    background: #fff;
    position: relative;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .navbar-container .navbar-menu {

    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 200px;
    padding: 7rem 1rem;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease-in-out;
  }

  .navbar-container .navbar-menu.active {
    display: flex;
  }

  .navbar-container .navbar-menu li {
    width: 100%;
  }

  .navbar-container .navbar-menu li a {

    color: #111;

    display: block;

    width: 100%;

    font-size: 20px;
  }

  .navbar-toggle {

    display: block;

    z-index: 1001;

    background: var(--secondary-red-color);

    border-radius: 5px;

    padding: 8px;
  }

  .navbar-toggle .bar {

    background-color: #fff;
  }

  .navbar-toggle.active .bar:nth-child(1) {

    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar-toggle.active .bar:nth-child(2) {

    opacity: 0;
  }

  .navbar-toggle.active .bar:nth-child(3) {

    transform: rotate(-45deg) translate(6px, -6px);
  }

  .navbar-dropdown-toggle { color: #111; display: flex; align-items: center; justify-content: space-between; width: 100%; font-size: 20px; padding: 8px 12px; }
  .navbar-dropdown-menu, .navbar-dropdown:hover > .navbar-dropdown-menu, .navbar-dropdown:focus-within > .navbar-dropdown-menu {
    display: none; position: static; transform: none; min-width: 0; width: 100%; padding: 4px 0 0 12px; background: transparent; box-shadow: none;
  }
  .navbar-dropdown.open > .navbar-dropdown-menu { display: block; }
  .navbar-container .navbar-menu .navbar-dropdown-menu li a { font-size: 18px; padding: 8px 12px; }
}
/* ===== Date-based announcements / specials ===== */
:root { --rs-announcement-height: 0px; }
.rs-announcement-bar { position: relative; z-index: 1200; width: 100%; min-height: 44px; background: var(--primary-red-color); color: #fff; overflow: hidden; display: flex; align-items: center; }
.rs-announcement-track { width: 100%; display: flex; align-items: center; justify-content: center; }
.rs-announcement-track.is-scrolling { width: max-content; min-width: 200%; justify-content: flex-start; animation: rsAnnouncementScroll 28s linear infinite; }
.rs-announcement-track.is-scrolling:hover { animation-play-state: paused; }
.rs-announcement-entry { min-height: 44px; padding: 7px 24px; display: flex; gap: 12px; align-items: center; justify-content: center; white-space: nowrap; font-size: 15px; }
.rs-announcement-track.is-scrolling .rs-announcement-entry { min-width: 50vw; }
.rs-announcement-entry img { width: 34px; height: 34px; object-fit: cover; border-radius: 6px; }
.rs-announcement-button, .rs-announcement-modal-button { display: inline-block; background: #fff; color: var(--primary-red-color); padding: 7px 13px; border-radius: 7px; font-weight: 700; line-height: 1.1; }
.rs-has-announcement-bar .navbar { top: var(--rs-announcement-height); }
@keyframes rsAnnouncementScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.rs-announcement-overlay { position: fixed; inset: 0; z-index: 5000; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(0,0,0,.68); opacity: 0; transition: opacity .25s ease; }
.rs-announcement-overlay.is-visible { opacity: 1; }
.rs-announcement-modal { width: min(560px, 94vw); max-height: 90vh; overflow: auto; position: relative; background: #fff; border-radius: 16px; box-shadow: 0 24px 70px rgba(0,0,0,.4); }
.rs-announcement-close { position: absolute; z-index: 2; top: 10px; right: 12px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: rgba(0,0,0,.72); color: #fff; font: 30px/34px Arial,sans-serif; cursor: pointer; }
.rs-announcement-modal-image { display: block; width: 100%; height: auto; max-height: 320px; object-fit: cover; }
.rs-announcement-modal-content { padding: 28px; text-align: center; }
.rs-announcement-modal-content h2 { color: var(--primary-red-color); font-size: 32px; margin-bottom: 10px; }
.rs-announcement-modal-content p { font-family: Arial, sans-serif; font-size: 17px; line-height: 1.55; margin-bottom: 20px; }
.rs-announcement-modal-button { background: var(--primary-red-color); color: #fff; padding: 12px 20px; }
@media (max-width: 700px) { .rs-announcement-entry { font-size: 12px; padding: 7px 12px; gap: 8px; } .rs-announcement-entry img { display:none; } .rs-announcement-track.is-scrolling .rs-announcement-entry { min-width: 90vw; } .rs-announcement-button { padding: 6px 8px; } }
@media (prefers-reduced-motion: reduce) { .rs-announcement-track.is-scrolling { animation: none; width: 100%; flex-wrap: wrap; } }

/* Reserve lunch image space to prevent mobile layout shift */
.express-lunch-grid > div:first-child img { width: 100%; height: auto; aspect-ratio: 4 / 3; display: block; }

/* ===== homepage.css ===== */
/* Hero Section CSS */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;

    opacity: 0;

    transition: opacity 1.5s ease-in-out;

    pointer-events: none;
}

.slide.active {
    opacity: 1;
    z-index: 1;

    pointer-events: auto;
}

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


.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 5;
    width: 90%;
    padding: 0 1rem;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--secondary-red-color);
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

/* END OF HERO SECTION CSS */

/* Certificates Section CSS */
.certificates {
    margin: -150px auto 10px auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.certificates img {
    width: 60%;
    z-index: 998;
}

.votedBest {
    text-align: center;
}

.votedBest p {
    color: var(--primary-red-color);
    font-size: 34px;
}

.curveUnderline {
    position: relative;
    /* bottom: 0; */
    /* left: 0; */

}

.curveUnderline::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.5em;
    height: 1.1em;
    background-image: url('../images/underline.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    /* Allows clicks to pass through */
}

/* EXPRESS LUNCH and catering SPECIALS SECTION */
.express-lunch-catering-section {
    display: flex;
    width: 100%;
    gap: 20px;
    padding: 20px 0;
}

.div1,
.div2 {
    flex: 1;
    /* This makes both divs grow to fill equal available space */
    /* Optional styling  */
    padding: 20px;
    box-sizing: border-box;
    /* Ensures padding/border is included in the 50% width */
    align-content: center;
}

.express-lunch-grid {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.express-lunch-grid img {
    width: 100%;
    display: block;
}

.catering-grid {
    width: 100%;
    display: flex;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    bottom: 0;
    left: 0;
}

.catering-grid img {
    width: 100%;
    display: block;
    border-radius: 30px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.837);
}

.expressLunchDescription {
    width: 100%;

}

/* RESERVATION SECTION  */
.storeImages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.storeImage img {
    width: 100%;
    border-radius: 25px;
    display: block;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
}

.storeImage {
    flex-basis: 35%;
}

.storeImage p {
    text-align: center;
    font-size: 22px;
}

.address {
    padding-top: 10px;
}

.address p {
    padding: 5px 0;
    font-size: 16px;
}

.address p:hover {
    color: red;
}


/* ///////// ALL MEDIA QUERIES ////////// */
@media (max-width: 768px) {
    .hero-buttons {
        display: grid;
    }

    .certificates {
        margin: -100px auto 10px auto;
    }

    .certificates img {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .express-lunch-catering-section {
        flex-direction: column;
    }

    .express-lunch-grid,
    .catering-grid,
    .storeImages {

        display: flex !important;
        flex-direction: column !important;
        align-items: center;
    }

    .div1,
    .div2,
    .storeImage {
        width: 100% !important;
    }

    .cateringSection {
        display: grid;
        width: 100%;
        gap: 20px;
        padding: 20px 0;
    }

    .slide img,
    .slide {
        pointer-events: none;
    }
}

/* ===== image-gallery.css ===== */
.food-gallery-section {
    padding: 80px 10%;
}

.galleryTitle p {
    text-align: center;
    font-size: 42px;
    color: var(--primary-red-color);
    margin-bottom: 40px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.image-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.image-card:hover img {
    transform: scale(1.08);
}

.image-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

/* LIGHTBOX */

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    text-align: center;
    width: 90%;
    max-width: 900px;
}

.lightbox-content img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 20px;
}

#lightbox-title {
    color: #fff;
    font-size: 30px;
    margin-top: 20px;
}
#lightbox-image {
    touch-action: pan-y;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 40px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 10px;
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
}

/* TABLET */

@media (max-width: 960px) {

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */

@media (max-width: 480px) {

    .image-grid {
        grid-template-columns: 1fr;
    }

    .image-card img {
        height: 260px;
    }

    .prev,
    .next {
        display: none;
    }

    #lightbox-title {
        font-size: 22px;
    }
}

/* ===== footer.css ===== */
/* Footer CSS */
.footer__container {
  background: #111;
  color: #eee;
  padding: 50px 20px 20px;
  /* margin-top: 60px; */
}

#footer__logo {
  display: none;
}

/* Layout */
.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* Sections */
.footer-section h2 {
    color: var(--primary-red-color);
    margin-bottom: 12px;
}
.footer-section h3 {
  margin-bottom: 12px;
  color: #fff;
}
.footer-section h4 {
    color: #fff;
    margin: 10px 0 4px;
    font-size: 15px;
}

.footer-section p {
  margin: 6px 0;
  color: #bbb;
  font-size: 14px;
}

/* Social Icons */
.social__icon--link {
  color: #fff;
  font-size: 24px;
}

.social__media {
  max-width: 1000px;
  width: 100%;
}

.social__media--wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1000px;
  margin: 40px auto 0 auto;
}

.website__rights {
  color: #fff;
  text-align: center;
}


@media (max-width: 768px) {
  .footer__link--items {
    margin: 0;
    padding: 10px;
    width: 100%;
  }
  .footer-container {
    display:flex;
    flex-direction:column;
    gap:2rem;
    text-align:center;
  }
  #footer__logo {
    display: none;
  }
}
.social-svg { width: 1em; height: 1em; display: block; }
