/* Alandachef — single stylesheet for the whole site */
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/raleway-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Carattere";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/carattere-latin.woff2") format("woff2");
}

:root {
  --green: #2fae3e;
  --green-bright: #40bf4f;
  --ink: #0d3c00;
  --text: #4b4f58;
  --bg: #f6f8f6;
  --white: #ffffff;
  --line: #dde6dd;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(13, 60, 0, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Raleway", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--ink); }

h1, h2, h3 { font-weight: 700; color: var(--ink); line-height: 1.25; margin: 0 0 0.5em; }
h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.center { text-align: center; }
.lead { font-size: 1.1rem; }
.script {
  font-family: "Carattere", cursive;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--green-bright);
  margin: 0 0 0.2em;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
}
.header-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  font-family: "Carattere", cursive;
  font-size: 2rem;
  color: var(--ink);
  line-height: 1;
}
.brand:hover { color: var(--green); }
.nav { display: flex; gap: 4px; flex-wrap: wrap; margin-left: auto; }
.nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a:hover { background: var(--bg); color: var(--ink); }
.nav a.active { background: var(--ink); color: var(--white); }
.langs { display: flex; gap: 2px; }
.langs a {
  padding: 6px 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  border-radius: 8px;
}
.langs a:hover { background: var(--bg); }
.langs a.active { color: var(--green); }

/* hero */
.hero {
  background:
    linear-gradient(rgba(8, 34, 2, 0.72), rgba(8, 34, 2, 0.55)),
    url("/assets/img/private-dining.jpg") center / cover no-repeat;
  padding: 110px 0 120px;
}
.hero h1, .hero .lead { color: var(--white); }
.hero .lead { opacity: 0.92; }
.hero .btn { margin-top: 14px; }
.page-hero {
  background: var(--ink);
  padding: 64px 0 72px;
}
.page-hero h1, .page-hero .lead { color: var(--white); }
.page-hero .lead { opacity: 0.9; }

/* sections */
.section { padding: 72px 0; }
.section.alt { background: var(--white); }
.section .narrow.center { margin-bottom: 40px; }

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding-bottom: 8px;
}
.card h3 { margin: 18px 20px 6px; }
.card p { margin: 0 20px 16px; font-size: 0.97rem; }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-plain { padding: 26px 6px 12px; text-align: center; }
.section.alt .card { box-shadow: 0 6px 22px rgba(13, 60, 0, 0.07); }
.section.alt .card-plain { background: var(--bg); }

.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

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

/* CTA band */
.band {
  background: var(--ink);
  color: var(--white);
  padding: 72px 0;
}
.band h2 { color: var(--white); }
.band p { opacity: 0.9; }

/* buttons */
.btn {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 999px;
  border: 0;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease;
}
.btn:hover { background: var(--ink); color: var(--white); }
.band .btn:hover, .page-hero .btn:hover { background: var(--green-bright); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--green-bright); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--green);
}
.btn-ghost:hover { background: var(--green); color: var(--white); }

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-line { font-size: 1.15rem; font-weight: 600; margin: 0.4em 0; }
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}
.contact-form p { margin: 0 0 16px; }
.contact-form label { display: block; font-weight: 600; color: var(--ink); margin-bottom: 6px; font-size: 0.95rem; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--text);
  background: var(--bg);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: 0;
  border-color: var(--green);
  background: var(--white);
}
.hp { position: absolute; left: -9999px; top: -9999px; }

/* notice page (contact.php responses) */
.notice-wrap { min-height: 60vh; display: flex; align-items: center; }
.notice {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px 38px;
  max-width: 560px;
  margin: 60px auto;
  text-align: center;
}
.notice .script { margin-bottom: 0; }

/* footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 0;
  font-size: 0.95rem;
}
.site-footer a { color: var(--white); }
.site-footer a:hover { color: var(--green-bright); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.brand-footer { color: var(--white); font-size: 1.7rem; margin: 0 0 4px; }
.footer-langs { text-align: right; }

/* responsive */
@media (max-width: 900px) {
  .grid3, .gallery { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .split.reverse .split-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-langs { text-align: center; }
}
@media (max-width: 560px) {
  .grid3 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .hero { padding: 72px 0 80px; }
  .header-bar { gap: 10px; }
  .nav { margin-left: 0; }
}
