/*
Theme Name: Café Multi-page v1.1.3
Theme URI: https://cafe.btsounis.gr/
Author: BTSounis
Description: Responsive multi-page café theme with Standard (5-page) and Premium (7-page) layouts, menu filters, reservations and local SEO foundation.
Version: 1.1.3
Text Domain: restaurant-multipage
*/
/* =========================================================
   Café Multi-page Template v1.1.0
   Clean, conversion-focused, themeable
   ========================================================= */

/* ---------- Google Fonts are loaded only for the selected Customizer font pair ---------- */

/* ---------- Base Variables (Coffeehouse - default) ---------- */
:root {
  --ink: #1c2420;
  --muted: #6b736c;
  --paper: #faf6f0;
  --white: #fffdf9;
  --line: #e8dfd3;
  --accent: #8b5e3c;
  --accent-dark: #6f472e;
  --accent-soft: #efe3d5;
  --dark: #1a211e;
  --focus: #1b73e8;
  --success: #2d6a4f;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 16px 40px rgba(35, 30, 22, 0.08);
  --shadow-lg: 0 24px 60px rgba(35, 30, 22, 0.12);
  --font-body: 'Outfit', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --transition: 0.25s ease;
}

/* ---------- Light Theme (explicit) ---------- */
:root,
[data-theme="light"] {
  color-scheme: light;
  --ink: #1c2420;
  --muted: #6b736c;
  --paper: #faf6f0;
  --white: #fffdf9;
  --line: #e8dfd3;
  --accent: #8b5e3c;
  --accent-dark: #6f472e;
  --accent-soft: #efe3d5;
  --dark: #1a211e;
  --shadow: 0 16px 40px rgba(35, 30, 22, 0.08);
  --shadow-lg: 0 24px 60px rgba(35, 30, 22, 0.12);
}

/* ---------- Dark Theme ---------- */
[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f0ebe3;
  --muted: #a39e94;
  --paper: #141816;
  --white: #1c221f;
  --line: #2c342f;
  --accent: #d4a574;
  --accent-dark: #e0b98a;
  --accent-soft: #2a322e;
  --dark: #0d100f;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.45);
}

/* ---------- Rustic Theme ---------- */
[data-theme="rustic"] {
  --ink: #2c241b;
  --muted: #7a6e5f;
  --paper: #f5efe6;
  --white: #faf6ef;
  --line: #e0d5c4;
  --accent: #8b5e3c;
  --accent-dark: #6b4423;
  --accent-soft: #ebe0d0;
  --dark: #231c15;
}

/* ---------- Palette + dark mode surface coverage ---------- */
html, body, body.custom-background { background-color: var(--paper) !important; color: var(--ink); }
body, button, input, select, textarea { color: var(--ink); }
.section.alt, .card, .menu-card, .gallery-card, .info-card, .contact-card, .reservation-card, .faq-item, .review-card { background-color: var(--white); color: var(--ink); }
.section.alt, .card, .menu-card, .gallery-card, .info-card, .contact-card, .reservation-card, .faq-item, .review-card, input, select, textarea { border-color: var(--line); }
.nav, .mobilebar { background-color: var(--white); color: var(--ink); border-color: var(--line); }
.top, .footer { background-color: var(--dark); }
.hero { background-color: var(--paper); }

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
img { max-width: 100%; display: block; height: auto; }

/* ---------- Layout ---------- */
.container {
  width: min(calc(100% - 40px), 1160px);
  margin-inline: auto;
}
.skip {
  position: absolute;
  left: -9999px;
  top: 10px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 8px;
  z-index: 100;
  font-weight: 600;
}
.skip:focus { left: 12px; }

