:root {
  --bordeaux: #7a263a;
  --bordeaux-dark: #4a1722;
  --grijs-donker: #232228;
  --grijs-licht: #ece9ef;
  --accent-licht: #f5ccd7;
}
html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: 'Lato', Arial, sans-serif;
  background: var(--grijs-donker);
  color: var(--grijs-licht);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}
h1, h2 {
  color: var(--accent-licht);
}
.hero {
  background: linear-gradient(180deg, var(--bordeaux-dark) 0%, var(--grijs-donker) 100%);
  padding: 3rem 0 2rem 0;
  text-align: center;
  box-shadow: 0 4px 32px #0008;
}
.logos img {
  max-height: 110px;
  filter: drop-shadow(0 2px 16px #0003);
  background: rgba(255,255,255,0.85);
  border-radius: 1.2em;
  padding: 0.5em 1em;
}
.carousel-item img {
  width: 100vw;
  height: 60vw;
  max-height: 520px;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 8px 32px #0008;
  border-bottom: 4px solid var(--bordeaux);
}
@media (max-width: 768px) {
  .carousel-item img {
    height: 50vw;
    max-height: 340px;
  }
  .logos img {
    max-height: 70px;
  }
}
.main-content {
  max-width: 800px;
  margin: 2.5rem auto;
  background: var(--bordeaux-dark);
  border-radius: 1.5em;
  box-shadow: 0 8px 40px #0008;
  padding: 2.5rem 2rem;
  border: 1.5px solid var(--bordeaux);
  flex: 1 0 auto; /* Allow content to grow and push footer down */
}
.footer {
  background: var(--bordeaux);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  margin-top: auto; /* Pushes the footer to the bottom */
  border-top: 1px solid var(--bordeaux-dark);
  box-shadow: 0 -2px 16px #0006;
  font-size: 0.95em;
}
.navbar {
  background-color: var(--bordeaux-dark);
}
.navbar .btn {
  background-color: var(--bordeaux);
  color: #fff;
  font-weight: bold;
  border-radius: 0.5em;
  padding: 0.4em 1em;
  margin-left: 0.5em;
  box-shadow: 0 4px 16px #0008;
}
.navbar .btn:hover {
  background-color: var(--bordeaux-dark);
  color: #fff;
}

/* Bieren pagina stijlen */
.bieren-gallery {
  margin: 1rem 0 3rem 0;
}

.bier-card {
  position: relative;
  cursor: pointer;
  border-radius: 0.8em;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  height: 100%;
}

.bier-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bier-card:hover img {
  transform: scale(1.1);
}

.bier-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  transform: translateY(-5px);
}

.bier-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, var(--bordeaux-dark) 0%, rgba(74, 23, 34, 0.7) 80%, transparent 100%);
  padding: 1.1rem;
  color: white;
  transition: all 0.3s ease;
}

.bier-overlay h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
}

.bier-overlay .small {
  margin: 0;
  opacity: 0.8;
}

/* Modal stijlen */
.bier-modal {
  background-color: var(--bordeaux-dark);
  color: var(--grijs-licht);
  border-radius: 1rem;
  border: 2px solid var(--bordeaux);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.bier-modal .modal-header {
  border-bottom: 1px solid var(--bordeaux);
  padding: 1.2rem 1.5rem;
}

.bier-modal .modal-title {
  color: var(--accent-licht);
  font-family: 'Playfair Display', serif;
  font-weight: bold;
}

.modal-img {
  border-radius: 0.8rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.bier-modal .badge {
  display: inline-block;
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  opacity: 0.8;
  font-weight: normal;
}

/* Grotere modals op XL schermen */
@media (min-width: 1200px) {
  .modal-xl-custom {
    max-width: 1000px;
  }
  
  .modal-img-container {
    max-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .modal-img {
    max-height: 100%;
    object-fit: contain;
  }
}
