/* MODERNE MEDITERRANEAN STYLING - ELEGANT WARM PALET */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* About Section with Background and Layout */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('pics/pic1.jpeg') center/cover no-repeat;
  position: relative;
  height: 100vh;
  color: white;
  text-align: left;
  /* Override any conflicting section styles */
  background-color: transparent !important;
}

/* Mobile aanpassing voor about section */
@media (max-width: 768px) {
  .about-section {
    height: auto;
    min-height: 100vh;
    padding: 2rem 0;
  }
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1;
}

.about-content {
  display: flex;
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1400px;
  gap: 2rem;
}

.about-logo {
  flex: 0.8;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 350px;
  padding-left: 2rem;
}

.about-logo-large {
  max-width: 450px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
}

.about-text {
  flex: 2;
  padding: 40px;
  max-width: 700px;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #CD853F;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Reset en algemene instellingen */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #F5F5DC;
  background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 50%, #1A1A1A 100%);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Typography Hiërarchie */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  margin-bottom: 2rem;
  color: #FAFAFA;
}

p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(250, 250, 250, 0.85);
}

/* HEADER - Minimaal en elegant */
.site-header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999; /* Verhoogd naar maximum waarde */
  padding: 1rem 2rem;
  /* Altijd zichtbaar */
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important; /* Voorkom transforms */
  will-change: auto !important; /* Reset will-change */
  backface-visibility: hidden; /* GPU optimization */
}

.site-header * {
  transform: none !important; /* Voorkom transforms op alle children */
  will-change: auto !important;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  z-index: 10; /* Zorg dat header content boven alles ligt */
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  position: relative;
  z-index: 11; /* Hoger dan logo zelf */
}

.logo-link {
  display: inline-block;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 16; /* Verhoogd naar 16 - hoogste z-index */
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo {
  height: 80px;
  width: auto;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: block;
  position: relative;
  z-index: 15; /* Verhoogd naar 15 voor betere visibility */
}

.restaurant-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.restaurant-name .name-link {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.restaurant-name h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #F5F5DC;
  margin: 0;
  letter-spacing: -0.02em;
}

.restaurant-name .subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #CD853F;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.25rem;
  font-weight: 500;
}

/* NAVIGATION - Modern en warm */
nav {
  display: flex;
  flex: 2;
  justify-content: center;
}

.navbar {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.navbar a {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(245, 245, 220, 0.8);
  text-decoration: none;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
  position: relative;
}

.navbar a:hover,
.navbar a.active {
  color: #CD853F;
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #CD853F 0%, #D2691E 100%);
  transition: width 0.3s ease;
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}

.spacer {
  display: none;
}

/* MAIN CONTENT - Full-width moderne layout */
main {
  flex: 1;
  padding-top: 140px; /* Precies na de header - aangepast voor logo visibility */
}

/* SECTIONS - Elegant spacing en full-width */
section {
  padding: 6rem 2rem;
  position: relative;
}

section:nth-child(even) {
  background: #0F0F0F;
}

section:nth-child(odd) {
  background: #0A0A0A;
}

/* Container voor content met max-width */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* ABOUT SECTION */
#about {
  /* Override general section styling */
  background: url('pics/pic1.jpeg') center/cover no-repeat !important;
  padding: 0 !important; /* Remove default section padding */
}

#about p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.25rem;
  line-height: 1.8;
}

/* POPULAIR SECTION */
#populair {
  background: #0A0A0A;
  padding: 8rem 2rem;
  margin-top: 4rem; /* Extra ruimte boven Populair sectie */
}

/* Mobile aanpassing voor populair sectie */
@media (max-width: 768px) {
  #populair {
    margin-top: 6rem; /* Extra ruimte op mobile */
    padding: 6rem 1rem;
  }
}

/* CONTACT SECTION */
#contact {
  background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
}

/* VERWIJDERDE OUDE COLOR CLASSES - Vervangen door directe section styling */

