/* kleuren van de huisstijl:
   navy  #282D57
   goud  #b8955a
   geel  #FECB14 */

html {
    scroll-behavior: smooth;
}

body{
    margin:0;
    font-family: "Inter", sans-serif;
    color: #333;
    background-color: #F3ECDD;
}
h1, h2, h3 {
    font-family: "Cormorant Garamond", serif;
}

/* kleur als je tekst selecteert */
::selection {
    background: #282D57;
    color: #FECB14;
}

.nav-bar {
    background-color: #282D57;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-bar ul {
    list-style: none;
    margin: 0;
    padding: 0 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* het logo links, de rest van de links rechts */
.nav-bar li.logo-nav {
    margin-right: auto;
}

.nav-logo {
    height: 40px;
    width: auto;
    display: block;
}

.nav-bar li a {
    display: block;
    color: #FECB14;
    text-align: center;
    padding: 20px 20px;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.4s ease;
}

.nav-bar li a:hover {
    color: #b8955a;
}

/* de pagina waar je nu op bent krijgt class="actief" */
.nav-bar li a.actief {
    color: #b8955a;
}


/* ==================== HERO BEGIN ==================== */

/* tekst links, foto rechts */
.info-section {
  display: flex;
  gap: 60px;
  padding: 60px 40px;
  color: #282D57;
}

/* tekst heeft een vaste breedte, dus blijft op zijn plek staan */
.info-text {
  flex: 0 0 420px;
}

.info-text h1 {
  font-size: 60px;
  margin: 0 0 30px;
}

.info-text h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.info-text p {
  margin: 0 0 25px;
  line-height: 1.7;
}

/* links in de hero tekst in dezelfde kleur als de tekst */
.info-text a {
  color: inherit;
  text-decoration: none;
}

.info-text a:hover {
  color: #b8955a;
}

/* Hero - foto rechts: pakt alle overige breedte en is even hoog als de tekst */
.info-photo {
  flex: 1;
  min-width: 0;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.info-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* op kleine schermen foto onder de tekst */
@media (max-width: 800px) {
  .info-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .info-text {
    flex: none;
  }

  .info-photo {
    flex: none;
    height: 300px;
  }
}

/* ==================== HERO EINDE ==================== */


.intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1100px;
  margin: 90px auto;
  padding: 0 24px;
}

.inleiding {
  flex: 1;
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  line-height: 1.6;
  color: #282D57;
}

.inleiding h2 {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 20px;
  position: relative;
}

.inleiding h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #b8955a;
  margin-top: 16px;
}

.afbeelding {
  flex: 1;
}

.afbeelding img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
  display: block;
}

.eten {
  text-align: center;
  color: #282D57;
  max-width: 700px;
  margin: 70px auto 30px;
  padding: 0 24px;
}

.eten h2 {
  font-size: 38px;
  margin-bottom: 10px;
}

/* zelfde gouden streepje als bij de intro, maar dan gecentreerd */
.eten h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #b8955a;
  margin: 16px auto 0;
}

.eten p {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-style: italic;
  color: #55565a;
}

/* ---------- Menu knop ---------- */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 80px;
}

.menu a {
  color: black;
  text-decoration: none;
}

.menu {
  color: black;
  border: 1px solid black;
  background-color: transparent;
  display: inline-block;
  padding: 15px 55px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.menu:hover {
  background-color: #282D57;
  color: #fff;
}

.menu:hover a {
  color: #fff;
}


/* ---------- Foto grid ---------- */
.dinerfotos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px 60px;
}

.dinerfotos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  transition: transform 0.5s ease;
}

.dinerfotos > div {
  overflow: hidden;
  border-radius: 6px;
}

.dinerfotos img:hover {
  transform: scale(1.04);
}

/* dunne gouden streep tussen de secties */
hr {
  border: none;
  border-top: 1px solid rgba(184, 149, 90, 0.5);
  max-width: 1100px;
  width: calc(100% - 48px);
  margin: 0 auto;
}






footer {
  background-color: #282D57;
  color: #FECB14;
  padding: 45px 0 30px;
}

