

/* Menu product panel widening & table alignment */
.menu-panel {
    width: 92%;
    max-width: 900px;
    margin: 20px auto;
    padding: 22px;
    border-radius: 22px;
    backdrop-filter: blur(10px);
}

.menu-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.menu-table th {
    font-size: 18px;
    padding-bottom: 10px;
    opacity: 0.8;
}

.menu-table td {
    padding: 6px 0;
    font-size: 17px;
}


/* --- merged from style.css --- */
/* Lions Café - clean stable layout (mobile-first) */
:root{
  --glass-bg: rgba(0,0,0,.32);
  --glass-brd: rgba(255,255,255,.16);
  --text: rgba(255,255,255,.92);
  --text-muted: rgba(255,255,255,.72);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: url("assets/img/hero-mobile.webp") center center / cover no-repeat fixed;
  overflow-x:hidden;
}

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

.glass{
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 26px;
}

/* Header / navigation */
header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 12px 12px 0;
}

/* Language row ABOVE the main nav */
.langbar{
  width: min(980px, 100%);
  margin: 0 auto 10px;
  display: flex;
  justify-content: flex-end;
}

.nav{
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 12px 14px;
  display:flex;
  align-items:center;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.nav.glass{ border-radius: 28px; } /* allow if header uses glass class */
.nav{ border-radius: 28px; }
.nav{ background: var(--glass-bg); border:1px solid var(--glass-brd); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  min-width: 0;
}
.brand img{ width: 28px; height: 28px; }
.wordmark{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.links{
  display:flex;
  gap: 10px;
  justify-content:center;
  flex: 1;
  min-width: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.links::-webkit-scrollbar{ display:none; }
.links a{
  text-decoration:none;
  /* ~1.5x smaller */
  padding: 6px 8px;
  font-size: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.lang{
  display:flex;
  gap: 8px;
  flex-shrink: 0;
  /* remove pill background */
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.lang button{
  appearance:none;
  /* ~2x smaller */
  border: 0;
  background: transparent;
  color: var(--text);
  border-radius: 0;
  padding: 4px 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
  text-shadow: 0 1px 6px rgba(0,0,0,.55);
}

.lang button[aria-current="true"],
.lang button.active{
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Prevent tiny screens from blowing up spacing */
@media (max-width: 420px){
  .wordmark{ font-size: 18px; }
  .links a{ padding: 6px 8px; font-size: 14px; }
  .lang button{ padding: 4px 6px; font-size: 12px; }
}

/* Hero content */
.hero{
  min-height: calc(100vh - 110px);
  display:flex;
  justify-content:center;
  padding: 124px 14px 64px; /* space for fixed header (lang + nav) */
}

.hero-inner{
  width: min(980px, 100%);
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items: stretch; /* allow left/right alignment per plaque */
}

.sign{
  width: min(560px, 92vw);
  padding: 0;
  /* plaque opacity: 80% */
  background: rgba(0,0,0,0.04);
  backdrop-filter: blur(2px);
  overflow: hidden;
}
.logo-img{
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}


.logo-video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
}

.step{
  width: clamp(180px, 46vw, 320px); /* not full width */
  padding: 14px 16px;
  background: rgba(0,0,0,0.06); /* light tint */
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(10px);
}

.step.logo{
  width: min(980px, 96vw);
  padding: 16px 14px;
}

.step h3{
  margin: 0 0 4px;
  font-size: clamp(18px, 4.8vw, 26px);
}
.step p{
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: var(--text-muted);
}

/* Align plaques: Day left, Night right (and keep them not full width) */
.step.day{ align-self:flex-start; text-align:left; }
.step.eve{ align-self:flex-end; text-align:left; }
.step.logo{ align-self: center; }



/* Mobile background image */
@media (max-width: 820px){
  body{
    background-image: url("assets/img/hero-mobile.webp");
    background-attachment: fixed;
  }
}

/* Footer */
footer{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 12px;
  text-align:center;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  z-index: 5;
  pointer-events:none;
  text-shadow: 0 1px 6px rgba(0,0,0,.65);
}


/* === Nav layout fix: languages above main nav === */

.lang-switch {
    position: absolute;
    top: 10px;
    right: 16px;
    display: flex;
    gap: 10px;
    z-index: 20;
}

.nav-panel {
    margin-top: 56px; /* push panel below language buttons */
}

@media (max-width: 768px) {
    .lang-switch {
        top: 6px;
        right: 10px;
        gap: 6px;
    }
    .nav-panel {
        margin-top: 48px;
    }
}



@media (max-width: 480px){
  .steps{ gap: 12px; }
  .step{
    width: calc(50vw - 18px);
    max-width: 240px;
    min-width: 160px;
    padding: 12px 14px;
  }
  .step h2{ font-size: 22px; }
  .step p{ font-size: 12.5px; }
}

.logo-video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
}

.lang-btn{
  appearance: none;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.10);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1;
}
.lang-btn:hover{
  background: rgba(255,255,255,0.16);
}
.lang-btn.is-active{
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.35);
}

.brand img{
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* Larger lion icon without resizing nav */
.brand img{
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand{
  gap: 14px; /* slight spacing adjust */
}


/* Active nav link */
.links a.active{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.22);
}

/* Page panel (menu/about/contact) */
.page-panel{
  width: min(980px, 96vw);
  align-self: center;
  text-align: left;
}
.page-panel h3{
  font-size: clamp(26px, 6.5vw, 44px);
  margin-bottom: 10px;
}
.page-panel p{
  font-size: 16px;
}

/* Lion icon: as large as possible without increasing bar height */
.brand img{
  width: 42px;
  height: 42px;
  object-fit: contain;
}

/* Lion icon in page titles */
.page-lion{
  width: 34px;
  height: 34px;
  margin-right: 10px;
  vertical-align: middle;
  object-fit: contain;
}


/* Page title with lion */
.page-title{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: clamp(26px, 6.5vw, 44px);
}
.page-lion{
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
}

/* Sign image fills plaque */
.sign .logo-img{
  width: 100%;
  height: auto;
  display: block;
}


/* Ensure lion icon appears inline next to page titles */
.step.logo h3,
.page-panel h3,
.panel h1{
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-lion{
  display: inline-block;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
  margin: 0;
}

/* Contacts layout */
.contact-card{
  width: min(760px, 92vw);
  margin: 20px auto;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
}

.contact-line{
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon{
  font-size: 20px;
  width: 26px;
  text-align: center;
}

.map{
  width: min(760px, 92vw);
  margin: 10px auto 30px;
  padding: 10px;
}

.map iframe{
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 14px;
}

/* Clickable links styling */
.contact-line a{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,.35);
}

.contact-line a:hover{
  border-bottom-color: rgba(255,255,255,.7);
}

/* Route button */
.route-btn-wrap{
  width: min(760px, 92vw);
  margin: 0 auto 40px;
  text-align: center;
}

.route-btn{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
  text-decoration: none;
  color: white;
  font-size: 15px;
}

/* WhatsApp button */
.wa-btn-wrap{
  width: min(760px, 92vw);
  margin: 6px auto 14px;
  text-align: center;
}

.wa-btn{
  display: inline-block;
  padding: 12px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
  transition: transform .15s ease, box-shadow .15s ease;
}

.wa-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.45);
}

/* Email link */
.contact-line a[href^="mailto"]{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,.4);
}

/* Route button under address */
.route-inline{
  margin-left: 36px;
  margin-top: 4px;
}

.route-inline .route-btn{
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 10px;
}


/* Menu categories grid (2 columns) */
.menu-grid{
  width: min(760px, 92vw);
  margin: 18px auto 10px;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.menu-cat{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
}

.menu-cat:hover{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.26);
}

.menu-ic{
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}

.menu-ic.big{
  width: 54px;
  height: 54px;
}

.menu-t{
  font-weight: 700;
  font-size: 16px;
}

.menu-back{
  width: min(760px, 92vw);
  margin: 12px auto 0;
}

.menu-back-link{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  text-decoration: none;
  color: #fff;
}

@media (max-width: 360px){
  .menu-grid{ grid-template-columns: 1fr; }
}

/* Clean menu grid (no glass background) */
.menu-grid.clean{
  background: none;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
  padding: 0;
}

/* Keep tiles readable */
.menu-grid.clean .menu-cat{
  background: rgba(20,20,30,.55);
}

/* Graphic sign */
.top-sign{
  width: min(760px, 92vw);
  margin: 10px auto 6px;
  text-align: center;
}

.top-sign img{
  width: 100%;
  max-height: 140px;
  object-fit: contain;
}


/* Menu list inside category panel */
.menu-table{
  margin-top: 14px;
  width: 100%;
}
.menu-row{
  display: grid;
  grid-template-columns: 1fr 72px 82px;
  gap: 10px;
  align-items: center;
  padding: 8px 2px;
  color: rgba(255,255,255,0.92);
}
.menu-row.menu-head{
  font-weight: 700;
  opacity: 0.75;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  padding-bottom: 10px;
  margin-bottom: 4px;
}
.menu-row > div:nth-child(2),
.menu-row > div:nth-child(3){
  text-align: right;
}
@media (max-width: 420px){
  .menu-row{ grid-template-columns: 1fr 64px 76px; }
}



/* --- Menu list layout (3 columns) --- */
.menu-table{
  width: 100%;
  margin-top: 14px;
}
.menu-row{
  display: grid;
  grid-template-columns: 1fr 84px 84px;
  column-gap: 14px;
  align-items: center;
}
.menu-row > div:nth-child(1){ text-align: left; }
.menu-row > div:nth-child(2){ text-align: center; white-space: nowrap; }
.menu-row > div:nth-child(3){ text-align: right; white-space: nowrap; }
.menu-head{
  font-weight: 600;
  opacity: .9;
  padding-bottom: 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.menu-row:not(.menu-head){
  padding: 8px 0;
}
@media (max-width: 420px){
  .menu-row{ grid-template-columns: 1fr 72px 72px; column-gap: 10px; }
}


/* --- Overrides: wider menu panels + aligned 3 columns --- */
.page-panel .menu-table{max-width: 960px; width: 100%;}
.menu-head, .menu-row{
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  column-gap: 14px;
  align-items: center;
}
.menu-head > div, .menu-row > div{
  text-align: center;
}
@media (max-width: 420px){
  .menu-head, .menu-row{grid-template-columns: 1.3fr 0.7fr 0.7fr; column-gap: 10px;}
}