/* CAROUSEL - Moderne styling met grotere afbeeldingen */
.menu-list {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1500px;
  height: 720px;
  position: relative;
  margin: 4rem 0;
  isolation: isolate; /* Isoleer stacking context */
  contain: layout style paint; /* Contain effects binnen carousel */
}

.menu-list li {
  position: absolute;
  list-style: none;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
}

.menu-list li img,
.menu-list li video {
  width: 600px;
  height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease;
  border: 2px solid rgba(205, 133, 63, 0.3);
}

.menu-list li .caption {
  position: absolute;
  bottom: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #F5F5DC;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.menu-list li:hover .caption {
  opacity: 1;
  bottom: -3rem;
}

/* Carousel posities - gemoderniseerd met grotere afbeeldingen */
.selected {
  z-index: 5; /* Verlaagd van 10 naar 5 */
  left: 50%;
  transform: translateX(-50%);
}

.selected img {
  width: 600px;
  height: 420px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(205, 133, 63, 0.5);
}

.selected video {
  width: 600px;
  height: 420px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(205, 133, 63, 0.5);
}

.selected:hover {
  transform: translateX(-50%) translateY(-15px);
}

.prev, .next {
  z-index: 3; /* Verlaagd van 5 naar 3 */
  transform: translateY(40px);
}

.prev {
  left: 25%;
  transform: translateX(-50%) translateY(40px);
}

.next {
  left: 75%;
  transform: translateX(-50%) translateY(40px);
}

.prev img, .next img {
  width: 450px;
  height: 320px;
  opacity: 0.8;
}

.prev:hover img, .next:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.prevLeftSecond, .nextRightSecond {
  z-index: 1; /* Verlaagd van 3 naar 1 */
  opacity: 0.5;
  transform: translateY(60px);
}

.prevLeftSecond {
  left: 10%;
  transform: translateX(-50%) translateY(60px);
}

.nextRightSecond {
  left: 90%;
  transform: translateX(-50%) translateY(60px);
}

.prevLeftSecond img, .nextRightSecond img {
  width: 350px;
  height: 240px;
}

.hideLeft, .hideRight {
  opacity: 0;
  transform: translateY(80px);
}

.hideLeft {
  left: -10%;
}

.hideRight {
  left: 110%;
}

/* CAROUSEL BUTTONS */
.buttons {
  text-align: center;
  margin: 4rem 0;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #CD853F 0%, #D2691E 100%);
  color: #F5F5DC;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 20px rgba(205, 133, 63, 0.4);
  min-width: 140px;
  text-align: center;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #D2691E 0%, #B8860B 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(205, 133, 63, 0.5);
}

/* Specifieke styling voor carousel knoppen */
.carousel-btn {
  width: 140px !important;
  min-width: 140px !important;
  text-align: center !important;
}

#prev, #next {
  width: 140px !important;
  min-width: 140px !important;
  text-align: center !important;
}

