/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Video Background Fullscreen */
.hero-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Top Navigation Bar */
.top-nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  z-index: 10;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.top-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 10px;
}

/* Cure Bistro Custom Logo */
.custom-logo {
  display: flex;
  align-items: center;
  font-family: 'Lusitana', serif;
  color: #eecc9c;
  cursor: pointer;
  border: 2px solid #ffffff;                /* golden stroke border */
  border-radius: 6px;                       /* optional: soften corners */
  padding: 0.6rem 1rem 0.4rem 1rem;
  box-sizing: border-box;
}


.custom-logo .cure {
  font-size: 50px;
  margin-right: 10px;
  line-height: 1;
}

.custom-logo .bistro {
  font-size: 25px;
  margin: 0 10px;
  letter-spacing: 2px;
}

.custom-logo .dot {
  font-size: 20px;
  margin: 0 1px;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 1rem;
  padding-right: 20px;
}

.nav-links a {
 color: #eecc9c;
  text-decoration: none;
  font-size: 22px;
  padding: 1em;
  
}

.nav-links a:hover {
   background-color: rgba(238, 204, 156, 0.2);
}

/* Footer */
.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 60px;
  z-index: 10;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
  padding: 0 10px;
}

.footer-info p {
  display: block;
}

.footer-info a {
  color: #fff;
  text-decoration: none;
  display: inline;
}

.footer-hours ul {
  list-style: none;

}

/* Menu drop-down section */
.menu-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: none;
}

.menu-container.active {
  display: flex;
  animation: dropdownFade 0.6s ease-in-out forwards;
}


@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-background {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('images/menu_bckg.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: background-image 0.3s ease-in-out;
}



.menu-background.fade {
  animation: fadeBg 0.3s ease-in-out;
}

@keyframes fadeBg {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

.menu-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 2rem;
  color: #ffffff;
  font-family: Trajan Pro, sans-serif;
  
}

.menu-content h2 {
  font-size: 2.0rem;
  margin-bottom: 2rem;
  
}

.menu-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-content li {
  display: inline-block;
}

.menu-content a {
  color: #ffffff;
  font-size: 1.5rem;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  background-color: rgba(0, 0, 0, 0.4);       /* semi-transparent background */
  backdrop-filter: blur(10px);               /* apply blur behind */
  -webkit-backdrop-filter: blur(10px);       /* for Safari */
}


.menu-content a:hover {
  background-color: rgba(238, 204, 156, 0.2);
}

@keyframes fadeInItem {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-content li {
  display: inline-block;
  opacity: 0;
  animation: fadeInItem 0.6s ease forwards;
}

/* Stagger each item’s animation using nth-child */
.menu-content li:nth-child(1) { animation-delay: 0.2s; }
.menu-content li:nth-child(2) { animation-delay: 0.3s; }
.menu-content li:nth-child(3) { animation-delay: 0.4s; }
.menu-content li:nth-child(4) { animation-delay: 0.5s; }
.menu-content li:nth-child(5) { animation-delay: 0.6s; }
.menu-content li:nth-child(6) { animation-delay: 0.7s; }
.menu-content li:nth-child(7) { animation-delay: 0.8s; }

@media (max-width: 768px) {
  .menu-content ul {
    flex-direction: column;
    gap: 1.2rem;
  }

  .menu-content a {
    font-size: 1.25rem;
    padding: 1rem 2rem;
  }

  .menu-content h2 {
    font-size: 2rem;
  }
}

.gallery-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 2rem;
  z-index: 2;
  background-image: url('images/gallery_bckg.png');
  color: #ffffff;
  font-size: 1.0rem;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  font-family: 'Lusitana', serif;
}



.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-height: 70vh; /* limits visible height */
  overflow-y: auto;
  width: 100%;
  max-width: 1200px;
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box;
}


.gallery-grid img {
  width: 100%;
  cursor: pointer;
  border: 2px solid #eecc9c;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox.hidden {
  display: none;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #ffffff;
  cursor: pointer;
}

