/* ====== HERO ====== */
.restaurant-hero {
  position: relative;
  height: 62vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.restaurant-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 5, 0, 0.35) 0%,
    rgba(10, 5, 0, 0.65) 100%
  );
  z-index: 1;
}

.restaurant-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.restaurant-label {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 0.75em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 5px 18px;
  margin-bottom: 18px;
}

.restaurant-hero-content h1 {
  font-family: "WonderCraft", serif;
  font-size: 4em;
  color: #f5e2c1;
  margin: 0 0 14px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  line-height: 1.1;
}

.restaurant-hero-content p {
  font-family: "Alegreya", serif;
  font-size: 1.3em;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

/* Wave onderkant hero */
.restaurant-wave {
  height: 64px;
  margin-top: -32px;
  position: relative;
  z-index: 10;
}

.restaurant-wave::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-bg);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* ====== PER-RESTAURANT ACHTERGROND ====== */
.deoase-hero           { background-image: url("../../images/restaurant/deoase/deoase_1.png"); background-position: center 30%; }
.boris-hero            { background-image: url("../../images/restaurant/boris/boris_1.png"); }
.bakkerij-hero         { background-image: url("../../images/restaurant/backereikrumel/bk_1.png"); }
.fabula-rest-hero      { background-image: url("../../images/restaurant/fabula/fabula_1.png"); }
.brasserie7-hero       { background-image: url("../../images/restaurant/brasserie7/brasserie_1.png"); }

/* ====== INTRO SECTIE ====== */
.restaurant-intro {
  padding: 64px 24px 56px;
  text-align: center;
  background: var(--color-bg);
}

.restaurant-intro-inner {
  max-width: 720px;
  margin: 0 auto;
}

.restaurant-intro h2 {
  font-family: "WonderCraft", serif;
  font-size: 2.4em;
  color: var(--color-gold);
  margin: 0 0 6px;
}

.restaurant-intro p {
  font-family: "Alegreya", serif;
  font-size: 1.15em;
  color: #3c2b20;
  line-height: 1.9;
  margin: 0;
}

/* ====== HIGHLIGHTS ====== */
.restaurant-highlights {
  padding: 64px 24px 72px;
  background: linear-gradient(135deg, #3a1a06 0%, #5c2d0d 100%);
}

.highlights-titel {
  font-family: "WonderCraft", serif;
  font-size: 2em;
  color: #e8c98a;
  text-align: center;
  margin: 0 0 48px;
}

.highlights-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.highlight-card {
  flex: 1 1 260px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
}

.highlight-icon {
  font-size: 2.4em;
  margin-bottom: 16px;
  line-height: 1;
}

.highlight-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.05em;
  font-weight: 700;
  color: #f5e2c1;
  margin: 0 0 10px;
}

.highlight-card p {
  font-family: "Poppins", sans-serif;
  font-size: 0.88em;
  color: rgba(245, 226, 193, 0.7);
  line-height: 1.65;
  margin: 0;
}

/* ====== GALERIJ ====== */
.restaurant-galerij {
  padding: 72px 24px 88px;
  background: var(--color-bg);
}

.restaurant-galerij-titel {
  font-family: "WonderCraft", serif;
  font-size: 2em;
  color: var(--color-gold);
  text-align: center;
  margin: 0 0 8px;
}

.restaurant-galerij-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.rest-galerij-item {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(60, 30, 10, 0.13);
}

.rest-galerij-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.rest-galerij-item:hover img {
  transform: scale(1.05);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .restaurant-hero {
    height: 52vh;
    min-height: 320px;
  }

  .restaurant-hero-content h1 {
    font-size: 2.8em;
  }

  .restaurant-hero-content p {
    font-size: 1.1em;
  }

  .restaurant-intro {
    padding: 48px 20px 40px;
  }

  .restaurant-intro h2 {
    font-size: 1.9em;
  }

  .restaurant-highlights {
    padding: 48px 20px 56px;
  }

  .highlights-inner {
    flex-direction: column;
  }

  .highlight-card {
    flex: unset;
  }

  .restaurant-galerij {
    padding: 48px 16px 64px;
  }

  .restaurant-galerij-grid {
    grid-template-columns: 1fr;
  }

  .rest-galerij-item img {
    height: 240px;
  }
}
