:root{
  --bg: #0b0b10;
  --text: rgb(255, 255, 255);
  --muted: rgba(255,255,255,.68);
  --line: rgba(255, 255, 255, 0.068);
  --accent: #ffcc66;
  --accent2: #7cf6c7;
  --accent3: #7aa7ff;
  --shadow: 0 18px 45px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1000px 700px at 20% 10%, rgba(122,167,255,.22), transparent 60%),
    radial-gradient(800px 600px at 80% 25%, rgba(124,246,199,.18), transparent 60%),
    radial-gradient(900px 700px at 50% 80%, rgba(255,204,102,.14), transparent 60%),
    var(--bg);
  font-family: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x: hidden;
  line-height: 1.55;
}
a{ color: inherit; }

.container{ width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.bg-blobs{
  position: fixed; inset: -20vh -20vw; pointer-events: none;
  background:
    radial-gradient(200px 200px at 15% 25%, rgba(255,204,102,.14), transparent 70%),
    radial-gradient(260px 260px at 85% 35%, rgba(124,246,199,.12), transparent 70%),
    radial-gradient(220px 220px at 55% 85%, rgba(122,167,255,.12), transparent 70%);
  filter: blur(2px); opacity: .9;
}

/* Header */
.header{
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(11,11,16,.55);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding: 12px 0;
}
.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; }
.brand__mark{
  width:44px; height:44px; display:grid; place-items:center;
  border-radius:14px; overflow:hidden;
  background: linear-gradient(135deg, rgba(255,204,102,.22), rgba(122,167,255,.18));
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.brand__mark img{ width:28px; height:28px; object-fit:contain; }
.brand__text strong{ display:block; font-size:1.05rem; }
.brand__text em{ display:block; font-style:normal; font-size:.85rem; color: var(--muted); }

/* Mobile menu button (your script toggles .nav-pills.show) */
.menu-icon{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  cursor: pointer;
}
.menu-icon .bar{
  display:block;
  height:2px; width:18px;
  background: rgba(255,255,255,.9);
  margin: 5px auto;
  border-radius:999px;
}

/* Nav list (keep .nav-pills) */
.nav-pills{
  list-style:none;
  display:flex; align-items:center;
  gap:10px;
  padding:0; margin:0;
}
.nav-link{
  text-decoration:none;
  padding:10px 12px;
  border-radius:999px;
  color: var(--muted);
  border:1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  display:inline-block;
}
.nav-link:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
  border-color: var(--line);
  transform: translateY(-1px);
}
.nav__cta{
  color:#0b0b10 !important;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: transparent !important;
  font-weight: 900;
}
.nav__cta:hover{ transform: translateY(-2px) rotate(-.4deg); }

/* Hero */
.hero{ position:relative; padding: 34px 0 10px; }
.hero__bg{
  position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(135deg, rgba(0,0,0,.60), rgba(0,0,0,.60)),
    url("./assets/HeroImage.jpg") center/cover no-repeat;
  opacity:.92;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:start;
}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  color: var(--muted);
  width: fit-content;
}
h1{
  margin: 14px 0 8px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.6px;
}
.accent{
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.lead{ font-size:1.08rem; color: rgba(255,255,255,.80); max-width: 60ch; }

.hero__actions{ display:flex; flex-wrap:wrap; gap:10px; margin-top:16px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:999px;
  border: 1px solid var(--line);
  text-decoration:none;
  font-weight: 900;
  transition: transform .15s ease;
  cursor:pointer;
}
.btn:hover{ transform: translateY(-2px); }
.btn--primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#0b0b10;
  border-color: transparent;
}
.btn--secondary{ background: rgba(255,255,255,.08); }
.btn--ghost{ background: transparent; }

.hero__chips{ display:grid; gap:10px; margin-top:18px; }
.chip{
  padding:12px 14px;
  border-radius:16px;
  background: rgba(255,255,255,.05);
  border: 1px dashed rgba(255,255,255,.18);
  color: rgba(255,255,255,.78);
}
.todayMenuList{
  max-height: 220px;   /* adjust */
  overflow: auto;
  padding-right: 6px;
}
.todayMenuList::-webkit-scrollbar{ width: 8px; }
.todayMenuList::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.18);
  border-radius: 999px;
}