.about-content {
  display: flex;
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
  flex-direction: row;
   background-image: url('images/about_bckg.png');
}


.about-left {
  width: 55%;
  height: 100%;
}

.about-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border: none;
  border-radius: 0;
}

.about-right {
  width: 45%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem;
  color: #eecc9c;
  text-align: center
}



.about-right h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-right p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 90%;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
  z-index: 1000;
  padding: 0 15px;
}

.arrow.left {
  left: 30px;
}

.arrow.right {
  right: 30px;
}

.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.footer-social .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;       /* remove underline */
  outline: none;               /* remove focus border */
}

.footer-social .social-icon img {
  width: 32px;
  height: 32px;
  display: block;
  transition: transform 0.3s ease;
  filter: brightness(0) invert(1); /* ensures icon is white */
}

.footer-social .social-icon:hover img {
  transform: scale(1.1);
  filter: brightness(0.9) invert(0.9);
}

/* Hamburger hidden on desktop */
.hamburger {
  display: none;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: rgba(0,0,0,0.9);
  position: absolute;
  top: 90px;
  width: 100%;
  z-index: 20;
  text-align: center;
}

.mobile-menu.show {
  display: flex;
}

.mobile-menu a {
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.mobile-menu a:hover {
  background-color: rgba(238,204,156,0.2);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

@media (max-width: 768px) {
  .top-nav .container {
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
  }

  .custom-logo {
    height: 60px;
    display: flex;
    align-items: center;
  }

  .hamburger {
    font-size: 28px;
    padding: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    height: 60px;
  }
}


@media (max-width: 768px) {
  .footer {
    height: auto;
    padding: 10px 0;
  }

  .footer .container {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    text-align: center;
  }

  .footer-info p,
  .footer-hours p,
  .footer-hours ul,
  .footer-hours li {
    font-size: 14px;
    line-height: 1.4;
  }

  .footer-social {
    gap: 12px;
  }

  .footer-social .social-icon img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 768px) {
  #menu-container .menu-content ul {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    width: 100%;
    gap: 1rem;
  }

  #menu-container .menu-content ul li {
    width: 90%;
  }

  #menu-container .menu-content a {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
  }

  #menu-container .menu-content h2 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  #menu-container .menu-content {
    padding: 120px 1rem 110px 1rem; /* top + bottom nav clearance */
    justify-content: flex-start;
  }

  #menu-container .menu-content h2 {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

  #menu-container .menu-content ul {
    gap: 0.8rem;
  }

  #menu-container .menu-content ul li {
    width: 100%;
  }

  #menu-container .menu-content ul li a {
    font-size: 1rem;
    padding: 0.8rem 1rem;
  }
}

@media (max-width: 768px) {
  #about-container {
    overflow: hidden;
  }

  #about-container .about-content {
    flex-direction: column;
    padding: 110px 1rem 120px 1rem; /* top & bottom space from nav bars */
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    box-sizing: border-box;
  }

  #about-container .about-left,
  #about-container .about-right {
    width: 100%;
    height: auto;
  }

  #about-container .about-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
  }

  #about-container .about-right {
    padding: 0 0.5rem;
  }

  #about-container .about-right p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #f2e2c6;
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  #gallery-container .gallery-content {
    padding: 110px 1rem 120px 1rem; /* top for navbar, bottom for footer */
    text-align: center;
  }

  #gallery-container .gallery-content h1 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  #gallery-container .gallery-grid {
    grid-template-columns: 1fr; /* single column for mobile */
    gap: 1rem;
    padding: 0 0.5rem;
    max-height: calc(100vh - 230px); /* prevent footer overlap */
    overflow-y: auto;
  }

  #gallery-container .gallery-grid img {
    border-radius: 6px;
    border-width: 1px;
  }
}

/* Mobile-only "Book Now" button inside hero video */
@media (max-width: 768px) {
  .video-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    pointer-events: auto; /* ✅ Allow clicks inside overlay */
  }

  .video-book-now {
    display: inline-block;
    color: #eecc9c;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: auto; /* ✅ Ensure button receives click */
    z-index: 15;
  }

  .video-book-now:hover {
    background-color: #f1deb6;
  }

  .mobile-menu a[href*="dojo.app"] {
    display: none;
  }
}

