@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Manrope:wght@400;500;600;700&display=swap');

:root{
  --gold:#ffd64a;
  --gold-soft:rgba(255,214,74,.45);
  --gold-glow:0 0 8px rgba(255,214,74,.45), 0 0 18px rgba(255,214,74,.35);

  --bg-dark:#0b0b0b;
  --bg-light:#f6f6f6;

  --text-dark:#ffffff;
  --text-light:#111111;

  --glass-dark:rgba(0,0,0,.62);
  --glass-light:rgba(255,255,255,.72);

  --border-dark:rgba(255,255,255,.10);
  --border-light:rgba(0,0,0,.10);

  --radius-xl:22px;
  --radius-pill:999px;

  --max:1100px;

  --font-body:"Manrope","Segoe UI",sans-serif;
  --font-display:"Fraunces","Times New Roman",serif;
  --shadow-strong:0 20px 50px rgba(0,0,0,.45);
  --shadow-soft:0 14px 28px rgba(0,0,0,.18);
}

*{ box-sizing:border-box; }

html,body{ height:100%; }

body{
  margin:0;
  font-family:var(--font-body);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ max-width:100%; height:auto; }

body.dark{
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(212,175,55,.16), rgba(0,0,0,0)),
    radial-gradient(700px 380px at 80% 0%, rgba(120,120,120,.18), rgba(0,0,0,0)),
    linear-gradient(180deg, #0b0b0b 0%, #050505 60%);
  color:var(--text-dark);
  --page-noise:radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.08) 0, rgba(255,255,255,0) 60%),
    radial-gradient(2px 2px at 80% 20%, rgba(255,255,255,.06) 0, rgba(255,255,255,0) 60%),
    radial-gradient(2px 2px at 40% 80%, rgba(255,255,255,.05) 0, rgba(255,255,255,0) 60%);
}
body.dark.home{
  background-color:#000;
  background-image:url("/public/assets/homepage.png");
  background-image:-webkit-image-set(
    url("/public/assets/homepage.webp") type("image/webp"),
    url("/public/assets/homepage.png") type("image/png")
  );
  background-image:image-set(
    url("/public/assets/homepage.webp") type("image/webp"),
    url("/public/assets/homepage.png") type("image/png")
  );
  background-position:center;
  background-size:65% auto;
  background-repeat:no-repeat;
}
body.dark.fixed-bg{
  background-color:#000;
  background-image:url("/public/assets/homepage.png");
  background-image:-webkit-image-set(
    url("/public/assets/homepage.webp") type("image/webp"),
    url("/public/assets/homepage.png") type("image/png")
  );
  background-image:image-set(
    url("/public/assets/homepage.webp") type("image/webp"),
    url("/public/assets/homepage.png") type("image/png")
  );
  background-position:center;
  background-size:65% auto;
  background-repeat:no-repeat;
  background-attachment:fixed;
}
body.dark.lounas{
  --lounas-bg:url("/public/assets/bg/default mobile.png");
  --lounas-bg:-webkit-image-set(
    url("/public/assets/bg/default mobile.webp") type("image/webp"),
    url("/public/assets/bg/default mobile.png") type("image/png")
  );
  --lounas-bg:image-set(
    url("/public/assets/bg/default mobile.webp") type("image/webp"),
    url("/public/assets/bg/default mobile.png") type("image/png")
  );
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.55)),
    radial-gradient(900px 500px at 15% 10%, rgba(212,175,55,.12), rgba(0,0,0,0)),
    radial-gradient(700px 380px at 80% 0%, rgba(120,120,120,.12), rgba(0,0,0,0)),
    var(--lounas-bg) center/cover no-repeat fixed,
    #000;
}
@media (max-width: 680px){
  body.dark.home{
    background-color:#000;
    background-image:url("/public/assets/homepage.png");
    background-image:-webkit-image-set(
      url("/public/assets/homepage.webp") type("image/webp"),
      url("/public/assets/homepage.png") type("image/png")
    );
    background-image:image-set(
      url("/public/assets/homepage.webp") type("image/webp"),
      url("/public/assets/homepage.png") type("image/png")
    );
    background-position:center;
    background-size:65% auto;
    background-repeat:no-repeat;
  }
  body.dark.fixed-bg{
    background-color:#000;
    background-image:url("/public/assets/homepage.png");
    background-image:-webkit-image-set(
      url("/public/assets/homepage.webp") type("image/webp"),
      url("/public/assets/homepage.png") type("image/png")
    );
    background-image:image-set(
      url("/public/assets/homepage.webp") type("image/webp"),
      url("/public/assets/homepage.png") type("image/png")
    );
    background-position:center;
    background-size:65% auto;
    background-repeat:no-repeat;
  }
  body.dark.lounas{
    --lounas-bg:url("/public/assets/bg/default mobile.png");
    --lounas-bg:-webkit-image-set(
      url("/public/assets/bg/default mobile.webp") type("image/webp"),
      url("/public/assets/bg/default mobile.png") type("image/png")
    );
    --lounas-bg:image-set(
      url("/public/assets/bg/default mobile.webp") type("image/webp"),
      url("/public/assets/bg/default mobile.png") type("image/png")
    );
    background:
      linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.55)),
      radial-gradient(900px 500px at 15% 10%, rgba(212,175,55,.14), rgba(0,0,0,0)),
      radial-gradient(700px 380px at 80% 0%, rgba(120,120,120,.14), rgba(0,0,0,0)),
      var(--lounas-bg) center/cover no-repeat fixed,
      #000;
  }
}
body.dark.home::before{
  opacity:.18;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.45;
  background-image:var(--page-noise);
  z-index:-2;
}

