/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff8f0;
  color: #333;
}

/* Navigatie */

.logo a {
  text-decoration: none;
  color: #b45f06; /* or whatever color you're using */
  font-size: 1.5em;
  font-weight: bold;
}

.navbar {
  background-color: #fff8f0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar .container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
  color: #a0522d;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #a0522d;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #d2691e;
}

/* Hero */
.hero {
  background: url('images/hero.png') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  margin-top: 80px;
}

.hero-text {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-text h1 {
  font-size: 4rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  font-style: italic;
}

.cta-button {
  background: #fff;
  color: #a0522d;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.3s ease;
  border: none;
  box-shadow: none;
  text-shadow: none;
}

.cta-button:hover {
  background: #f5e7dc;
}

/* Secties */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

h2 {
  text-align: center;
  color: #a0522d;
  margin-bottom: 40px;
}

/* Menu */
#menu {
  padding: 60px 20px;
  text-align: center;
}

#menu h2 {
  font-size: 2em;
  margin-bottom: 40px;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.menu-items .item {
  background-color: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.menu-items .item:hover {
  transform: scale(1.02);
}

.menu-items img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 12px;
}




/* Contact */
.contact-block {
  background-color: #fff8f0;
  padding: 60px 20px;
}

.contact-content {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 20px;
}

.contact-details {
  flex: 1 1 300px;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.map {
  flex: 1 1 400px;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  background: #f2e6d9;
  color: #555;
}

/* Bestelformulier stijl */
.bestellen-titel {
  text-align: center;
  font-size: 2.8rem;
  color: #a0522d;
  margin-top: 100px;
  margin-bottom: 20px;
}

.bestellen-tekst {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #444;
}

.order-form {
  max-width: 600px;
  margin: 0 auto 60px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}


.order-form label {
  margin-top: 20px;
  font-weight: bold;
  color: #6e4c32;
}

.order-form input,
.order-form select,
.order-form textarea {
  padding: 10px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-top: 5px;
  background: #fff8f0;
}

.order-form button {
  margin-top: 30px;
  padding: 12px;
  font-size: 1.1rem;
  background-color: #a0522d;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.order-form button:hover {
  background-color: #8b4513;
}


/* gallerij stijl */
.galerij-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.foto-kaart {
  background: #fff;
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.foto-kaart:hover {
  transform: scale(1.03);
}

.foto-kaart img {
  width: 100%;
  border-radius: 12px;
  display: block;
}


/* bakker foto stijl */

.bakker-portret {
  max-width: 460px;
  margin: 40px auto 20px;
  background: #fff;
  padding: 16px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  text-align: center;
  border: 2px solid #f3e6d8;
}


.bakker-portret img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.bakker-info {
  margin-top: 14px;
}

.bakker-naam {
  font-size: 1.3rem;
  font-weight: 700;
  color: #a0522d;
  margin-bottom: 4px;
  font-family: 'Segoe UI', sans-serif;
}

.bakker-titel {
  font-size: 1rem;
  color: #6e4c32;
  font-style: italic;
  font-weight: 500;
  margin: 0;
}


/* divider stijl */

.divider {
  border: none;
  height: 2px;
  background-color: #f3e6d8;
  max-width: 200px;
  margin: 30px auto; /* was 60px */
  border-radius: 2px;
  opacity: 0.7;
}



/* mobile stijl */

@media (max-width: 768px) {
  .menu-items {
    grid-template-columns: 1fr;
  }
}