/* Hide hero video "Book Now" on desktop */
@media (min-width: 769px) {
  .video-book-now {
    display: none !important;
  }
}

@media (max-width: 768px) {
  #about-container {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  #about-container .about-content {
    display: block;
    min-height: 100vh;
    padding-bottom: 140px; /* extra space so footer doesn't cover it */
  }
}

/* === MENU: Desktop dropdown (add-only) === */
.top-nav .nav-links .dropdown { position: relative; }
.top-nav .nav-links .dropdown-toggle { cursor: pointer; }

.top-nav .nav-links .dropdown-menu {
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 220px;
  background: rgba(0,0,0,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 0.4rem 0;
  display: none;          /* hidden by default */
  z-index: 1000;          /* sits above the nav */
  backdrop-filter: blur(8px);
}

.top-nav .nav-links .dropdown-menu.show { display: block; }

.top-nav .nav-links .dropdown-menu a {
  display: block;
  padding: 0.8rem 1rem;
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}

.top-nav .nav-links .dropdown-menu a:hover {
  background: rgba(238,204,156,0.15);
}

/* === MENU: Section visibility (add-only) === */
/* Keep your existing styles. We only control visibility here. */
#daily-menu-container,
#december-menu-container,
#events-menu-container { display: none; }

#daily-menu-container.active,
#december-menu-container.active,
#events-menu-container.active { display: flex; }

/* === MENU: Section visibility (add-only) === */
/* Keep your existing styles. We only control visibility here. */
#daily-menu-container,
#december-menu-container,
#events-menu-container { display: none; }

#daily-menu-container.active,
#december-menu-container.active,
#events-menu-container.active { display: flex; }

/* === MENU: optional background fade on hover (add-only) === */
.menu-background { transition: background-image 0.3s ease-in-out; }

/* === MENU: Mobile dropdown (add-only) === */
.mobile-submenu { display: flex; flex-direction: column; width: 100%; }

.mobile-dropdown-toggle {
  display: block;
  padding: 1rem;
  text-decoration: none;
  font-size: 18px;
  color: inherit;          /* keep your current mobile link color */
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-dropdown {
  display: none;
  flex-direction: column;
  background: rgba(0,0,0,0.85);
}

.mobile-dropdown.show { display: flex; }

.mobile-dropdown a {
  padding: 0.85rem 1rem 0.85rem 2rem;
  font-size: 17px;
  text-align: left;
  text-decoration: none;
  color: inherit;          /* matches your existing mobile links */
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-dropdown a:hover {
  background: rgba(238,204,156,0.15);
}

/* === Mobile: keep 2 columns for the three new menu pages === */
@media (max-width: 768px) {
  #daily-menu-container .menu-content ul,
  #december-menu-container .menu-content ul,
  #events-menu-container .menu-content ul {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    width: 100%;
    gap: 1rem;
  }

  #daily-menu-container .menu-content ul li,
  #december-menu-container .menu-content ul li,
  #events-menu-container .menu-content ul li {
    width: 90%;
  }

  #daily-menu-container .menu-content a,
  #december-menu-container .menu-content a,
  #events-menu-container .menu-content a {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
  }
}

/* === Mobile: same top/bottom padding so items never sit under the footer === */
@media (max-width: 768px) {
  #daily-menu-container .menu-content,
  #december-menu-container .menu-content,
  #events-menu-container .menu-content {
    padding: 120px 1rem 110px 1rem; /* top for navbar, bottom for footer */
    justify-content: flex-start;
  }

  #daily-menu-container .menu-content ul,
  #december-menu-container .menu-content ul,
  #events-menu-container .menu-content ul {
    gap: 0.8rem;
  }

  #daily-menu-container .menu-content ul li,
  #december-menu-container .menu-content ul li,
  #events-menu-container .menu-content ul li {
    width: 100%;
  }

  #daily-menu-container .menu-content ul li a,
  #december-menu-container .menu-content ul li a,
  #events-menu-container .menu-content ul li a {
    font-size: 1rem;
    padding: 0.8rem 1rem;
  }
}

