
/* Θάλασσα — Premium Restaurant UI (2026) */
:root{
  --bg: #070a12;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.10);
  --stroke: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --muted2: rgba(255,255,255,.50);
  --brand1:#7dd3fc;
  --brand2:#a78bfa;
  --brand3:#34d399;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --shadow2: 0 12px 40px rgba(0,0,0,.45);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius: 14px;
  --max: 1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 10% 10%, rgba(125,211,252,.22), transparent 55%),
    radial-gradient(900px 700px at 85% 20%, rgba(167,139,250,.18), transparent 55%),
    radial-gradient(900px 700px at 70% 90%, rgba(52,211,153,.14), transparent 55%),
    linear-gradient(180deg, #05070d 0%, #070a12 35%, #04060b 100%);
  min-height:100vh;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
::selection{background:rgba(125,211,252,.35)}

/* Top nav */
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(7,10,18,.82), rgba(7,10,18,.42));
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:12px; min-width:180px}
.brand img{width:170px; height:auto}
.navlinks{display:flex; gap:10px; align-items:center; flex-wrap:wrap; justify-content:flex-end}
.navlinks a{
  padding:10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 650;
  letter-spacing:.1px;
  font-size:14px;
  border:1px solid transparent;
}
.navlinks a:hover{color:var(--text); background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.08)}
.navlinks a.active{color:var(--text); background:rgba(255,255,255,.10); border-color:rgba(255,255,255,.12)}
.navcta{
  display:flex; gap:10px; align-items:center;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 750;
  letter-spacing:.1px;
  box-shadow: none;
}
.btn:hover{background:rgba(255,255,255,.10); border-color:rgba(255,255,255,.18)}
.btn.primary{
  background: linear-gradient(135deg, rgba(125,211,252,.95), rgba(167,139,250,.92));
  color:#08101f;
  border-color: rgba(255,255,255,.10);
}
.btn.primary:hover{filter:brightness(1.05)}
.iconbtn{
  width:42px; height:42px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  display:none;
}
.iconbtn:hover{background:rgba(255,255,255,.10)}
.iconbtn svg{width:20px; height:20px; fill:var(--text)}

/* Mobile drawer */
.drawer{
  display:none;
  position:fixed; inset:0; z-index:80;
  background: rgba(2,3,6,.62);
  backdrop-filter: blur(10px);
}
.drawer .panel{
  position:absolute; right:14px; top:14px; left:14px;
  background: rgba(12,16,28,.88);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding:16px;
}
.drawer .grid{
  display:grid; grid-template-columns:1fr; gap:10px;
}
.drawer a{
  padding:12px 12px; border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: var(--text);
  font-weight: 720;
}
.drawer a:hover{background:rgba(255,255,255,.09)}
.drawer .row{display:flex; justify-content:space-between; align-items:center; margin-bottom:12px}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-weight: 700;
  font-size:12px;
}

/* Hero */
.hero{
  position:relative;
  padding:72px 0 44px;
}
.hero .wrap{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:22px;
  align-items:stretch;
}
.heroCard{
  position:relative;
  border-radius: var(--radius-xl);
  overflow:hidden;
  min-height: 520px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.10);
}
.heroCard .bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  transform: scale(1.05);
}
.heroCard::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(125,211,252,.22), transparent 60%),
    radial-gradient(700px 420px at 80% 30%, rgba(167,139,250,.18), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.65) 60%, rgba(0,0,0,.78) 100%);
}
.heroCard .content{
  position:absolute; inset:0;
  padding:34px 34px 30px;
  display:flex; flex-direction:column; justify-content:flex-end;
  gap:14px;
}
.kicker{
  display:inline-flex; align-items:center; gap:8px;
  color: rgba(255,255,255,.86);
  font-weight: 800;
  letter-spacing:.18em;
  text-transform: uppercase;
  font-size:12px;
}
.kicker .dot{
  width:8px; height:8px; border-radius:999px;
  background: linear-gradient(135deg, var(--brand1), var(--brand2));
  box-shadow: 0 0 0 6px rgba(125,211,252,.10);
}
h1{
  margin:0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 720;
  font-size: clamp(36px, 4.3vw, 58px);
  letter-spacing:.2px;
}
.lead{
  margin:0;
  color: rgba(255,255,255,.80);
  font-weight: 560;
  line-height:1.6;
  max-width: 62ch;
  font-size: 16px;
}
.heroActions{
  display:flex; gap:12px; flex-wrap:wrap;
  margin-top: 6px;
}
.sideStack{
  display:grid; gap:18px;
}
.panelCard{
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.panelCard .pad{padding:20px}
.panelCard h3{margin:0 0 10px; font-size:16px; letter-spacing:.2px}
.panelCard p{margin:0; color:var(--muted); line-height:1.55; font-weight:560}
.row2{display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:14px}
.pill{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  padding:12px;
}
.pill .t{color:var(--muted2); font-weight:700; font-size:12px; letter-spacing:.12em; text-transform:uppercase}
.pill .v{margin-top:6px; font-weight:800}
.pill small{color:var(--muted); font-weight:650}
.hr{
  height:1px; background: rgba(255,255,255,.10);
  margin: 18px 0;
}

/* Sections */
.section{padding: 26px 0 56px}
.sectionTitle{
  display:flex; align-items:flex-end; justify-content:space-between; gap:18px;
  margin: 0 0 16px;
}
.sectionTitle h2{
  margin:0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 720;
}
.sectionTitle p{margin:0; color:var(--muted); max-width: 60ch; line-height:1.6; font-weight:560}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.grid2{display:grid; grid-template-columns:repeat(2,1fr); gap:14px}
.card{
  border-radius: var(--radius-xl);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  overflow:hidden;
  box-shadow: var(--shadow2);
}
.card .img{
  height: 190px; background-size:cover; background-position:center;
}
.card .body{padding:18px}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); line-height:1.6; font-weight:560}
.meta{
  margin-top:12px; display:flex; gap:10px; flex-wrap:wrap;
  color:var(--muted2); font-weight:700; font-size:12px;
}
.chip{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}
.highlight{
  background: linear-gradient(135deg, rgba(125,211,252,.16), rgba(167,139,250,.14));
  border-color: rgba(125,211,252,.22);
}