/* ---------- Top Bar ---------- */
.top {
  background: var(--dark);
  color: #fff;
  font-size: 0.8rem;
  padding: 9px 0;
  letter-spacing: 0.02em;
}
.top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top a { opacity: 0.9; }
.top a:hover { opacity: 1; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  /* relative containing block for mobile drawer */
  background: color-mix(in srgb, var(--white) 92%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.navin {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 76px;
  gap: 20px;
  position: relative;
}
.brand, .brand:visited {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1.15;
  white-space: nowrap;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.links {
  display: flex;
  gap: 4px 22px;
  align-items: center;
  flex-wrap: wrap;
}
.links a {
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.links a:not(.cta):hover { color: var(--accent); }
.cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 11px 22px !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
}
.cta:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 35%, transparent);
}
.secondary {
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background var(--transition), border-color var(--transition);
}
.secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
.menu-btn {
  display: none;
  border: 0;
  background: none;
  font-size: 1.55rem;
  cursor: pointer;
  color: var(--ink);
  padding: 6px;
  line-height: 1;
}

/* ---------- Hero ---------- */
.hero {
  min-height: min(88vh, 720px);
  display: grid;
  place-items: center;
  background:
    linear-gradient(105deg, rgba(20,25,22,0.82) 0%, rgba(20,25,22,0.35) 55%, rgba(20,25,22,0.15) 100%),
    var(--hero-img, url(https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1800&q=82)) center/cover no-repeat;
  position: relative;
}
.hero-in {
  color: #fff;
  max-width: 720px;
  padding: 100px 0 80px;
}
.eyebrow {
  display: inline-block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 700;
}
.hero .eyebrow { color: #f0c9a8; }
.hero h1,
.pagehero h1,
.section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  margin: 14px 0 18px;
}
.hero p {
  font-size: 1.12rem;
  max-width: 540px;
  opacity: 0.92;
  font-weight: 300;
}
.actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section.alt { background: var(--white); }
.section h2 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  margin: 6px 0 14px;
}
.muted { color: var(--muted); }
.lead { font-size: 1.08rem; max-width: 560px; }

/* ---------- Grids ---------- */
.grid2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.card .eyebrow { margin-bottom: 8px; }
.card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 10px;
}

/* ---------- Signature / List items ---------- */
.list { display: grid; }
.item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.item:last-child { border-bottom: 0; }
.price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
}

/* ---------- Image blocks ---------- */
.image {
  min-height: 400px;
  border-radius: var(--radius);
  background: center/cover no-repeat;
  box-shadow: var(--shadow);
}

/* ---------- Page Hero ---------- */
.pagehero {
  padding: 92px 0 72px;
  background: var(--accent-soft);
  border-bottom: 1px solid var(--line);
}
.pagehero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin: 8px 0 12px;
}
.pagehero p { max-width: 520px; }

/* ---------- Menu Filters & Cards ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.filter {
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.filter:hover,
.filter[aria-pressed="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery figure {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery figure:hover img { transform: scale(1.05); }

/* ---------- Reviews ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.review-card .stars {
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.review-card .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.45;
  margin: 0 0 18px;
}
.review-card .author {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.google-badge:hover { transform: translateY(-2px); }
.google-badge .star { color: #f4b400; }

/* ---------- Contact / Form ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  outline: none;
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 12px;
}
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .today { font-weight: 700; color: var(--accent); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
  background: var(--accent-soft);
}
.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

/* ---------- Why Dine / Features ---------- */
.feature-list {
  display: grid;
  gap: 20px;
}
.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ---------- Mobile Quick Bar ---------- */
.mobilebar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 30px rgba(0,0,0,0.08);
  justify-content: space-around;
  gap: 4px;
}
.mobilebar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 8px;
  border-radius: 10px;
  transition: background var(--transition);
}
.mobilebar a:hover,
.mobilebar a:active { background: var(--accent-soft); }
.mobilebar .whatsapp { color: #25d366; }

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: #e8e4df;
  padding: 64px 0 0;
  margin-top: 0;
}
.footgrid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer .brand { color: #fff; }
.footer .brand small { color: #9a958c; }
.footer .muted { color: #9a958c; }
.footer a:hover { color: var(--accent); }
.footer .cta {
  margin-top: 14px;
  display: inline-flex;
}
.bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  font-size: 0.85rem;
  color: #8a857c;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.socials {
  display: flex;
  gap: 14px;
}
.socials a {
  opacity: 0.75;
  transition: opacity var(--transition);
}
.socials a:hover { opacity: 1; }

/* ---------- 404 ---------- */
.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px 20px;
}
.error-page h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  margin: 0;
  color: var(--accent);
  line-height: 1;
}
.error-page p { font-size: 1.15rem; max-width: 400px; margin: 16px auto 28px; }

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  animation: fadeUp 0.6s ease both;
}
.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.3s; }