body.dark::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.65));
  z-index:-1;
}
body.home::after{
  background:none;
}
body.home::before{
  opacity:.25;
}
body.dark.lounas::after,
body.dark.menu::after{
  background:linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.5));
}

body.lounas{
  min-height:100vh;
  height:auto;
  display:flex;
  flex-direction:column;
}
body.lounas main.page{
  flex:1;
}

h1,h2,h3,.section-title,.menu-name,.action-btn{
  font-family:var(--font-display);
  letter-spacing:.3px;
}
h1{ font-size:2rem; line-height:1.2; margin:0 0 12px; }
h2{ font-size:1.5rem; line-height:1.25; margin:0 0 10px; }
h3{ font-size:1.15rem; line-height:1.3; margin:0 0 8px; }

a{ color:inherit; }

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:22px 18px;
}

.muted{ opacity:.78; }
.small{ font-size:.92rem; }

.visually-hidden{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  border:0;
}

/* =========================
   HEADER (shared)
========================= */
.glass-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  backdrop-filter: blur(16px);
  background: var(--glass-dark);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.header-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:8px 16px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:14px;
  min-height:52px;
}

.logo,
.header-inner .logo-link{
  display:none;
}
.header-inner .lang-select{
  justify-self:end;
  grid-column:3;
}

.call-btn{
  position:static;
  justify-self:start;
  color:var(--gold);
  text-decoration:none;
  font-weight:650;
  font-size:.95rem;
  white-space:nowrap;
  padding:9px 14px;
  border-radius:var(--radius-pill);
  border:1.5px solid rgba(212,175,55,.45);
  background:rgba(0,0,0,.20);
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease;
}
body.dark .call-btn{ text-shadow:var(--gold-glow); }
.call-btn:hover,
.call-btn:active{
  box-shadow:0 0 16px rgba(212,175,55,.35);
}
.call-btn:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
  box-shadow:0 0 16px rgba(212,175,55,.35);
}

