/* =========================================================================
   Restaurant Hellas — modern met een Griekse toets
   Kleuren: Egeïsch blauw, wit marmer, antiek goud
   ========================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --blue: #0d50ae;
  --blue-dark: #08305f;
  --blue-deep: #061f3d;
  --gold: #c8a14b;
  --gold-light: #e3c987;
  --cream: #f7f4ec;
  --white: #ffffff;
  --ink: #1d2733;
  --muted: #5e6b78;
  --shadow: 0 18px 50px -20px rgba(6, 31, 61, 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo-text { font-family: 'Cinzel', serif; letter-spacing: 1px; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1180px, 92%); margin: 0 auto; }

/* Griekse meander-rand */
.meander {
  height: 14px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--gold) 0 4px,
    transparent 4px 8px
  );
  opacity: 0.55;
}

/* ----- Knoppen ----------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 14px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-gold { background: var(--gold); color: var(--blue-deep); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid var(--gold-light); }
.btn-outline:hover { background: var(--gold); color: var(--blue-deep); border-color: var(--gold); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* ----- Navigatie --------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  transition: background 0.3s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(6, 31, 61, 0.96);
  padding: 12px 6%;
  box-shadow: 0 8px 30px -12px rgba(0,0,0,0.5);
}
.nav .logo-text {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}
.nav .logo-text span { color: var(--gold-light); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-cta {
  background: var(--gold);
  color: var(--blue-deep);
  padding: 9px 22px;
  border-radius: 2px;
  font-weight: 500;
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover { background: var(--gold-light); }
.nav-links a.nav-takeaway {
  border: 1.5px solid var(--gold-light);
  padding: 8px 18px;
  border-radius: 2px;
}
.nav-links a.nav-takeaway::after { display: none; }
.nav-links a.nav-takeaway:hover { background: var(--gold); color: var(--blue-deep); border-color: var(--gold); }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; }

/* ----- Hero -------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,31,61,0.78) 0%, rgba(8,48,95,0.72) 50%, rgba(6,31,61,0.9) 100%),
    url('../images/HELLAS-1970.jpg') center/cover no-repeat;
  filter: saturate(1.05);
}
.hero-content { position: relative; z-index: 2; padding: 120px 20px 80px; }
.hero .eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-light);
  letter-spacing: 2px;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 1.05;
  margin: 14px 0;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero h1 span { color: var(--gold-light); display: block; font-size: 0.42em; letter-spacing: 6px; margin-top: 10px; }
.hero p.lead {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 1.15rem;
  font-weight: 300;
  color: #e9eef5;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-takeaway { margin-top: 22px; font-size: 1rem; color: #e9eef5; }
.hero-takeaway a { color: var(--gold-light); border-bottom: 1px solid rgba(227,201,135,0.5); padding-bottom: 1px; transition: color 0.2s; }
.hero-takeaway a:hover { color: var(--white); }
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--gold-light); font-size: 0.75rem; letter-spacing: 2px;
  text-transform: uppercase; opacity: 0.85;
}
.scroll-cue::after { content: '⌄'; display: block; font-size: 1.5rem; animation: bob 1.8s infinite; }
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(6px);} }

/* ----- Algemene sectie --------------------------------------------------- */
section { padding: 96px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .kicker {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--blue);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.section-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--blue-dark); }
.section-head .ornament {
  width: 70px; height: 2px; background: var(--gold);
  margin: 18px auto 0; position: relative;
}
.section-head .ornament::before {
  content: '◆'; color: var(--gold); font-size: 0.7rem;
  position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
  background: var(--cream); padding: 0 8px;
}

/* ----- Over / Historiek -------------------------------------------------- */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.about-img { position: relative; }
.about-img img { border-radius: 4px; box-shadow: var(--shadow); filter: grayscale(0.15); }
.about-img .badge {
  position: absolute; bottom: -26px; right: -22px;
  background: var(--blue); color: var(--white);
  width: 130px; height: 130px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; border: 3px solid var(--gold);
  box-shadow: var(--shadow);
}
.about-img .badge strong { font-family: 'Cinzel', serif; font-size: 1.6rem; color: var(--gold-light); }
.about-img .badge span { font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; }
.about-text h3 { color: var(--blue-dark); font-size: 1.6rem; margin-bottom: 8px; }
.about-text p { color: var(--muted); margin-bottom: 16px; }
.about-text .quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.4rem; color: var(--blue);
  border-left: 3px solid var(--gold); padding-left: 18px; margin: 24px 0;
}
.about-text .quote small { display: block; font-size: 0.95rem; color: var(--muted); font-style: normal; margin-top: 6px; }