/* ---------- Utilities ---------- */
.badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid2 { grid-template-columns: 1fr; gap: 36px; }
  .grid3 { grid-template-columns: 1fr 1fr; }
  .featured-strip { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .footgrid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .menu-btn { display: block; }
  .links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
  }
  .links.open { display: flex; }
  .links a { padding: 12px 0; width: 100%; }
  .links .cta { margin-top: 8px; text-align: center; justify-content: center; }
  .mobilebar { display: flex; }
  body { padding-bottom: 72px; }
  .hero { min-height: 78vh; }
  .hero-in { padding: 80px 0 60px; }
  .section { padding: 64px 0; }
  .pagehero { padding: 72px 0 52px; }
  .grid3, .grid4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .footgrid { grid-template-columns: 1fr; gap: 28px; }
  .menu-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { width: min(calc(100% - 28px), 1160px); }
  .actions { flex-direction: column; }
  .actions .cta,
  .actions .secondary { width: 100%; text-align: center; justify-content: center; }
}

.demo-badge{position:fixed;left:14px;bottom:14px;z-index:80;background:#202824;color:#fff;padding:7px 11px;border-radius:999px;font-size:.68rem;font-weight:900;letter-spacing:.08em;box-shadow:0 8px 30px #0002}
.menu-filters{display:flex;gap:8px;flex-wrap:wrap;margin-top:25px}
.menu-filter{border:1px solid var(--line);background:var(--white);padding:9px 14px;border-radius:999px;font-weight:800;cursor:pointer}
.menu-filter.active,.menu-filter:hover{background:var(--dark);color:#fff}
.menu-group{margin-bottom:55px}.menu-group h2{font-family:Georgia,serif;font-size:2.2rem;margin-bottom:18px}
.menu-items{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
[aria-current="page"]{color:var(--accent-dark);font-weight:900}
@media(max-width:700px){.menu-items{grid-template-columns:1fr}.demo-badge{bottom:62px;left:8px}}
@media print{
 .nav,.top,.footer,.mobilebar,.demo-badge,.menu-filters,.cta{display:none!important}
 body{background:#fff}.section{padding:20px 0}.menu-items{grid-template-columns:1fr 1fr}
}

.lang-switch{font-weight:900;text-decoration:none;padding:8px 10px;border:1px solid var(--line);border-radius:999px;margin-left:6px;line-height:1}
.nav .links{align-items:center}
.wp-block-navigation__container{gap:18px}

.lang-switch{cursor:pointer;}

/* v4.2.6 mobile language: always visible outside the hamburger menu */
.mobile-lang-switcher{display:none;}
@media (max-width:768px){
  .navin{position:relative;}
  .mobile-lang-switcher{
    display:flex;
    align-items:center;
    gap:7px;
    margin-left:auto;
    margin-right:8px;
    padding:7px 10px;
    border:1px solid var(--line);
    border-radius:999px;
    background:var(--white);
    font-size:.78rem;
    font-weight:800;
    line-height:1;
    white-space:nowrap;
    z-index:60;
  }
  .mobile-lang-switcher a{
    color:var(--ink);
    text-decoration:none;
    font-weight:800;
  }
  .mobile-lang-label{font-weight:900;color:var(--accent-dark);}
  .navin .menu-btn{margin-left:0;}
  /* Keep the desktop language control out of the mobile drawer. */
  .navin > .lang-switch{display:none;}
}

/* v4.2.8 final mobile language */
@media (max-width:768px){
  .mobile-lang-switcher{
    display:flex;
    align-items:center;
    gap:7px;
    flex:0 0 auto;
    margin-left:auto;
    margin-right:8px;
    padding:7px 10px;
    border:1px solid var(--line);
    border-radius:999px;
    background:var(--white);
    font-size:.78rem;
    font-weight:800;
    line-height:1;
    white-space:nowrap;
    z-index:60;
  }
  .mobile-lang-switcher a{
    color:var(--ink);
    text-decoration:none;
    font-weight:800;
  }
  .mobile-lang-switcher .mobile-lang-label{
    color:var(--accent-dark);
    font-weight:900;
  }
  .navin{display:flex;align-items:center;}
  .navin .menu-btn{flex:0 0 auto;}
  .navin > .lang-switch{display:none;}
}

/* ---------- Reservation form (v4.2.8) ---------- */
.reservation-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--ink);
}
.reservation-form input,
.reservation-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  margin-bottom: 12px;
  box-sizing: border-box;
}
.reservation-form input:focus,
.reservation-form textarea:focus {
  outline: 2px solid var(--focus);
  outline-offset: 1px;
}
.reservation-form .cta {
  width: 100%;
  text-align: center;
  border: none;
  cursor: pointer;
  margin-top: 4px;
}
.reservation-form .notice {
  margin-top: 12px;
  font-size: 0.9rem;
}
.reservation-form .notice.success { color: var(--success); }
.reservation-form .notice.error { color: #b42318; }

/* ---------- Menu card images ---------- */
.menu-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.menu-card-image {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--accent-soft);
}
.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.menu-card-body {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.menu-card-body h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}
.menu-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.menu-card-body strong {
  white-space: nowrap;
  color: var(--accent-dark);
  font-weight: 700;
}
.dietary {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.dietary span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

/* WP nav menu as flex links */
.nav .links,
.nav .menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav .links li,
.nav .menu li {
  list-style: none;
  margin: 0;
}
.nav .links a,
.nav .menu a {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

/* Mobile: hide drawer until .open — must beat .nav .links { display:flex } */
@media (max-width: 768px) {
  .nav .links,
  .nav .menu,
  .navin > .links,
  #site-menu.links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    z-index: 55;
  }
  .nav .links.open,
  .nav .menu.open,
  .navin > .links.open,
  #site-menu.links.open {
    display: flex !important;
  }
  .nav .links a,
  .nav .menu a {
    padding: 12px 0;
    width: 100%;
  }
  .nav .links .cta,
  .nav .menu .cta {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }
}

/* ---------- Theme toggle (v4.2.8) ---------- */
.nav-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  position: relative;
  z-index: 70;
  flex: 0 0 auto;
}
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
  z-index: 71;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}