/* round 3-line button */
.menu-toggle{
  position:static;
  justify-self:end;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1.5px solid var(--gold);
  background:transparent;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease;
}
.menu-toggle:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
}
.menu-toggle:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(0,0,0,.22), 0 0 16px rgba(212,175,55,.25);
}
.menu-toggle:active{
  box-shadow:0 0 18px rgba(212,175,55,.35);
}
.menu-toggle span{
  height:2px;
  width:22px;
  background:var(--gold);
  border-radius:2px;
  transition:transform .2s ease, opacity .2s ease;
}
.menu-toggle.open span:nth-child(1){ transform:translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2){ opacity:0; }
.menu-toggle.open span:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }

/* toggle panel */
.toggle-menu{
  position:fixed;
  top:74px;
  right:16px;
  width:min(320px, calc(100vw - 32px));
  background: rgba(0,0,0,.90);
  backdrop-filter: blur(14px);
  border:1px solid var(--gold);
  border-radius:18px;
  padding:14px;
  display:none;
  flex-direction:column;
  gap:8px;
  z-index:999;
  box-shadow: var(--shadow-strong);
}

.toggle-menu.open{ display:flex; }
.toggle-menu.open{
  animation: panelIn .18s ease;
}

@keyframes panelIn{
  from{ opacity:0; transform:translateY(-6px) scale(.98); }
  to{ opacity:1; transform:translateY(0) scale(1); }
}

.toggle-menu a,
.toggle-menu button.nav-btn{
  text-decoration:none;
  padding:12px 14px;
  border-radius: var(--radius-pill);
  font-weight:650;
  border:1px solid transparent;
  background:transparent;
  cursor:pointer;
  text-align:left;
}
body.dark .toggle-menu a,
body.dark .toggle-menu button.nav-btn{ color:var(--gold); }
.toggle-menu a:hover,
.toggle-menu button.nav-btn:hover{
  border-color: var(--gold);
  background: rgba(212,175,55,.10);
  box-shadow:0 0 16px rgba(212,175,55,.25);
}
.toggle-menu a:active,
.toggle-menu button.nav-btn:active{
  box-shadow:0 0 18px rgba(212,175,55,.35);
}

.toggle-menu .active{
  border-color: var(--gold);
  background: rgba(212,175,55,.14);
}

.divider{
  height:1px;
  background: rgba(255,255,255,.12);
  margin:6px 0;
}

.option-row{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.option-btn{
  width:100%;
  border:1px solid var(--gold);
  border-radius: var(--radius-pill);
  background: transparent;
  padding:10px 12px;
  font-weight:650;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .2s ease;
}
body.dark .option-btn{ color:var(--gold); }
.option-btn:hover,
.option-btn:active{
  box-shadow:0 0 16px rgba(212,175,55,.25);
}

.lang-select{
  display:flex;
  gap:10px;
}
.lang-select button{
  flex:1;
  border:1px solid var(--gold);
  border-radius: var(--radius-pill);
  background: transparent;
  min-height:44px;
  padding:8px 12px;
  font-weight:700;
  cursor:pointer;
  transition:background .2s ease, box-shadow .2s ease;
}
body.dark .lang-select button{ color:var(--gold); }
body.dark .lang-select button{ text-shadow:var(--gold-glow); }
.lang-select button.active{
  background:rgba(212,175,55,.12);
  box-shadow:0 0 16px rgba(212,175,55,.25);
}
.lang-select button:hover,
.lang-select button:active{
  box-shadow:0 0 14px rgba(212,175,55,.25);
}

/* =========================
   HOME hero buttons
========================= */
.page{
  min-height:100vh;
  padding-top:94px;
  position:relative;
}

.hero{
  min-height:100vh;
  padding-top:94px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}

/* background layers for menu page */
.bg-stack{
  position:fixed;
  inset:0;
  z-index:-2;
}
.bg-layer{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition: opacity .55s ease;
  filter:saturate(1.05) contrast(1.06);
  transform:translateZ(0);
}
.bg-layer.show{ opacity:1; }

/* dark overlay improves readability */
.bg-overlay{
  position:fixed;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(1200px 700px at 50% 15%, rgba(0,0,0,.20), rgba(0,0,0,.70)),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.78));
}