/* ----- Cijfers ----------------------------------------------------------- */
.stats { background: var(--blue-deep); color: var(--white); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat strong { font-family: 'Cinzel', serif; font-size: 2.6rem; color: var(--gold-light); display: block; }
.stat span { font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; color: #c7d2e0; }

/* ----- Galerij ----------------------------------------------------------- */
.gallery { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid figure { position: relative; overflow: hidden; border-radius: 4px; aspect-ratio: 4/3; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-grid figure:hover img { transform: scale(1.08); }
.gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px; color: var(--white);
  background: linear-gradient(transparent, rgba(6,31,61,0.85));
  font-family: 'Cinzel', serif; font-size: 0.9rem; letter-spacing: 1px;
}

/* ----- Openingsuren + kalender ------------------------------------------- */
.hours { background: var(--white); }
.hours-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.hours-list { list-style: none; }
.hours-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px dashed #d8dde4;
}
.hours-list li.closed { color: var(--muted); }
.hours-list .day { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--blue-dark); }
.hours-list .time { font-weight: 500; }
.hours-list .time.open { color: var(--blue); }
.hours-list .time.dicht {
  color: #a23b3b; font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase;
}
.hours-note {
  margin-top: 22px; padding: 16px 18px; background: var(--cream);
  border-left: 3px solid var(--gold); color: var(--muted); font-size: 0.95rem;
}

/* Kalender */
.calendar { background: var(--white); border: 1px solid #e7e9ee; border-radius: 6px; box-shadow: var(--shadow); overflow: hidden; }
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--blue-dark); color: var(--white); padding: 16px 20px;
}
.cal-head h3 { font-size: 1.1rem; text-transform: capitalize; }
.cal-nav { background: rgba(255,255,255,0.12); border: none; color: var(--white); width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; transition: background 0.2s; }
.cal-nav:hover { background: var(--gold); color: var(--blue-deep); }
.cal-weekdays, .cal-days { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal-weekdays { padding: 12px 14px 4px; }
.cal-weekdays span { text-align: center; font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.cal-days { padding: 6px 14px 18px; gap: 4px; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 0.92rem; border-radius: 50%; cursor: default; position: relative;
}
.cal-day.empty { visibility: hidden; }
.cal-day.open { color: var(--blue-dark); cursor: pointer; font-weight: 500; }
.cal-day.open::after {
  content: ''; position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}
.cal-day.open:hover { background: var(--cream); }
.cal-day.closed { color: #c4cad2; text-decoration: line-through; }
.cal-day.past { color: #d3d7dd; }
.cal-day.selected { background: var(--blue); color: var(--white); }
.cal-day.selected::after { background: var(--gold-light); }
.cal-day.today { box-shadow: inset 0 0 0 1.5px var(--gold); }
.cal-legend { display: flex; gap: 20px; padding: 0 20px 18px; font-size: 0.78rem; color: var(--muted); flex-wrap: wrap; }
.cal-legend span { display: inline-flex; align-items: center; gap: 6px; }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot.open { background: var(--gold); }
.dot.closed { background: #c4cad2; }

/* ----- Reserveren -------------------------------------------------------- */
.reserve { background: var(--blue-deep); color: var(--white); }
.reserve .section-head h2 { color: var(--white); }
.reserve .section-head .kicker { color: var(--gold-light); }
.reserve .section-head .ornament::before { background: var(--blue-deep); }
.reserve-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.reserve-info p { color: #c7d2e0; margin-bottom: 22px; }
.reserve-info .info-line { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.reserve-info .info-line .ic { color: var(--gold-light); font-size: 1.3rem; line-height: 1.4; }
.reserve-info .info-line strong { display: block; font-family: 'Cinzel', serif; font-size: 0.95rem; }
.reserve-info .info-line span { color: #c7d2e0; font-size: 0.95rem; }

.reserve-form {
  background: var(--white); color: var(--ink);
  padding: 36px; border-radius: 6px; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; color: var(--blue-dark); margin-bottom: 7px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #d4d9e0; border-radius: 3px;
  font-family: 'Jost', sans-serif; font-size: 0.95rem; color: var(--ink); background: #fbfcfd;
  transition: border 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(13,80,174,0.12);
}
.field textarea { resize: vertical; min-height: 80px; }
.form-msg { margin-top: 12px; padding: 12px 14px; border-radius: 3px; font-size: 0.9rem; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { background: #e7f5ec; color: #1f7a43; border: 1px solid #b8e0c5; }
.form-msg.err { background: #fbeaea; color: #a23b3b; border: 1px solid #f0c4c4; }

/* ----- Contact ----------------------------------------------------------- */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.contact-card {
  background: var(--white); border-radius: 6px; padding: 36px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 22px;
}
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item .ic {
  flex: 0 0 46px; height: 46px; background: var(--blue); color: var(--gold-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-item strong { font-family: 'Cinzel', serif; color: var(--blue-dark); font-size: 1rem; display: block; margin-bottom: 2px; }
.contact-item span, .contact-item a { color: var(--muted); }
.contact-item a:hover { color: var(--blue); }
.map-wrap { border-radius: 6px; overflow: hidden; box-shadow: var(--shadow); min-height: 340px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ----- Footer ------------------------------------------------------------ */
footer { background: var(--blue-deep); color: #c7d2e0; padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
footer .logo-text { color: var(--white); font-size: 1.6rem; display: inline-block; margin-bottom: 12px; }
footer .logo-text span { color: var(--gold-light); }
footer p { font-size: 0.92rem; max-width: 320px; }
footer h4 { font-family: 'Cinzel', serif; color: var(--white); font-size: 1rem; margin-bottom: 16px; letter-spacing: 1px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; font-size: 0.92rem; }
footer ul li a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; }
.footer-bottom a { color: var(--gold-light); }

/* ----- Responsief -------------------------------------------------------- */
/* Navigatie schakelt iets vroeger naar het hamburgermenu, zodat de knoppen
   (Afhalen + Reserveren) op smallere desktops nooit afgekapt worden. */
@media (max-width: 1024px) {
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; width: 260px;
    flex-direction: column; align-items: flex-start; justify-content: center;
    background: rgba(6,31,61,0.98); padding: 40px; gap: 26px;
    transform: translateX(100%); transition: transform 0.3s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: block; z-index: 101; }
}
@media (max-width: 900px) {
  .about-grid, .hours-grid, .reserve-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-img .badge { right: 20px; }
}
@media (max-width: 560px) {
  section { padding: 70px 0; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .reserve-form { padding: 26px; }
}
