/* ================= Restaurant Website Theme ================= */

/* ---------- Design tokens ---------- */
:root{
  --color-bg-body: #0f0c08;
  --color-bg-page: #0b0806;
  --color-bg-soft: #15110d;

  --color-text: #f5f1ea;
  --color-muted: rgba(245,241,234,0.75);
  --color-border: rgba(245,241,234,0.14);

  --color-accent: #c8a15a;
  --color-accent-2: #e6c47b;

  --radius-card: 1.25rem;
  --shadow-soft: 0 28px 80px rgba(0,0,0,0.55);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after{
  box-sizing: border-box;
}

body{
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(200,161,90,0.12) 0, #0f0c08 45%, #0b0806 100%);
  color: var(--color-text);
  line-height: 1.6;
}

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

/* ---------- Layout ---------- */
.container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section{ padding: 3.5rem 0; }

.bg-light{
  background: linear-gradient(to bottom, rgba(245,241,234,0.05), rgba(245,241,234,0.02));
  border-top: 1px solid rgba(200,161,90,0.10);
  border-bottom: 1px solid rgba(200,161,90,0.10);
}

.two-cols{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
}

.three-cols{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4{
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.2;
}

h1{ font-size: 2.5rem; }
h2{ font-size: 1.6rem; }
h3{ font-size: 1.25rem; }

p{
  margin: 0 0 0.8rem;
  color: var(--color-muted);
}

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,8,6,0.82);
  border-bottom: 1px solid rgba(200,161,90,0.18);
  backdrop-filter: blur(10px);
}

.nav-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo-link{
  display: inline-flex;
  flex-direction: column;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.logo-sub{
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: rgba(200,161,90,0.95);
}

.main-nav{
  display: flex;
  gap: 0.75rem;
}

.main-nav a{
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.main-nav a:hover{
  background: rgba(200,161,90,0.12);
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-primary{
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  color: #1a120a;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.btn-secondary{
  border: 1px solid rgba(200,161,90,0.35);
  background: rgba(245,241,234,0.04);
}

/* ---------- Hero ---------- */
.hero{
  padding: 4.25rem 0 3.25rem;
  background: radial-gradient(circle at top left, rgba(200,161,90,0.14) 0, #0f0c08 55%);
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker{
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.hero-image img{
  border-radius: 1.75rem;
  box-shadow: 0 30px 90px rgba(0,0,0,0.65);
}

/* ---------- Lists ---------- */
.usp-list{
  list-style: none;
  padding: 0;
}

.usp-list li::before{
  content: "✦ ";
  color: var(--color-accent);
}

/* ---------- Cards ---------- */
.card{
  background: radial-gradient(circle at top left, rgba(200,161,90,0.10), var(--color-bg-soft));
  border: 1px solid rgba(200,161,90,0.20);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.6rem;
  box-shadow: var(--shadow-soft);
}

/* ---------- Footer ---------- */
.site-footer{
  margin-top: 3rem;
  background: linear-gradient(180deg, rgba(11,8,6,0.0) 0%, rgba(11,8,6,1) 100%);
  border-top: 1px solid rgba(200,161,90,0.14);
}

.footer-top{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
  padding: 2.6rem 0;
}

.footer-bottom{
  border-top: 1px solid rgba(200,161,90,0.12);
  padding: 1rem 0;
  font-size: 0.85rem;
  color: rgba(245,241,234,0.65);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .hero-grid,
  .two-cols,
  .three-cols{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  h1{ font-size: 2.05rem; }
  .logo-sub{ display: none; }
}
.alert{
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(200,161,90,0.22);
  background: rgba(245,241,234,0.03);
  margin: 0 0 1rem;
  color: rgba(245,241,234,0.88);
}
.alert-success{
  border-color: rgba(200,161,90,0.35);
}
.alert-error{
  border-color: rgba(255,255,255,0.16);
}
/* ================= Components: Menu + Forms + Footer + Utilities ================= */

/* Utilities */
.mt-lg{ margin-top: 2rem; }
.muted{ color: var(--color-muted); }
.center{ text-align: center; }

/* Section heading spacing */
.section h1{ margin-bottom: 0.9rem; }
.section h2{ margin-top: 0.25rem; }

/* ---------- Menu page ---------- */
.menu-intro{
  max-width: 680px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.menu-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.menu-section{
  border: 1px solid rgba(200,161,90,0.18);
  background: rgba(245,241,234,0.02);
  border-radius: var(--radius-card);
  padding: 1.35rem 1.25rem;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

.menu-section h2{
  font-size: 1.35rem;
  padding-bottom: 0.55rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid rgba(200,161,90,0.22);
}

.menu-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(245,241,234,0.14);
}

.menu-item:last-child{
  border-bottom: none;
}

.menu-item-name{
  font-weight: 600;
  color: rgba(245,241,234,0.92);
}

.menu-item-desc{
  margin-top: 0.2rem;
  font-size: 0.92rem;
  color: var(--color-muted);
  max-width: 52ch;
}

.menu-item-price{
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-accent-2);
}

/* ---------- Forms (contact/reserveren) ---------- */
.form{
  max-width: 520px;
}

.form label{
  display: block;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: rgba(245,241,234,0.9);
}

.form input,
.form textarea,
.form select{
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(200,161,90,0.22);
  font: inherit;
  background: rgba(245,241,234,0.03);
  color: rgba(245,241,234,0.92);
  outline: none;
}

.form textarea{
  min-height: 130px;
  resize: vertical;
}

.form input:focus,
.form textarea:focus,
.form select:focus{
  border-color: rgba(230,196,123,0.85);
  box-shadow: 0 0 0 4px rgba(200,161,90,0.18);
}

.form-hint{
  font-size: 0.88rem;
  color: rgba(245,241,234,0.68);
  margin: 0.25rem 0 1rem;
}

/* Make submit button align nicely */
.form button.btn{
  margin-top: 0.25rem;
}

/* ---------- Card polish everywhere ---------- */
.card h2, .card h3{
  margin-top: 0;
}

/* Openingstijden list (already used in multiple pages) */
.openingstijden{
  list-style: none;
  padding: 0;
  margin: 0;
}
.openingstijden li{
  padding: 0.45rem 0;
  border-bottom: 1px dashed rgba(245,241,234,0.14);
}
.openingstijden li:last-child{ border-bottom: none; }

/* ---------- Footer layout (if you use the new footer.php) ---------- */
.footer-top{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
  padding: 2.6rem 0 2rem;
}

.footer-title{ margin: 0 0 0.5rem; }

.footer-tagline{
  margin: 0 0 1.15rem;
  max-width: 52ch;
  color: rgba(245,241,234,0.78);
}

.footer-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.footer-trust{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-text{ color: rgba(245,241,234,0.78); }

.footer-link{
  color: rgba(245,241,234,0.92);
  border-bottom: 1px dashed rgba(200,161,90,0.45);
}
.footer-link:hover{
  color: rgba(230,196,123,0.95);
  border-bottom-color: rgba(230,196,123,0.85);
}

.footer-bottom{
  border-top: 1px solid rgba(200,161,90,0.12);
  background: rgba(0,0,0,0.18);
}

.footer-bottom-inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 0;
}

.footer-mini{
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: rgba(245,241,234,0.65);
}

.footer-sep{ opacity: 0.6; }

/* Responsive */
@media (max-width: 900px){
  .footer-top{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px){
  .footer-top{ grid-template-columns: 1fr; }
}
.map-wrapper{
  margin-top: 0.75rem;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}