/* ===== Desktop nav alignment fix for "Menu ▾" ===== */
@media (min-width: 769px) {
  /* Center all items inside the nav bar’s cross-axis */
  .top-nav .nav-links { align-items: center; }

  /* Make the dropdown toggle look exactly like the other links */
  .top-nav .nav-links > a,
  .top-nav .nav-links .dropdown > a.dropdown-toggle {
    display: inline-flex;      /* vertical centering */
    align-items: center;
    padding: 1em;              /* match existing nav link padding */
    font-size: 22px;           /* match existing size */
    line-height: 1;            /* remove baseline wobble from the ▾ glyph */
    color: #eecc9c;
    text-decoration: none;
  }

  /* Ensure the wrapper behaves like its siblings */
  .top-nav .nav-links .dropdown {
    display: inline-flex;
    align-items: center;
  }

  /* Keep hover style consistent */
  .top-nav .nav-links .dropdown > a.dropdown-toggle:hover,
  .top-nav .nav-links > a:hover {
    background-color: rgba(238, 204, 156, 0.2);
  }
}

/* === Mobile: December Holidays Menus -> force single column only on this page === */
@media (max-width: 768px) {
  #december-menu-container .menu-content ul {
    display: grid;                  /* keep grid for consistency */
    grid-template-columns: 1fr !important;  /* override the 2-column rule */
    gap: 0.8rem;
  }
  #december-menu-container .menu-content ul li {
    width: 100% !important;         /* override any 90% widths */
  }
  #december-menu-container .menu-content a {
    display: block;
    width: 100%;
  }
  /* Optional: if anything sits too close to the footer, pad a bit more */
  /* #december-menu-container .menu-content { padding-bottom: 130px; } */
}

/* ===== Hero intro styling (Daily • December Holidays • Special Events) ===== */
/* Desktop + mobile: frosted dark panel, gold hairline, legible type */
#daily-menu-container .menu-content h1,
#december-menu-container .menu-content h1,
#events-menu-container .menu-content h1 {
  position: relative;
  margin: 10vh auto 1.5rem;                 /* clear the top bar; add space before buttons */
  padding: 0.85rem 1.25rem;                 /* breathing room inside the panel */
  max-width: min(1100px, 92vw);             /* keep lines comfortable */
  text-align: center;
  color: #f7f1df;                           /* warm off-white (brand friendly) */
  font-family: 'Lusitana', serif;           /* matches site styling */
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1.35;
  text-shadow: 0 2px 8px rgba(0,0,0,.65), 0 1px 0 rgba(0,0,0,.4);
  background: linear-gradient(to bottom, rgba(0,0,0,.45), rgba(0,0,0,.35));
  border: 1px solid rgba(238,204,156,.45);  /* subtle gold hairline */
  border-radius: 8px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Gold accent underline for all three */
#daily-menu-container .menu-content h1::after,
#december-menu-container .menu-content h1::after,
#events-menu-container .menu-content h1::after {
  content: "";
  display: block;
  height: 2px;
  width: 120px;
  margin: 0.75rem auto 0;
  background: linear-gradient(90deg, transparent, #eecc9c, transparent);
  opacity: .85;
}

/* Desktop sizing */
@media (min-width: 769px) {
  #daily-menu-container .menu-content h1,
  #december-menu-container .menu-content h1,
  #events-menu-container .menu-content h1 {
    font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.6rem);
  }
}

/* Mobile sizing (your smaller version) */
@media (max-width: 768px) {
  #daily-menu-container .menu-content h1,
  #december-menu-container .menu-content h1,
  #events-menu-container .menu-content h1 {
    font-size: clamp(1.1rem, 4.0vw, 1.5rem);
    margin: 12vh 1rem 1rem;  /* consistent spacing */
    padding: 0.75rem 1rem;
    letter-spacing: .03em;
  }
}