.action-grid{
  width:100%;
  max-width:820px;
  margin:0 auto;
  padding:18px;
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  align-items:start;
}

.hero-title{
  text-align:center;
  margin:6px auto 8px;
  max-width:700px;
  grid-column:1 / -1;
}

.action-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px 18px;
  border-radius: var(--radius-pill);
  border:2px solid var(--gold);
  text-decoration:none;
  font-size:1.08rem;
  font-weight:750;
  letter-spacing:.2px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-strong);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  width:100%;
}
body.dark .action-btn{ color:var(--gold); }
body.dark .action-btn{ text-shadow:var(--gold-glow); }

.action-btn:hover{
  transform:translateY(-2px);
  box-shadow: 0 0 22px var(--gold-soft), 0 18px 44px rgba(0,0,0,.44);
  background: rgba(0,0,0,.68);
}
.action-btn:active{
  box-shadow:0 0 20px rgba(212,175,55,.35);
}

/* =========================
   Content cards (pages)
========================= */
.card{
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding:22px;
  box-shadow: var(--shadow-strong);
}

.section-title{
  margin:0 0 10px;
  font-size:1.4rem;
  letter-spacing:.2px;
}

/* Menu list */
.menu-category{
  scroll-margin-top:220px;
  margin:48px auto;
}

.menu-category h2{
  margin:0 0 10px;
  font-size:1.6rem;
  text-align:center;
  color:var(--gold);
}

.lunch-day{
  text-align:center;
  color:var(--gold);
}

.menu-items{
  list-style:none;
  padding:0;
  margin:0;
}

.menu-item{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.12);
  align-items:flex-start;
}

.menu-item:last-child{ border-bottom:none; }

.menu-bar-wrap{
  position:fixed;
  top:72px;
  left:0;
  right:0;
  z-index:900;
  padding:8px 16px 12px;
}
.menu-bar{
  max-width:var(--max);
  margin:0 auto;
  padding:10px 16px;
  display:flex;
  gap:10px;
  flex-wrap:nowrap;
  justify-content:flex-start;
  overflow-x:auto;
  scrollbar-width:thin;
  scrollbar-color:transparent transparent;
  cursor:grab;
  touch-action:pan-y;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,214,74,.35);
  border-radius:999px;
  backdrop-filter:blur(12px);
  box-shadow:var(--shadow-strong);
}
.menu-bar.is-dragging{
  cursor:grabbing;
  user-select:none;
}
.menu-bar::-webkit-scrollbar{
  height:6px;
}
.menu-bar::-webkit-scrollbar-track{
  background:transparent;
}
.menu-bar::-webkit-scrollbar-thumb{
  background:transparent;
}
.menu-chip{
  flex-shrink:0;
  border:1.5px solid var(--gold);
  border-radius:999px;
  background:rgba(0,0,0,.35);
  color:var(--gold);
  padding:8px 14px;
  font-weight:700;
  cursor:pointer;
  white-space:nowrap;
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.menu-chip:hover{
  transform:translateY(-1px);
  box-shadow:0 0 16px rgba(255,214,74,.35);
}
.menu-chip.active{
  background:rgba(255,214,74,.14);
  box-shadow:0 0 18px rgba(255,214,74,.45);
}

.menu-page{
  position:relative;
  padding-top:170px;
}
.menu-bg{
  position:fixed;
  inset:0;
  z-index:-2;
}
.menu-bg-layer{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity .6s ease;
  filter:brightness(.65) blur(1px);
}
.menu-bg-layer.show{ opacity:1; }
.menu-bg-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 10% 10%, rgba(0,0,0,.18), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.55));
}