/* Menu */
.menuGrid{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
.menuSection{
  padding:18px;
}
.menuSection h3{margin:0 0 10px; font-size:16px}
.item{
  display:flex; justify-content:space-between; gap:14px;
  padding:12px 0;
  border-top: 1px dashed rgba(255,255,255,.14);
}
.item:first-of-type{border-top:none}
.item .name{font-weight:800}
.item .desc{color:var(--muted); font-weight:560; margin-top:4px; line-height:1.5}
.price{font-weight:900; color: rgba(255,255,255,.92)}
.note{color:var(--muted2); font-weight:650; font-size:12px; line-height:1.6}

/* Forms */
.form{
  display:grid; gap:12px;
}
.field{display:grid; gap:6px}
label{color:var(--muted); font-weight:700; font-size:13px}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--text);
  outline: none;
}
textarea{min-height:120px; resize:vertical}
input:focus, select:focus, textarea:focus{
  border-color: rgba(125,211,252,.45);
  box-shadow: 0 0 0 6px rgba(125,211,252,.10);
}
.help{color:var(--muted2); font-weight:650; font-size:12px; line-height:1.55}
.split{display:grid; grid-template-columns:1fr 1fr; gap:12px}

/* Gallery */
.gallery{
  display:grid; grid-template-columns: repeat(12, 1fr); gap:12px;
}
.g{
  border-radius: var(--radius-xl);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow2);
  min-height: 180px;
  background-size:cover; background-position:center;
}
.g.big{grid-column: span 7; min-height: 340px}
.g.tall{grid-column: span 5; min-height: 340px}
.g.small{grid-column: span 4; min-height: 220px}

/* Footer */
.footer{
  padding: 28px 0 46px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent);
}
.footgrid{
  display:grid; grid-template-columns: 1.2fr .8fr .8fr; gap:14px;
}
.footer h4{margin:0 0 10px; font-size:14px}
.footer p, .footer a{margin:0; color:var(--muted); font-weight:560; line-height:1.7}
.footer a:hover{color:var(--text)}
.smallprint{margin-top:16px; color:var(--muted2); font-weight:650; font-size:12px}

/* Toast */
.toast{
  position:fixed; left:50%; bottom:16px; transform:translateX(-50%);
  background: rgba(12,16,28,.92);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  color: var(--text);
  font-weight: 750;
  display:none;
  z-index:90;
}

/* Page header */
.pageHero{
  padding: 34px 0 8px;
}
.pageHero .crumb{
  color: var(--muted2);
  font-weight: 700;
  letter-spacing:.1em;
  text-transform: uppercase;
  font-size: 12px;
}
.pageHero h1{font-size: clamp(30px, 3.8vw, 44px)}
.pageHero p{margin:10px 0 0; color:var(--muted); line-height:1.65; font-weight:560; max-width: 72ch}

/* Responsive */
@media (max-width: 980px){
  .hero .wrap{grid-template-columns: 1fr; }
  .heroCard{min-height: 520px}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .menuGrid{grid-template-columns:1fr}
  .footgrid{grid-template-columns:1fr}
  .gallery{grid-template-columns: repeat(6, 1fr)}
  .g.big{grid-column: span 6}
  .g.tall{grid-column: span 6}
  .g.small{grid-column: span 6}
}
@media (max-width: 860px){
  .navlinks, .navcta{display:none}
  .iconbtn{display:inline-flex}
}
