/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #F7F3EC;
  color: #2A2A2A;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* === Typography === */
h1, h2, h3 {
  font-family: 'Merriweather', serif;
  line-height: 1.3;
}

h2 {
  font-size: 2rem;
  color: #7C1F1F;
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.2rem;
  color: #2A2A2A;
}

.section-subtitle {
  color: #666;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* === Layout === */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 5rem 0;
}

section:nth-child(even) {
  background-color: #EDE8DF;
}

/* === Header === */
#site-header {
  background-color: #7C1F1F;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

#site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  gap: 1rem;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.header-name {
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

nav a {
  color: #F7F3EC;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

nav a:hover {
  color: #E8C87A;
}

/* === Hero === */
#hero {
  padding: 0;
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45);
}

.hero-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #7C1F1F 0%, #4A1010 60%, #2A1010 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 4rem 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  color: #F0E9DC;
}

.btn {
  display: inline-block;
  background-color: #B8860B;
  color: #fff;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: background-color 0.2s;
  letter-spacing: 0.03em;
}

.btn:hover {
  background-color: #9A6F09;
}

/* === Over ons === */
#over-ons .inner {
  display: flex;
  gap: 3rem;
  align-items: center;
}

#over-ons .text {
  flex: 1;
}

#over-ons .text p {
  margin-bottom: 1rem;
}

#over-ons .foto {
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.foto-placeholder {
  background: #C8B89A;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7A6A55;
  font-size: 0.9rem;
  font-style: italic;
}

/* === Producten === */
#producten {
  text-align: center;
}

.producten-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.product-card {
  background: #fff;
  border-radius: 6px;
  padding: 2rem 1rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-top: 4px solid #7C1F1F;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.product-card h3 {
  font-size: 1rem;
  font-family: 'Merriweather', serif;
  color: #2A2A2A;
}

/* === Openingstijden === */
#openingstijden .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.tijden-tabel {
  border-collapse: collapse;
  width: 100%;
  margin-top: 1rem;
}

.tijden-tabel tr {
  border-bottom: 1px solid #D5CEBD;
}

.tijden-tabel td {
  padding: 0.6rem 0;
  font-size: 1rem;
}

.tijden-tabel td:first-child {
  font-weight: 700;
  color: #7C1F1F;
  width: 130px;
}

.tijden-tabel .gesloten {
  color: #888;
}

.adres-blok {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

.adres-blok strong {
  display: block;
  color: #7C1F1F;
  font-family: 'Merriweather', serif;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.maps-embed {
  margin-top: 1.5rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.maps-embed iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: none;
}

/* === Recensies === */
#recensies {
  text-align: center;
}

.recensies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: left;
}

.recensie-kaart {
  background: #fff;
  border-radius: 6px;
  padding: 1.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: relative;
}

.recensie-kaart::before {
  content: '\201C';
  font-family: 'Merriweather', serif;
  font-size: 4rem;
  color: #D5CEBD;
  position: absolute;
  top: 0.25rem;
  left: 1rem;
  line-height: 1;
}

.recensie-sterren {
  color: #B8860B;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.recensie-tekst {
  font-size: 0.97rem;
  color: #3A3A3A;
  margin-bottom: 1rem;
  font-style: italic;
}

.recensie-naam {
  font-weight: 700;
  font-size: 0.9rem;
  color: #7C1F1F;
}

.google-badge {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #666;
}

.google-badge a {
  color: #7C1F1F;
  font-weight: 700;
  text-decoration: underline;
}

/* === Galerij === */
#galerij {
  text-align: center;
}

.galerij-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.galerij-item {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #C8B89A;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.galerij-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.galerij-item.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7A6A55;
  font-size: 0.9rem;
  font-style: italic;
}

.facebook-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  background: #1877F2;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background-color 0.2s;
}

.facebook-link:hover {
  background: #1565D8;
}

/* === Contact === */
#contact {
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  text-align: center;
}

.contact-item {
  background: #fff;
  border-radius: 6px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.contact-item h3 {
  font-size: 0.95rem;
  color: #7C1F1F;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}

.contact-item a,
.contact-item p {
  font-size: 1rem;
  color: #2A2A2A;
  word-break: break-word;
}

.contact-item a:hover {
  color: #7C1F1F;
  text-decoration: underline;
}

.tel-groot {
  font-size: 1.4rem;
  font-weight: 700;
  color: #7C1F1F !important;
}

/* === Footer === */
footer {
  background-color: #2A2A2A;
  color: #B0A898;
  text-align: center;
  padding: 2rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.8;
}

footer a {
  color: #E8C87A;
}

footer a:hover {
  text-decoration: underline;
}

/* === Responsive === */
@media (max-width: 768px) {
  h2 {
    font-size: 1.6rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  #over-ons .inner {
    flex-direction: column;
  }

  #openingstijden .inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .producten-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  nav {
    gap: 1rem;
  }

  .header-name {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  nav {
    display: none;
  }

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