footer .containerfooter {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer .flex-row {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0 0 20px 0;
  padding: 0;
  background: transparent;
  position: static;
  box-shadow: none;
}

footer .flex-row li {
  float: none;
}

footer .flex-row li a {
  color: #FECB14;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0;
  transition: color 0.25s ease;
}

footer .flex-row li a:hover {
  color: #b8955a;
}

footer .flex-row i {
  font-size: 22px;
  cursor: pointer;
  transition: color 0.25s ease;
}

footer .flex-row i:hover {
  color: #b8955a;
}

footer .pfoot {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.7;
}


/* ---------- Reviews ---------- */
.reviews {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px 90px;
  text-align: center;
}

.reviews h2 {
  font-size: 38px;
  color: #282D57;
  margin-bottom: 10px;
}

/* gouden streepje onder de titel, net als de andere secties */
.reviews h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #b8955a;
  margin: 16px auto 0;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 45px;
}

.review-kaart {
  background-color: #fff;
  border-radius: 6px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* scroll animatie: javascript zet de kaarten eerst op 'verborgen'
   en wisselt dat om naar 'zichtbaar' zodra je de sectie in beeld scrolt */
.review-kaart.verborgen {
  opacity: 0;
}

.review-kaart.zichtbaar {
  animation: fadeInUp 0.7s ease both;
}

/* de kaarten verschijnen net na elkaar */
.review-kaart.zichtbaar:nth-child(2) {
  animation-delay: 0.15s;
}

.review-kaart.zichtbaar:nth-child(3) {
  animation-delay: 0.3s;
}

.review-kaart:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.sterren {
  color: #FECB14;
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.review-tekst {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.6;
  color: #55565a;
  margin: 0 0 20px;
  flex: 1;
}

.review-naam {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #282D57;
  margin: 0;
}

/* op kleine schermen onder elkaar */
@media (max-width: 800px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}


/* ---------- Menu pagina ---------- */

/* zelfde hero als de homepage, maar wat lager */
.menu-hero {
  align-items: center;
  background: linear-gradient(rgba(20, 36, 61, 0.45), rgba(20, 36, 61, 0.55)),
    url("../fotos/bonvivantbuitenkant.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  height: 320px;
  width: 100%;
}

.menu-intro {
  text-align: center;
  max-width: 650px;
  margin: 60px auto 40px;
  padding: 0 24px;
}

.menu-intro p {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-style: italic;
  color: #55565a;
}

/* de kaart zelf: dun kader zoals de gedrukte menukaart */
.menukaart {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 50px 60px;
  border: 1px solid #282D57;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 80px;
}

.menu-sectie h2 {
  font-size: 34px;
  font-weight: 600;
  color: #282D57;
  margin: 30px 0 10px;
  position: relative;
}

.menu-sectie h2:first-child {
  margin-top: 0;
}

.menu-sectie h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #b8955a;
  margin-top: 12px;
}

/* naam links, prijs rechts */
.gerecht {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid #ececec;
}

.gerecht:last-child {
  border-bottom: none;
}

.gerecht .naam {
  font-size: 15px;
  color: #333;
}

.gerecht .prijs {
  font-size: 15px;
  color: #282D57;
  white-space: nowrap;
}

/* ---------- Menu des Artistes ---------- */
.menu-artistes {
  max-width: 600px;
  margin: 0 auto 60px;
  padding: 50px 40px;
  border: 1px solid #282D57;
  background-color: #282D57;
  color: #fff;
  text-align: center;
}

.menu-artistes h2 {
  font-size: 40px;
  font-weight: 600;
  color: #FECB14;
  margin: 0 0 5px;
}

.menu-artistes .ondertitel {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 20px;
  margin: 0 0 30px;
  opacity: 0.85;
}

.menu-artistes .gang {
  margin-bottom: 22px;
}

.menu-artistes .gang h3 {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #FECB14;
  margin: 0 0 4px;
}

.menu-artistes .gang p {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  margin: 0;
}

.menu-artistes .artistes-prijs {
  margin-top: 35px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #FECB14;
}

/* op kleine schermen 1 kolom */
@media (max-width: 800px) {
  .menukaart {
    grid-template-columns: 1fr;
    padding: 35px 25px;
    margin-left: 15px;
    margin-right: 15px;
  }

  .menu-artistes {
    margin-left: 15px;
    margin-right: 15px;
  }
}