/* Hero card */
.heroCard{
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  box-shadow: var(--shadow);
  padding: 16px;
  backdrop-filter: blur(10px);
}
.heroCard__top{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.heroCard__badge{
  padding:8px 10px; border-radius:999px;
  background: rgba(122,167,255,.18);
  border: 1px solid rgba(122,167,255,.25);
  font-weight: 900;
}
.heroCard__price{ color: rgba(255,255,255,.78); }
.heroCard__title{ margin:12px 0 6px; font-size:1.25rem; }
.heroCard__text{ margin:0 0 12px; color: rgba(255,255,255,.76); }
.heroCard__btn{ width:100%; margin-top:8px; }

.dietLegend{ display:flex; flex-wrap:wrap; gap:8px; }
.tag{
  font-size:.9rem;
  color: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  padding:8px 10px;
  border-radius:999px;
}
.tag b{ color: var(--text); margin-right: 6px; }


/* Wave */
.wave{ margin-top:22px; }
.wave svg{ width:100%; height:120px; display:block; }
.wave path{ fill: rgba(255,255,255,.06); }

/* Sections */
.section{ padding: 34px 0; }
.section--alt{
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head{ margin-bottom: 16px; }
.section__head h2{ margin:0 0 6px; font-size:1.7rem; }
.section__head p{ margin:0; color: var(--muted); }

/* Diet section bg */
.dietSection{ position: relative; }
.dietSection__bg{
  position:absolute; inset:0; z-index:-1;
  background: url("./assets/lunch.jpg") center/cover no-repeat;
  opacity:.75;
}
.glass{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 16px;
}
.price{ color: var(--accent2); font-weight: 900; }

.diet-icons{
  display:flex; flex-wrap:wrap; justify-content:center;
  gap: 16px 20px; margin-top: 12px;
}
.diet-icon-box{ display:flex; align-items:center; gap:10px; }
.diet-icon-text{ color: rgba(255,255,255,.85); }
.diet-icon{
  width:38px; height:38px; border-radius:999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  display:grid; place-items:center;
  font-weight:900;
  transition: transform .18s ease, box-shadow .18s ease;
}
.diet-icon-box:hover .diet-icon{
  transform: translateY(-3px) rotate(-4deg);
  box-shadow: 0 0 22px rgba(255,204,102,.22);
}

/* Menu section bg */
.menuSection{ position: relative; }
.menuSection__bg{
  position:absolute; inset:0; z-index:-1;
  background: url("./assets/menu page.jpg") center/cover no-repeat;
  opacity:.65;
}
.paper{
  border-radius: var(--radius2);
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow);
  padding: 18px;
  color: #121212;
  position: relative;
  overflow: hidden;
}
.paper:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(500px 260px at 15% 15%, rgba(255,204,102,.22), transparent 60%),
    radial-gradient(520px 280px at 90% 20%, rgba(124,246,199,.18), transparent 60%),
    radial-gradient(520px 320px at 60% 95%, rgba(122,167,255,.16), transparent 60%);
  opacity:.85;
}

/* Your injected menu uses .day-menu + .menu-item. Style it as cards! */
.menuGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
  position: relative;
}

/* When your JS injects <div class="day-menu"> ... */
.day-menu{
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
  overflow:hidden;
  padding: 14px;
}
.day-menu h3{
  margin: 0 0 10px;
  font-size: 1.12rem;
  color: rgba(0,0,0,.90);
}
.menu-items{
  display:grid;
  gap: 10px;
}
.menu-item{
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
  color: rgba(0,0,0,.88);
}

/* Carousel (your code uses .active display) */
.carousel{
  overflow:hidden;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  position: relative;
}
.carousel-inner{ display:flex; }
.carousel-item{ min-width:100%; display:none; }
.carousel-item.active{ display:block; }
.carousel-item img{ width:100%; height:420px; object-fit:cover; display:block; }
.carousel-control{
  position:absolute; top:50%; transform: translateY(-50%);
  width:44px; height:44px; border-radius:14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.30);
  color: rgba(255,255,255,.9);
  cursor:pointer;
}
.carousel-control.prev{ left:10px; }
.carousel-control.next{ right:10px; }

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
  margin-top:14px;
}
.gallery-item{
  border-radius:18px;
  overflow:hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  transition: transform .18s ease, filter .18s ease;
  cursor:pointer;
}
.gallery-item:hover{ transform: translateY(-3px) rotate(-.2deg); filter: saturate(1.05); }
.gallery-item img{ width:100%; height:220px; object-fit:cover; display:block; }