/* FOOTER - Minimaal en modern */
footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem 2rem;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-content .socials {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-content .socials a {
  color: rgba(250, 250, 250, 0.7);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-content .socials a:hover {
  color: #CD853F;
}

.footer-content .socials i {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.footer-content .info {
  text-align: right;
}

.footer-content .info p {
  color: rgba(250, 250, 250, 0.6);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  margin: 0.25rem 0;
}

.footer-content .info {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  min-width: 280px;
}

.footer-content .info p {
  margin: 5px 0;
}

.footer-content .socials a {
  display: inline-block;
  margin: 15px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-content .socials a:hover {
  color: #b88e5a;
}

.footer-content .socials i.fa-square-facebook {
  font-size: 1.4rem;
}

.footer-content .socials ul li {
  margin: 0.25rem 0;
  padding: 0;
  line-height: 1;
}

.footer-content .socials ul li a {
  margin: 0;
  padding: 0;
  display: block;
}

.footer-content .opening-hours {
  text-align: right;
}

.footer-content .opening-hours p {
  color: rgba(250, 250, 250, 0.8);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  margin: 0.25rem 0;
}

.footer-content .opening-hours p strong {
  color: #CD853F;
  font-weight: 600;
}


/* RESPONSIVE DESIGN - Mobile First */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    width: 95%;
    text-align: center;
    gap: 1.5rem;
  }
  
  .about-logo {
    min-width: auto;
    padding-left: 0;
    justify-content: center;
  }
  
  .about-logo-large {
    max-width: 250px;
  }
  
  .about-text {
    padding: 20px;
    max-width: none;
    margin-bottom: 3rem; /* Extra margin om overlap te voorkomen */
  }
  
  .about-text p {
    margin-bottom: 1rem; /* Kleinere margin tussen paragrafen */
  }
  
  .header-content {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .logo-section {
    flex-direction: column;
    gap: 0.5rem;
  }
  /* Hide header logo on mobile to save space */
  .site-header .logo-link {
    display: none;
  }
  
  .navbar {
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    width: 100%;
  }
  
  .navbar li {
    flex: 1 1 auto;
    min-width: calc(33.333% - 0.8rem);
    text-align: center;
  }
  
  .navbar a {
    display: block;
    padding: 0.5rem 0.25rem;
    font-size: 0.9rem;
  }
  
  /* Reduce main padding-top on mobile since header logo is hidden */
  main {
    padding-top: 160px;
  }
  
  section {
    padding: 4rem 1rem;
  }
  
  h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .menu-list {
    height: 300px;
  }
  
  .selected img {
    width: 300px;
    height: 200px;
  }
  
  .contact-wrapper form {
    padding: 2rem;
  }
  
  .map {
    height: 300px;
    margin: 0 1rem;
  }
  
  /* Fixed footer layout voor mobile */
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    position: relative;
  }
  
  .footer-content .socials {
    order: 1;
    justify-content: center;
    margin: 0;
  }
  
  .footer-content .info {
    order: 2;
    position: static;
    transform: none;
    text-align: center;
    min-width: auto;
  }
  
  .footer-content .opening-hours {
    order: 3;
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* Tablet responsive */
  .menu-list {
    height: 600px;
  }
  
  .menu-list li img,
  .menu-list li video {
    width: 480px;
    height: 360px;
  }
  
  .selected img {
    width: 600px;
    height: 450px;
  }
  
  .selected video {
    width: 280px;
    height: 500px;
  }
  
  .prev img, .next img,
  .prev video, .next video {
    width: 420px;
    height: 320px;
  }

  .prevLeftSecond img, .nextRightSecond img,
  .prevLeftSecond video, .nextRightSecond video {
    width: 360px;
    height: 270px;
  }
}

@media (max-width: 480px) {
  /* Mobile responsive */
  .navbar {
    gap: 0.5rem;
  }
  
  .navbar a {
    font-size: 0.85rem;
    padding: 0.25rem 0;
  }
  
  /* Extra small screens: slightly more padding than tablet */
  main {
    padding-top: 180px;
  }
  
  section {
    padding: 3rem 1rem;
  }

  /* Menu pagina responsive aanpassingen */
  #full-menu {
    padding: 3rem 0.5rem;
  }

  .menu-category {
    padding: 0 0.5rem;
  }

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

  .menu-grid li {
    min-height: 280px;
  }

  .menu-grid li .menu-front .menu-img,
  .menu-grid li:not(:has(.menu-card)) .menu-img {
    width: 240px;
    height: 200px;
  }

  .menu-grid li .menu-front,
  .menu-grid li .menu-back,
  .menu-grid li:not(:has(.menu-card)) {
    padding: 1rem 0.6rem;
  }
  
  .menu-list {
    height: 520px;
  }
  
  .menu-list li img,
  .menu-list li video {
    width: 420px;
    height: 320px;
  }
  
  .selected img {
    width: 480px;
    height: 360px;
  }
  
  .selected video {
    width: 240px;
    height: 420px;
  }
  
  .prev img, .next img {
    width: 300px;
    height: 210px;
  }

  .prevLeftSecond img, .nextRightSecond img {
    width: 250px;
    height: 170px;
  }
}
@media (max-width: 320px) {
  /* Extra small screens */
  .menu-category .menu-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .menu-grid li {
    min-height: 260px;
  }

  .menu-grid li .menu-front .menu-img,
  .menu-grid li:not(:has(.menu-card)) .menu-img {
    width: 220px;
    height: 180px;
  }

  .menu-category h3 {
    font-size: 1.5rem;
  }
}

/* OUDE CAROUSEL CSS OPGERUIMD - Vervangen door moderne versie hierboven */

/* MENU GRID - Moderne donkere styling voor menu pagina */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 3rem 0;
}

.menu-grid li {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-align: center;
  padding: 1.5rem;
  cursor: default; /* was pointer */
  position: relative;
  height: 350px;
  perspective: 1000px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.menu-grid li:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-color: rgba(212, 175, 55, 0.3);
}

/* Voor menu items zonder flip structuur - maak ze ook clickable */
.menu-grid li:not(:has(.menu-card)) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem 0.8rem;
  min-height: 300px;
  cursor: default; /* was pointer */
  transition: all 0.3s ease;
}