.theme-toggle:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  transform: scale(1.05);
}
.theme-toggle:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}
.image-dish,
.image-dining {
  background-size: cover;
  background-position: center;
  background-color: var(--accent-soft);
  min-height: 280px;
  border-radius: var(--radius);
}
.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
@media (max-width: 768px) {
  .nav-tools {
    order: 2;
    margin-left: 0;
  }
  .theme-toggle {
    width: 36px;
    height: 36px;
  }
}


/* ---------- Greek typography tuning (v4.2.11) ----------
   Greek hero copy is naturally wider/taller than the English
   copy, so the display size is reduced slightly for better
   balance without changing the English layout.
*/
html[lang="el"] .hero h1 {
  font-size: clamp(2.35rem, 5.4vw, 4.35rem);
  line-height: 1.06;
}

html[lang="el"] .pagehero h1 {
  font-size: clamp(2.15rem, 4.9vw, 3.65rem);
  line-height: 1.08;
}

@media (max-width: 768px) {
  html[lang="el"] .hero h1 {
    font-size: clamp(2.05rem, 9vw, 3.1rem);
    line-height: 1.05;
  }

  html[lang="el"] .pagehero h1 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }
}

/* ---------- Final mobile / form polish (v4.2.12) ---------- */
.form-honeypot { position:absolute !important; left:-9999px !important; width:1px !important; height:1px !important; overflow:hidden !important; }
@media (max-width:768px){
  .nav .links,
  .nav .menu,
  .navin > .links,
  #site-menu.links {
    max-height: calc(100dvh - 138px);
    overflow-y: auto;
    padding: 10px 20px 14px;
    gap: 0;
    overscroll-behavior: contain;
  }
  .nav .links a,
  .nav .menu a {
    min-height: 44px;
    padding: 8px 0;
    line-height: 1.25;
  }
  .nav .links .cta,
  .nav .menu .cta {
    min-height: 44px;
    margin-top: 6px;
    padding: 11px 18px !important;
  }
  .reservation-form input,
  .reservation-form select,
  .reservation-form textarea {
    min-height: 46px;
    font-size: 16px;
  }
  .reservation-form textarea { min-height: 100px; }
  .reservation-form .cta { min-height: 48px; }
}
@media (max-width:420px){
  .mobile-lang-switcher { margin-right: 5px; padding-inline: 8px; }
  .theme-toggle { width: 34px; height: 34px; }
  .menu-btn { font-size: 1.45rem; }
}

@media (max-width:768px){ body.menu-open { overflow:hidden; } .reservation-form button[disabled]{opacity:.65;cursor:wait;} }

/* ---------- Easy Customize additions ---------- */

.brand-logo { display:block; }
.brand-logo .custom-logo-link { display:flex; align-items:center; }
.brand-logo .custom-logo { max-height:52px; width:auto; max-width:190px; }
@media (max-width: 700px) {
  .brand-logo .custom-logo { max-height:46px; max-width:155px; }
}