.menu-main{
  flex:1;
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.menu-main strong{ font-weight:750; letter-spacing:.2px; }
.menu-price{
  white-space:nowrap;
  font-weight:750;
  color:var(--gold);
  text-align:right;
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width:86px;
}

.page-top-pad{ padding-top:96px; }

.back-link{
  color:var(--gold);
  text-decoration:none;
  font-weight:650;
}

.list{
  list-style:none;
  margin:0;
  padding:0;
}
.list li{ padding:6px 0; }

.schedule-list li{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.schedule-list li:last-child{ border-bottom:none; }

/* =========================
   Responsive
========================= */
@media (min-width: 768px){
  .action-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  .action-grid .action-btn:last-child{
    grid-column:1 / -1;
    justify-self:center;
    width:min(100%, 360px);
  }
  .toggle-menu{
    width:340px;
  }
  .call-btn{ font-size:.98rem; }
}

@media (max-width: 720px){
  .header-inner{
    grid-template-columns:1fr auto;
    row-gap:8px;
  }
  .header-inner .lang-select{
    grid-column:auto;
    justify-self:end;
  }
  .call-btn{
    font-size:.9rem;
    padding:7px 12px;
  }
}

@media (min-width: 1200px){
  .action-grid{ max-width:900px; }
}

.notranslate{ white-space:nowrap; }


/* =========================
   UTILITIES (used by admin too)
========================= */
.container{ max-width:var(--max); margin:0 auto; padding:18px; }
.page{ padding-top:94px; min-height:calc(100vh - 120px); }
.row{ display:flex; gap:12px; align-items:center; }
.row.wrap{ flex-wrap:wrap; }
.grid{ display:grid; gap:16px; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); }
.stack{ display:flex; flex-direction:column; gap:12px; }
.grow{ flex:1; min-width:220px; }

label{ display:block; font-size:.9rem; margin-top:8px; opacity:.9; }
input, select, textarea{
  width:100%;
  padding:13px 14px;
  min-height:48px;
  font-size:1rem;
  border-radius:14px;
  border:1.5px solid var(--border-dark);
  background:rgba(0,0,0,.5);
  color:var(--text-dark);
  outline:none;
  transition:border .2s ease, box-shadow .2s ease, background .2s ease;
}
textarea{ min-height:120px; resize:vertical; }
input::placeholder, textarea::placeholder{ opacity:.65; }
input:focus-visible, select:focus-visible, textarea:focus-visible{
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(212,175,55,.18);
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  min-height:46px;
  border-radius:var(--radius-pill);
  border:1.5px solid var(--gold);
  color:var(--gold);
  background:transparent;
  text-decoration:none;
  font-weight:650;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn[disabled]{ opacity:.6; cursor:not-allowed; box-shadow:none; transform:none; }

.toast{
  position:fixed;
  left:50%;
  bottom:22px;
  transform:translateX(-50%) translateY(10px);
  opacity:0;
  pointer-events:none;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid var(--gold);
  background:rgba(0,0,0,.75);
  color:var(--gold);
  box-shadow:var(--shadow-strong);
  transition:opacity .2s ease, transform .2s ease;
  z-index:1200;
}
.toast.show{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}
body.dark .btn{ text-shadow:var(--gold-glow); }
.btn.primary{
  background:rgba(212,175,55,.12);
}
.btn.danger{
  border-color:rgba(255,255,255,.22);
  color:#fff;
  background:rgba(180,40,40,.35);
}
.btn:hover{ transform:translateY(-1px); box-shadow:0 10px 20px rgba(0,0,0,.25), 0 0 16px rgba(212,175,55,.25); }
.btn:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }
.btn:active{ box-shadow:0 0 18px rgba(212,175,55,.35); }
small,.small{ font-size:.88rem; }
.muted{ opacity:.78; }
.notranslate{ white-space:nowrap; }


/* =========================
   FOOTER
========================= */
.site-footer{
  padding:20px 0 30px;
  border-top:1px solid var(--border-dark);
  background:rgba(0,0,0,.35);
  backdrop-filter:blur(10px);
}
body.lounas .site-footer{
  margin-top:auto;
}
body.home .site-footer{
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.25);
  backdrop-filter:blur(6px);
}
.footer-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}
.footer-social{ display:flex; gap:8px; flex-wrap:wrap; justify-content:center; width:100%; }
.social-pill{
  border:1px solid var(--gold);
  color:var(--gold);
  text-decoration:none;
  padding:8px 12px;
  border-radius:var(--radius-pill);
  font-weight:650;
  background:transparent;
}
.social-pill:hover{ box-shadow:0 0 16px var(--gold-soft); }
.social-pill:active{ box-shadow:0 0 18px rgba(212,175,55,.35); }


