* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

header {
  background: #0f0f0f;
  color: white;
  padding: 1.2rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  transition: all 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #c89b3c;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.hero {
  background: url("Images/toog.jpg") center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #c59d5f;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

section {
  scroll-margin-top: 100px;
}

.section {
  padding: 4rem 0;
}

.section.light {
  background: #f4f4f4;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.tekst-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  align-items: center;
}

.tekst-grid img {
  width: 100%;
}

.menu-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.locatie {
  grid-column: 1 / -1;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 1rem 0;
  font-size: 12px;
}

.social-link {
  display: inline-block;
  margin-top: 10px;
  color: #c59d5f;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

.social-link:hover {
  opacity: 0.7;
}

.menu-image {
  margin-top: 2rem;
  text-align: center;
}

.menu-image img {
  max-width: 60%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 80px;
  width: auto;
  margin-top: -10px;
  margin-bottom: -10px;
}

/* ========================= */
/* NIEUWE BIER LAYOUT */
/* ========================= */

.bier-lijst {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.bier-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  align-items: start;
  background: #f8f8f8;
  padding: 1.5rem;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bier-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.bier-item img {
  width: 100%;
  max-width: 100px;
  border-radius: 8px;
}

.bier-info {
  text-align: left;
}

.bier-info h3 {
  margin-bottom: 0.3rem;
}

.bier-meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1rem;
}

.bier-blokken {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.bier-blokken p {
  font-size: 0.9rem;
  line-height: 1.4;
}

.bier-extra {
  font-size: 0.85rem;
  color: #555;
}

/* ========================= */

.tekst-grid-reverse {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-template-areas: "image tekst";
  align-items: center;
}

.tekst-grid-reverse img.gevel-img {
  width: 80%;
  grid-area: image;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tekst-grid-reverse .tekst {
  grid-area: tekst;
}

.tekst-grid img.brouwerij-img {
  width: 100%;
}

.tekst-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.bart {
  width: 60%;
  display: block;
  margin: 0 auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

.age-gate {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.age-box {
  background: rgba(15,15,15,0.9);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  color: white;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.age-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.bier-card {
  display: grid;
  grid-template-columns: 140px 1fr; /* GROTER beeld */
  gap: 20px;
  align-items: start;
}

.bier-card img {
  width: 140px;
  height: auto;
  border-radius: 10px;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 768px) {

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

  .hero h2 {
    font-size: 2rem;
  }

  .tekst-grid-reverse,
  .tekst-grid {
    grid-template-columns: 1fr;
  }

  .bier-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bier-item img {
    margin: 0 auto;
  }

  .bier-blokken {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hamburger {
    display: flex;
  }

  nav.active {
    max-height: 400px;
  }

   nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0f0f0f;

    display: flex;
    flex-direction: column;  
    align-items: center;

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  nav a {
    display: block;       
    width: 100%;
    text-align: center;
    padding: 14px 0;
    margin: 0;     
  }
}