/* El Greco QR Menu — mobile-first, PDF-inspired, olive/cream palette, serif feel */

:root{
  --bg: #fbf7ee;          /* cream */
  --paper: #fffaf0;
  --ink: #1f2421;
  --muted: #5a615c;
  --olive: #3f5a3a;
  --olive-2: #2f4630;
  --border: rgba(63, 90, 58, 0.18);
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --radius: 16px;

  --serif: ui-serif, "Georgia", "Times New Roman", Times, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  background:
    radial-gradient(1200px 800px at 20% -10%, rgba(63,90,58,0.08), transparent 55%),
    radial-gradient(900px 700px at 120% 10%, rgba(63,90,58,0.06), transparent 55%),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.35;

  /* Reserve space for fixed call bar (set dynamically via JS) */
  padding-bottom: calc(var(--callbar-h, 86px) + env(safe-area-inset-bottom, 0px));
}

a{ color: inherit; text-decoration: none; }

.container{
  max-width: 720px;
  margin: 0 auto;
  padding: 16px;
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 247, 238, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.topbar__inner{
  max-width: 720px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand{ min-width: 0; }
.brand__title{
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 20px;
}
.brand__subtitle{
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.lang{
  display: inline-flex;
  background: rgba(255,250,240,0.85);
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.lang__btn{
  padding: 8px 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-2);
  border-right: 1px solid var(--border);
}
.lang__btn:last-child{ border-right: 0; }
.lang__btn.is-active{
  background: rgba(63,90,58,0.12);
  color: var(--olive-2);
  font-weight: 700;
}

.section{ padding-top: 10px; }
.section__title{
  font-family: var(--serif);
  font-size: 22px;
  margin: 14px 0 14px;
  letter-spacing: 0.2px;
}

.cards{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 100px;
  margin-top: 30px;
}

.card{
  background: linear-gradient(180deg, rgba(255,250,240,0.95), rgba(255,250,240,0.85));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.card:active{
  transform: translateY(1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.card__title{
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin: 0;
}
.card__hint{
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
.card__chev{
  color: var(--olive);
  font-size: 18px;
  flex: 0 0 auto;
}

.back{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,250,240,0.8);
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  color: var(--olive-2);
  font-size: 13px; 
  margin-bottom: 20px;
}

.items{
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,250,240,0.82);
  box-shadow: var(--shadow);
}

.item{
  padding: 14px 14px;
  border-bottom: 1px solid var(--border);
}
.item:last-child{ border-bottom: 0; }

.item__name{
  font-family: var(--serif);
  font-size: 16px;
  margin: 0;
}
.item__meta{
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.notice{
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,250,240,0.9);
}
.notice--error{
  border-color: rgba(140, 40, 40, 0.35);
  color: #6d1f1f;
}

.callbar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  padding: 10px 12px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(251, 247, 238, 0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
}

.callbar__btn{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
  padding: 14px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(63,90,58,0.95), rgba(47,70,48,0.95));
  color: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.10);
}

.callbar__tel{
  font-family: var(--sans);
  font-size: 12px;
  opacity: 0.9;
  letter-spacing: 0.06em;
}
.logo-image{
	width:20%;
}
/* Slightly denser on wider screens */
@media (min-width: 540px){
  .cards{ grid-template-columns: 1fr 1fr; }
  .section__title{ font-size: 24px; }
}
.brand{
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand__logoLink{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,250,240,0.85);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.brand__logo{
  display: block;
  height: 52px;   /* adjust as needed */
  width: auto;
}

.brand__subtitle{
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0; /* reset from previous layout */
  white-space: nowrap;
}


/* Landing actions (Menu / Find us / Call us) */
.lead{
  margin: 6px 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.actions{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
}

.action{
  position: relative;
  display: block;
  padding: 16px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,250,240,0.95), rgba(255,250,240,0.85));
  box-shadow: var(--shadow);
}

.action--primary{
  background: linear-gradient(180deg, rgba(63,90,58,0.14), rgba(255,250,240,0.9));
  border-color: rgba(63, 90, 58, 0.25);
}

.action:active{
  transform: translateY(1px);
}

.action__title{
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.02em;
  margin: 0;
}

.action__meta{
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

.action__chev{
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--olive);
}

.note{
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
.callbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;

  display: flex;              /* δίπλα-δίπλα */
  gap: 8px;                   /* απόσταση μεταξύ κουμπιών */

  padding: 8px;
  background: #fff;
  box-shadow: 0 -2px 8px rgba(0,0,0,.1);
  z-index: 1000;
}

.callbar__btn {
  flex: 1;                    /* ίσο πλάτος */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 10px 8px;
  text-align: center;

  background: #697151;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}

.callbar__tel {
  font-size: 0.85em;
  opacity: 0.85;
}