.menu-grid li:not(:has(.menu-card)):hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(205, 133, 63, 0.4);
}

.menu-grid li:not(:has(.menu-card)) .menu-img {
  width: 280px;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.menu-grid li:not(:has(.menu-card)) h4 {
  margin: 1rem 0 0.5rem;
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  color: #FAFAFA;
}

.menu-grid li:not(:has(.menu-card)) p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #CD853F;
}

/* FLIP CARD STYLING - Verbeterde versie */
.menu-grid li .menu-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
  cursor: default;
}

.menu-grid li.flipped .menu-card {
  transform: rotateY(180deg);
}

.menu-grid li .menu-front,
.menu-grid li .menu-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem 0.8rem;
  box-sizing: border-box;
}

.menu-grid li .menu-front {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-grid li .menu-front .menu-img {
  width: 280px;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

/* Utility: rotate specific images 90 degrees to the left */
.rotate-left-90 {
  transform: rotate(-90deg);
  transform-origin: center center;
  display: inline-block;
}

/* Ensure rotated menu images fit their card by swapping dimensions */
.menu-grid li .menu-front .menu-img.rotate-left-90 {
  width: 240px;  /* swap from 280 */
  height: 280px; /* swap from 240 */
}

.menu-grid li .menu-front h4 {
  margin: 1rem 0 0.5rem;
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  color: #FAFAFA;
}

.menu-grid li .menu-front p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #CD853F;
}

.menu-grid li .menu-back {
  background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
  border: 1px solid rgba(205, 133, 63, 0.2);
  color: #FAFAFA;
  transform: rotateY(180deg);
}

.menu-grid li .menu-back h5 {
  color: #CD853F;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
}

.menu-grid li .menu-back .ingredients {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  color: rgba(250, 250, 250, 0.85);
}

/* MENU CATEGORIEËN */
.menu-category {
  margin: 4rem 0;
}

.menu-category h3 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  color: #CD853F;
  text-align: center;
  margin: 0 0 2rem;
  font-weight: 600;
}


/* SPECIFIEKE STYLING VOOR DE VOLLEDIGE MENU PAGINA */
#full-menu {
  max-width: 100% !important; /* Volledige breedte gebruiken */
  width: 100%;
  padding: 6rem 1rem; /* Minder padding voor meer ruimte */
  margin: 0;
}

/* Overschrijf section-container voor menu pagina */
#full-menu .section-container {
  max-width: none;
  width: 100%;
}

/* MENU CATEGORIEËN - VOLLEDIGE BREEDTE LAYOUT */
.menu-category {
  margin-bottom: 4rem;
  padding: 0 1rem; /* Minimale horizontale padding */
  width: 100%;
}

.menu-category h3 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  color: #CD853F;
  text-align: center;
  margin: 0 0 3rem;
  font-weight: 600;
  position: relative;
}

.menu-category h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(135deg, #CD853F 0%, #D2691E 100%);
}