.logo-link{display:inline-flex; align-items:center; justify-content:center; text-decoration:none;}
.logo-link .logo{display:block;}


/* ===== Header logo centering on mobile ===== */
.logo-link{ display:inline-flex; }
@media (max-width: 680px){
  .header-inner{
    max-width:var(--max);
    margin:0 auto;
    padding:12px 16px;
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:12px;
  }
  .logo-link{
    position:static;
    transform:none;
    justify-self:center;
  }
}

@media (max-width: 520px){
  .header-inner{
    padding:16px 16px;
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    max-width:420px;
    margin:0 auto;
  }
  .logo-link{
    position:static;
    transform:none;
    justify-self:center;
  }
  .call-btn{
    font-size:.9rem;
    padding:7px 12px;
    position:static;
    justify-self:start;
  }
  .menu-toggle{
    width:48px;
    height:48px;
    right:12px;
    position:static;
    justify-self:end;
  }
  .toggle-menu{
    top:90px;
    right:12px;
    width:calc(100vw - 24px);
  }
  .hero{ padding-top:112px; min-height:calc(100vh - 112px); }
  .action-grid{
    padding:12px 10px 14px;
    gap:12px;
    max-width:420px;
    grid-template-columns:1fr;
  }
  .action-btn{
    padding:16px 12px;
    font-size:1rem;
    letter-spacing:0;
    border-width:1.5px;
    box-shadow:0 10px 22px rgba(0,0,0,.28);
  }
  .hero-title{ font-size:1.5rem; }
  .container{ padding:18px 14px; }
}

@media (max-width: 680px){
  .menu-bg-layer{
    background-image:url("/public/assets/bg/default mobile.png") !important;
    background-image:-webkit-image-set(
      url("/public/assets/bg/default mobile.webp") type("image/webp"),
      url("/public/assets/bg/default mobile.png") type("image/png")
    ) !important;
    background-image:image-set(
      url("/public/assets/bg/default mobile.webp") type("image/webp"),
      url("/public/assets/bg/default mobile.png") type("image/png")
    ) !important;
  }
}

/* ===== Social icon buttons ===== */
.footer-social{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
}

.social-icon{
  width:44px;
  height:44px;
  border-radius:50%;
  border:1.5px solid var(--gold);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:var(--gold);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.social-icon:hover{
  transform:translateY(-1px);
  box-shadow:0 0 18px rgba(212,175,55,.35);
  background:rgba(212,175,55,.06);
}
.social-icon:active{
  box-shadow:0 0 18px rgba(212,175,55,.45);
}

.social-icon svg{
  width:20px;
  height:20px;
  display:block;
  fill:currentColor;
}

.price-line{
  display:flex;
  justify-content:flex-end;
  gap:8px;
  line-height:1.1;
  margin:2px 0;
}
.price-label{ opacity:.85; font-size:.82rem; }
.price-val{ font-weight:700; }

.weekly-item{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.weekly-item:last-child{ border-bottom:none; }
.weekly-main{
  flex:1;
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.weekly-desc{
  white-space:pre-line;
}
.lounas-public-section,
.buffet-public-section{
  margin:0 0 40px;
}
.section-heading{
  margin:0 0 12px;
}
.section-intro{
  margin:0 0 24px;
}
.weekly-rich-text{
  margin:0 0 24px;
  white-space:pre-line;
}
.weekly-price{
  white-space:nowrap;
  font-weight:800;
  color:var(--gold);
  background:rgba(255,215,0,0.06);
  padding:6px 10px;
  border-radius:10px;
  min-width:70px;
  text-align:center;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:4px;
}
