/* ===== RESET ===== */
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body{
  font-family: 'Poppins', sans-serif;
  background: #0b0b10;
  color: #ffffff;
  line-height: 1.6;
}

/* ===== HEADER ===== */
.site-header{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(11,11,16,.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.nav-container{
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img{
  height: 56px;
}

.nav{
  display: flex;
  gap: 20px;
}

.nav a{
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  opacity: .85;
}

.nav a:hover{
  opacity: 1;
}

.nav-toggle{
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
}

/* ===== HERO ===== */
.hero{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero-bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,16,.7), rgba(11,11,16,.9)),
    url("img/intro-bg.jpg") center/cover no-repeat;
  z-index: -1;
}

.hero-content{
  padding: 120px 20px 40px;
}

.hero h1{
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
}

.hero h1 span{
  background: linear-gradient(135deg, #ffcc66, #7cf6c7);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle{
  margin: 16px 0 30px;
  font-size: 1.2rem;
  color: rgba(255,255,255,.8);
}

.hero-actions{
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ===== BUTTONS ===== */
.btn{
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.btn.primary{
  background: linear-gradient(135deg, #ffcc66, #7cf6c7);
  color: #0b0b10;
}

.btn.ghost{
  border: 1px solid rgba(255,255,255,.3);
  color: white;
}

/* ===== ABOUT ===== */
.about{
  padding: 80px 20px;
}

.about-container{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image img{
  width: 100%;
  border-radius: 24px;
}

.about-text h2{
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.about-text p{
  color: rgba(255,255,255,.8);
  margin-bottom: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px){
  .about-container{
    grid-template-columns: 1fr;
  }
  .nav{
    display: none;
  }
  .nav-toggle{
    display: block;
  }
}
/* ===== LUNCH SECTION ===== */
.lunch{ padding: 80px 20px; }
.container{ max-width: 1100px; margin: auto; }

.lunch-info{
  background:
    linear-gradient(
      rgba(11,11,16,.75),
      rgba(11,11,16,.85)
    ),
    url("/img/lunch.jpg") center / cover no-repeat;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.lunch-info__head{
  display:flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.lunch-info h2{ font-size: 2rem; }
.lunch-info__hours{ color: rgba(255,255,255,.75); }

.lunch-info__text p{
  margin-top: 10px;
  color: rgba(255,255,255,.8);
}

.phone-link{ color: #7cf6c7; text-decoration: none; }
.phone-link:hover{ text-decoration: underline; }

.today-card{
  margin-top: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.today-card__top{
  display:flex;
  flex-wrap: wrap;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.badge{
  display:inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  background: linear-gradient(135deg,#ffcc66,#7cf6c7);
  color: #0b0b10;
}

.pill{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.78);
  font-weight: 600;
}

.today-card__title{ font-size: 1.4rem; margin: 10px 0 14px; }

.today-items{
  display:grid;
  gap: 12px;
  margin-bottom: 16px;
}

.dish{
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(0,0,0,.22);
  border: 1px dashed rgba(255,255,255,.18);
}

.dish__row{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  align-items:flex-start;
}

.dish__name{ font-weight: 800; }
.dish__price{ font-weight: 800; color: #7cf6c7; white-space: nowrap; }
.dish__desc{ margin-top: 6px; color: rgba(255,255,255,.75); }

.btn{
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  border: none;
}

.btn.ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: white;
}

.week{ margin-top: 18px; }
.week-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.week-day{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 18px;
}
.week-day h3{ margin-bottom: 10px; }

.hidden{ display:none; }

@media (max-width: 900px){
  .week-grid{ grid-template-columns: 1fr; }
}
/* ===== DAY TABS ===== */
.day-tabs{
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.day-tab{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.88);
  font-weight: 800;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.day-tab:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
}

.day-tab.active{
  background: linear-gradient(135deg,#ffcc66,#7cf6c7);
  color: #0b0b10;
  border-color: transparent;
}

/* ===== DAY PANEL ===== */
.day-panel{
  margin-top: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 18px;
}

.day-panel__title{
  margin-bottom: 10px;
  font-weight: 900;
}

.day-panel__items{
  display: grid;
  gap: 12px;
}
/* ===== FUN LANGUAGE TOGGLE ===== */
.lang-toggle{
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
  position: relative;
  z-index: 10;          /* prevents being behind overlays */
  overflow: visible;    /* prevents clipping */
}

.lang-btn{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 72px;      /* ensures EN button has space */
  padding: 10px 14px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.9);
  font-weight: 900;
  cursor: pointer;
  opacity: 1;           /* ensures not faded out */
  white-space: nowrap;
}

.lang-btn.active{
  background: linear-gradient(135deg,#ffcc66,#7cf6c7);
  color: #0b0b10;
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}


/* small sparkle dot when active */
.lang-btn.active::after{
  content: "✨";
  position: absolute;
  right: -6px;
  top: -8px;
  font-size: 14px;
  opacity: .9;
}

/* optional: keep it aligned nicely within the lunch card */
.lunch-info .lang-toggle,
.today-card .lang-toggle{
  justify-content: center;
}
/* ===== À LA CARTE ===== */
.alacarte{ padding: 80px 20px; }

.menu-info{
    background:
    linear-gradient(
      rgba(11,11,16,.75),
      rgba(11,11,16,.85)
    ),
    url("/img/lunch.jpg") center / cover no-repeat;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.menu-info__head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.menu-info h2{ font-size: 2rem; }

.menu-info__text p{
  margin-top: 10px;
  color: rgba(255,255,255,.8);
}

.menu-cats{
  margin-top: 18px;
  display:grid;
  gap: 14px;
}

/* Category card */
.cat{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  overflow: hidden;
}

.cat__head{
  width: 100%;
  padding: 16px;
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer;

  display: grid;
  grid-template-columns: 1fr auto 38px;
  align-items: center;
  gap: 10px;

  text-align: left;
}

.cat__head:focus-visible{
  outline: 2px solid rgba(124,246,199,.65);
  outline-offset: -2px;
}

.cat__title{ font-weight: 900; font-size: 1.05rem; }
.cat__sub{ color: rgba(255,255,255,.65); font-weight: 700; }

/* Icon button */
.cat__icon{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  font-weight: 900;

  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

/* Accordion body */
.cat__body{
  overflow: hidden;
  max-height: 0;
  padding: 0 16px;
  transition: max-height .28s ease, padding .18s ease;
}

/* Open state */
.cat.isOpen .cat__body{
  padding: 0 16px 16px;
}

.cat.isOpen .cat__icon{
  transform: rotate(45deg); /* turns + into x-like */
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.24);
}
/* ===== CTA + FOOTER (NEW) ===== */

.cta{
  padding: 70px 20px;
}

.cta-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  text-align: center;
}

.cta-card h3{
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.cta-card p{
  color: rgba(255,255,255,.82);
}

.cta-actions{
  margin-top: 18px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note{
  margin-top: 14px;
  color: rgba(255,255,255,.75);
}

/* ===== FOOTER ===== */
.site-footer{
  padding: 70px 20px 30px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
}

.footer-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.footer-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.30);
}

.footer-card h3{
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.footer-card p{
  color: rgba(255,255,255,.80);
  margin-top: 8px;
}

.footer-link{
  color: rgba(255,255,255,.90);
  text-decoration: none;
}
.footer-link:hover{
  text-decoration: underline;
}

.today-open{
  display: inline-block;
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.85);
  font-weight: 700;
}

.hours{ margin-top: 10px; }
.opening-hour{ opacity: .9; }

/* Map */
.map-container{
  margin-top: 12px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
}
.map-iframe{
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}

.footer-bottom{
  margin-top: 18px;
  text-align: center;
  color: rgba(255,255,255,.65);
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 16px;
}

@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr;
  }
  .map-iframe{ height: 220px; }
}

/* ===== Social & Delivery Partners (Logos) ===== */

.social-partners{
  margin: 60px auto 40px;
  padding: 0 20px;
}

.social-partners__inner{
  max-width: 1100px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  padding: 22px;

  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.social-group{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-label{
  font-weight: 800;
  color: rgba(255,255,255,.75);
  margin-right: 6px;
}

/* Icon buttons */
.icon-btn{
  width: 46px;
  height: 46px;
  border-radius: 14px;

  display: grid;
  place-items: center;

  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.18);

  transition: transform .15s ease, box-shadow .15s ease;
}

.icon-btn svg{
  width: 22px;
  height: 22px;
  fill: white;
}

/* Brand colors */
.icon-btn.instagram{
  background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af);
}

.icon-btn.facebook{
  background: #1877f2;
}

.icon-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.45);
}

/* Partner logos */
.logo-pill{
  background: white;
  border-radius: 999px;
  padding: 10px 18px;

  display: flex;
  align-items: center;

  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  transition: transform .15s ease;
}

.logo-pill img{
  height: 22px;
  width: auto;
}

.logo-pill:hover{
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 700px){
  .social-partners__inner{
    justify-content: center;
    text-align: center;
  }
}







/* ===== Bottom Train (Marquee) ===== */

.train{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 9999;
  padding: 0 12px;
  pointer-events: none;
}

.train__inner{
  pointer-events: auto;
  max-width: 1100px;
  margin: 0 auto;

  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  backdrop-filter: blur(12px);

  overflow: hidden;
  height: 48px;
  display: flex;
  align-items: center;
}

.train__track{
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;

  will-change: transform;
  animation: train-move 22s linear infinite;
}

.train__item{
  color: rgba(255,255,255,.9);
  font-weight: 800;
  padding-left: 16px;
  padding-right: 16px;
}

.train__sep{
  opacity: .55;
}

/* Smooth continuous movement right -> left */
@keyframes train-move{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Pause on hover */
.train__inner:hover .train__track{
  animation-play-state: paused;
}

/* Don’t cover content */
body{ padding-bottom: 90px; }

@media (max-width: 700px){
  .train__inner{ border-radius: 22px; }
  .train{ bottom: 10px; }
}
/* ===== Floating Order Button ===== */

.order-float{
  position: fixed;
  right: 18px;
  bottom: 80px; /* sits nicely above the train */
  z-index: 10000;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 22px;
  border-radius: 999px;

  background: linear-gradient(135deg, #ffcc66, #7cf6c7);
  color: #0b0b10;
  font-weight: 900;
  text-decoration: none;

  box-shadow:
    0 18px 45px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.4);

  transition:
    transform .18s ease,
    box-shadow .18s ease;
}

.order-float:hover{
  transform: translateY(-3px);
  box-shadow:
    0 24px 60px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(255,255,255,.4);
}

.order-float:active{
  transform: translateY(0);
}

/* mobile */
@media (max-width: 700px){
  .order-float{
    left: 12px;
    right: 12px;
    bottom: 84px;
    justify-content: center;
  }
}
.order-float{
  animation: order-pulse 2.8s ease-in-out 1;
}

@keyframes order-pulse{
  0%{ transform: scale(1); }
  40%{ transform: scale(1.06); }
  100%{ transform: scale(1); }
}










/* ===============================
   PREMIUM POLISH PACK (drop-in)
================================ */

/* --- Global smoothing --- */
html{ scroll-behavior: smooth; }
body{
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Better section rhythm */
.hero-content{ padding-top: 140px; } /* fixed header spacing */
.about, .lunch, .alacarte{ padding: 92px 20px; }
@media (max-width: 900px){
  .about, .lunch, .alacarte{ padding: 70px 18px; }
}

/* Max-width for readable text */
.about-text p,
.lunch-info__text p,
.menu-info__text p{
  max-width: 70ch;
}

/* --- Subtle ambient background glow --- */
.about, .lunch, .alacarte{
  position: relative;
  overflow: hidden;
}
.about::before, .lunch::before, .alacarte::before{
  content:"";
  position:absolute;
  inset:-120px -120px auto -120px;
  height: 260px;
  background: radial-gradient(circle at 20% 30%,
    rgba(255,204,102,.16),
    rgba(124,246,199,.10),
    rgba(11,11,16,0) 70%);
  pointer-events:none;
  filter: blur(6px);
  opacity: .9;
}
.lunch::before{
  background: radial-gradient(circle at 20% 30%,
    rgba(124,246,199,.14),
    rgba(255,204,102,.10),
    rgba(11,11,16,0) 70%);
}

/* --- Cards: cleaner borders + depth --- */
.lunch-info, .today-card, .menu-info, .cat, .week-day, .day-panel{
  border-color: rgba(255,255,255,.14);
  box-shadow:
    0 22px 60px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.06);
}

/* Hover lift for clickable cards */
.cat, .week-day, .today-card, .menu-info, .lunch-info{
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.cat:hover, .week-day:hover, .today-card:hover, .menu-info:hover, .lunch-info:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  box-shadow:
    0 26px 70px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.08);
}

/* --- Headings pop a bit more --- */
.about-text h2,
.lunch-info h2,
.menu-info h2{
  letter-spacing: -0.02em;
}
.hero h1{ letter-spacing: -0.03em; }

/* --- Buttons feel premium --- */
.btn{
  transition: transform .14s ease, filter .14s ease, box-shadow .14s ease;
}
.btn.primary{
  box-shadow: 0 14px 28px rgba(0,0,0,.35);
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px) scale(.99); }
.btn.primary:hover{ filter: brightness(1.03); }
.btn.ghost:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.35);
}

/* Keyboard focus (important for accessibility) */
a:focus-visible, button:focus-visible{
  outline: 2px solid rgba(124,246,199,.75);
  outline-offset: 3px;
  border-radius: 14px;
}

/* --- Nav links: nicer underline hover --- */
.nav a{
  position: relative;
}
.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background: linear-gradient(135deg,#ffcc66,#7cf6c7);
  transition: width .18s ease;
  opacity: .9;
}
.nav a:hover::after{ width: 100%; }

/* --- Pills & badges a tiny bit nicer --- */
.pill{
  border-color: rgba(255,255,255,.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.badge{
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}

/* --- Dish cards: slightly cleaner --- */
.dish{
  border: 1px solid rgba(255,255,255,.12);
  border-style: solid;
  background: rgba(0,0,0,.18);
  transition: transform .14s ease, border-color .14s ease, background .14s ease;
}
.dish:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.22);
  background: rgba(0,0,0,.22);
}
.dish__price{
  text-shadow: 0 8px 18px rgba(0,0,0,.35);
}

/* --- Accordion button polish --- */
.cat__head{
  transition: background .14s ease;
}
.cat__head:hover{
  background: rgba(255,255,255,.05);
}
.cat__icon{
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.cat.isOpen .cat__icon{
  transform: rotate(45deg);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.26);
}

/* --- Language toggle refinement --- */
.lang-toggle{
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}
.lang-btn{
  transition: transform .12s ease, background .12s ease, filter .12s ease;
}
.lang-btn:hover{ transform: translateY(-1px); }
.lang-btn.active{ filter: brightness(1.03); }

/* --- Reduce motion if user prefers --- */
@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; animation: none !important; }
  html{ scroll-behavior: auto; }
}