/* MENU GRID - RESPONSIEVE VOLLEDIGE BREEDTE */
.menu-category .menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: none; /* Verwijder max-width beperking */
  justify-items: center;
}

/* Specifieke grid voor eerste sectie (menus) - 4 per regel op desktop */
.menu-category#menus .menu-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Specifieke grid voor losse items - 4 per regel, dan 3 op desktop */
.menu-category#losse-items .menu-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Slimme rij-verdeling voor secties met >7 items */
@media (min-width: 1200px) {
  .menu-category#menus .menu-grid {
    grid-template-columns: repeat(4, 1fr); /* 8 items = 4+4 */
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Losse items heeft 7 items - 4+3 verdeling met goede spacing */
  .menu-category#losse-items .menu-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 kolommen voor betere spacing */
    max-width: 1400px;
    margin: 0 auto;
  }
}

/* Voor losse items sectie met 7 items - 4+3 layout */
@media (min-width: 1200px) {
  .menu-category#losse-items .menu-grid li:nth-child(1),
  .menu-category#losse-items .menu-grid li:nth-child(2),
  .menu-category#losse-items .menu-grid li:nth-child(3),
  .menu-category#losse-items .menu-grid li:nth-child(4) {
    grid-row: 1;
  }
  
  .menu-category#losse-items .menu-grid li:nth-child(5),
  .menu-category#losse-items .menu-grid li:nth-child(6),
  .menu-category#losse-items .menu-grid li:nth-child(7) {
    grid-row: 2;
  }
  
  /* Center de laatste 3 items in het midden */
  .menu-category#losse-items .menu-grid li:nth-child(5) {
    grid-column: 1;
    margin-left: auto;
  }
  .menu-category#losse-items .menu-grid li:nth-child(6) {
    grid-column: 2;
  }
  .menu-category#losse-items .menu-grid li:nth-child(7) {
    grid-column: 3;
    margin-right: auto;
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .menu-category#menus .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .menu-category#losse-items .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-grid li {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: default; /* not clickable */
  perspective: 1000px;
  width: 100%;
  min-height: 320px; /* Vaste minimum hoogte voor consistency */
  display: flex;
  flex-direction: column;
}

/* REVIEWS PAGINA */
.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.review-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  backdrop-filter: blur(2px);
}

.review-item .stars {
  font-size: 1.5rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.review-item p {
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.6;
}

.review-item .reviewer {
  font-weight: 600;
  color: #b88e5a;
  font-size: 0.9rem;
}

/* Extra ruimte voor reviews sectie op mobile */
@media (max-width: 768px) {
  #reviews {
    padding-top: 8rem;
  }
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .logo {
    margin-bottom: 10px;
  }

  .header-content {
    flex-direction: column;
    align-items: center;
  }

  .navbar {
    justify-content: center;
  }

  .content-box {
    padding: 40px 6%;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-content .socials,
  .footer-content .info {
    margin-bottom: 10px;
    text-align: center;
  }
}

/* CONTACT FORM - Modern en elegant */
.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-wrapper form {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

/* Desktop: naast elkaar */
@media (min-width: 769px) {
  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  
  .contact-wrapper form {
    max-width: none;
    margin: 0;
  }
}

#contact label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(250, 250, 250, 0.8);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

#contact input,
#contact textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #FAFAFA;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

#contact input::placeholder,
#contact textarea::placeholder {
  color: rgba(250, 250, 250, 0.5);
}

#contact input:focus,
#contact textarea:focus {
  outline: none;
  border-color: #CD853F;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(205, 133, 63, 0.15);
}

#contact button {
  background: linear-gradient(135deg, #CD853F 0%, #D2691E 100%);
  color: #F5F5DC;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 20px rgba(205, 133, 63, 0.4);
}

#contact button:hover {
  background: linear-gradient(135deg, #D2691E 0%, #B8860B 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(205, 133, 63, 0.5);
}

.map {
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

#contact label {
  font-weight: 500;
  margin-bottom: 6px;
  display: inline-block;
  color: #fff;
}

/* MAIN CONTENT */
main {
  flex: 1;
}