/* Footer: apply "turn black on hover" to Address + Email only */
.footer-info a[href^="https://maps.app.goo.gl"],
.footer-info a[href^="mailto:"] {
  color: #fff;                      /* current footer color */
  text-decoration: none;
  display: inline-block;            /* allows a subtle scale like the icons */
  transition: color .25s ease, transform .25s ease;
}

.footer-info a[href^="https://maps.app.goo.gl"]:hover,
.footer-info a[href^="mailto:"]:hover,
.footer-info a[href^="https://maps.app.goo.gl"]:focus-visible,
.footer-info a[href^="mailto:"]:focus-visible {
  color: #000;                      /* match the icon hover "turn black" effect */
  transform: scale(1.05);           /* gentle nudge like the icon hover */
  outline: none;                    /* keep it clean; browser focus ring not needed here */
}

/* ===== Menus "NEW" badge (desktop + mobile) ===== */
.has-new-menus .top-nav .nav-links .dropdown > a#menu-link::after,
.has-new-menus #menu-link-mobile::after {
  content: "NEW";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #1a1a1a;
  background: #eecc9c;               /* Cure gold */
  border-radius: 999px;
  line-height: 1;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
  transform: translateY(-1px);
}

/* gentle pulse so it catches the eye without shouting */
.has-new-menus .top-nav .nav-links .dropdown > a#menu-link::after,
.has-new-menus #menu-link-mobile::after {
  animation: cbBadgePulse 1.8s ease-in-out infinite;
}
@keyframes cbBadgePulse {
  0%   { box-shadow: 0 0 0 0 rgba(238,204,156,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(238,204,156,0); }
  100% { box-shadow: 0 0 0 0 rgba(238,204,156,0); }
}

/* ===== Optional: tag the "December Holidays Menus" link as NEW, too ===== */
.has-new-menus #december-menu-link::after,
.has-new-menus #december-menu-link-mobile::after {
  content: "NEW";
  margin-left: 8px;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: 700;
  color: #1a1a1a;
  background: #eecc9c;
  border-radius: 999px;
  line-height: 1;
}

/* Badge: "NEW" on Special Events (desktop + mobile) */
.has-new-menus #events-menu-link::after,
.has-new-menus #events-menu-link-mobile::after {
  content: "NEW";
  margin-left: 8px;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: 700;
  color: #1a1a1a;
  background: #eecc9c;     /* Cure gold */
  border-radius: 999px;
  line-height: 1;
}

/* === Mobile: promotional note under Book Now (overlay) === */
@media (max-width: 768px) {
  .video-overlay {
    flex-direction: column;        /* stack button + note */
  }
  .video-overlay::after {
    content: "Secure your Cure — festive bookings now open.";
    display: inline-block;
    margin-top: 10px;
    padding: 6px 10px;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    color: #eecc9c;                /* Cure gold */
    background: rgba(0,0,0,0.35);  /* subtle frosted label */
    border: 1px solid rgba(238,204,156,0.35);
    border-radius: 6px;
    line-height: 1.2;
    pointer-events: none;          /* text isn't clickable */
    user-select: none;
  }
}

/* === Mobile only: center last item when count is odd (Daily + Events) === */
@media (max-width: 768px) {
  /* If there is an odd number of <li>, the last one is odd-indexed.
     We make that last item occupy the full row and center it. */
  #daily-menu-container .menu-content ul li:last-child:nth-child(odd),
  #events-menu-container .menu-content ul li:last-child:nth-child(odd) {
    grid-column: 1 / -1;         /* put it on its own row */
    justify-self: center;         /* center horizontally */
    width: calc(50% - 0.5rem);    /* same visual width as one column */
  }

  /* Ensure the button fills the item width */
  #daily-menu-container .menu-content ul li:last-child:nth-child(odd) a,
  #events-menu-container .menu-content ul li:last-child:nth-child(odd) a {
    display: block;
    width: 100%;
  }
}