/* Events & Catering */
.eventsSection{ position: relative; }
.eventsHero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items: stretch;
  margin-bottom: 22px;
}
.eventsHero__card{
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
  padding: 16px;
}
.eventsHero__note h3{ margin: 0 0 8px; }
.eventsGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.eventsCard{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  box-shadow: 0 10px 28px rgba(0,0,0,.20);
  padding: 16px;
  display:grid;
  gap:8px;
}
.eventsCard p{ color: var(--muted); margin: 0; }
.eventsQuoteBtn{ margin-top: 14px; }
.eventsBooking{ margin-top: 26px; }

/* Bottom ticker */
.bottomTicker{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(10,12,18,.92);
  border-top: 1px solid var(--line);
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.bottomTicker__track{
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 10px 0;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  animation: ticker-move 25s linear infinite;
}
.bottomTicker__group{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-right: 24px;
}
.bottomTicker__item{ font-weight: 700; letter-spacing: .02em; }
.bottomTicker__dot{ opacity: .7; }
@keyframes ticker-move{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}
.eventsTabs{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}
.eventsTab{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}
.eventsTab.isActive{
  background: linear-gradient(135deg, rgba(255,204,102,.25), rgba(124,246,199,.20));
  color: var(--text);
  border-color: rgba(255,204,102,.35);
}
.eventsPanels{
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  padding: 16px;
}
.eventsForm__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.eventsForm__full{ grid-column: 1 / -1; }
.eventsForm__actions{
  display:flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.formHelp{ font-size:.9rem; color: var(--muted); }
.formStatus{ min-height: 1.2rem; color: var(--accent2); font-weight: 900; }
.formStatus.isError{ color: #ff9c9c; }

/* Contact */
.card{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
.form{ padding:14px; display:grid; gap:10px; }
label{ display:grid; gap:6px; color: var(--muted); font-weight: 900; }
input, textarea, select{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(124,246,199,.35);
  box-shadow: 0 0 0 4px rgba(124,246,199,.10);
}
.small{ font-size:.92rem; }
.muted{ color: var(--muted); }

.info{ padding:14px; }
.infoList{ list-style:none; padding:0; margin:0 0 12px; display:grid; gap:8px; color: var(--muted); }
.infoList a{
  color: var(--text);
  text-decoration:none;
  border-bottom: 1px dashed rgba(255,255,255,.25);
}
.infoList a:hover{ border-bottom-color: rgba(255,204,102,.6); }
.miniCta{
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  display:grid;
  gap:10px;
  margin-bottom: 12px;
}
.map iframe{
  width:100%;
  height:240px;
  border:0;
  border-radius: 16px;
}

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  background: rgba(11,11,16,.55);
  backdrop-filter: blur(10px);
}
.footer__inner{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 0;
  color: var(--muted);
}
.footer__inner p{
  grid-column: 2;
  text-align: center;
  margin: 0;
}

.footer__inner .toTop{
  grid-column: 3;
  justify-self: end;
}
.toTop{
  width:44px; height:44px;
  border-radius:14px;
  display:grid; place-items:center;
  border: 1px solid var(--line);
  text-decoration:none;
  background: rgba(255,255,255,.06);
}

/* Modal */
.modal{ position:fixed; inset:0; display:none; place-items:center; z-index:60; }
.modal.isOpen{ display:grid; }
.modal__backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.65); border:0; }
.modal__content{
  position:relative;
  width: min(920px, calc(100% - 24px));
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(15,15,22,.92);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal__content img{ width:100%; height:auto; display:block; }
.modal__close{
  position:absolute; top:10px; right:10px;
  width:44px; height:44px;
  border-radius:14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25);
  color: var(--text);
  cursor:pointer;
}

/* anchor offset */
:target{ scroll-margin-top: 90px; }

/* Responsive + mobile menu */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .menuGrid{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .contactGrid{ grid-template-columns: 1fr; }
  .eventsHero{ grid-template-columns: 1fr; }
  .eventsGrid{ grid-template-columns: 1fr; }
  .eventsForm__grid{ grid-template-columns: 1fr; }
  .carousel-item img{ height: 320px; }
}
@media (max-width: 760px){
  .menu-icon{ display:inline-grid; place-items:center; }
  .nav-pills{
    position:absolute;
    right:16px;
    top:66px;
    width: min(340px, calc(100% - 32px));
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(15,15,22,.92);
    box-shadow: var(--shadow);
    display:none;
  }
  .nav-pills.show{ display:flex; }
  .nav-link{ padding:12px 12px; }
}




