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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  background-color: #1E1E1E;
  color: #fff;
  overflow-x: hidden;
}

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

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

/* ========== HERO ========== */
.hero {
  height: 100vh;
  background: url('images/hero.jpeg') center/cover no-repeat;
  position: relative;
  color: #fff;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.35));
  z-index: 1;
  pointer-events: none;
}

/* ========== NAVIGATIE ========== */
.navbar {
  position: absolute;
  top: 40px;
  width: 100%;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  position: absolute;
  left: 10%;
  top: 0;
}

.logo img {
  height: 110px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}

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

.nav-links {
  position: absolute;
  right: 10%;
  top: 35px;
  display: flex;
  align-items: center;
}

.nav-links a {
  margin-left: 2rem;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.nav-links a.active {
  color: #FF6B00;
  border-bottom: 2px solid #FF6B00;
  padding-bottom: 3px;
}

/* ========== HERO CONTENT ========== */
.hero-content {
  position: absolute;
  top: 40%;
  left: 10%;
  z-index: 2;
  text-align: left;
  max-width: 550px;
  animation: fadeIn 1.2s ease forwards;
}

.hero-accent {
  font-size: 1.1rem;
  font-style: italic;
  color: #FF6B00;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  text-shadow: 0 3px 8px rgba(0,0,0,0.7);
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.6;
  text-shadow: 0 2px 5px rgba(0,0,0,0.6);
  margin-bottom: 2rem;
}

/* CTA KNOPPEN */
.btn-primary {
  display: inline-block;
  background-color: #FF6B00;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: background 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #e65e00;
}

.btn-secondary {
  display: inline-block;
  margin-top: 1rem;
  background-color: #FF6B00;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-secondary:hover {
  background-color: #e65e00;
}

/* ========== AANBOD ========== */
.intro {
  background-color: #fff;
  color: #1E1E1E;
  text-align: left;
  padding: 6rem 0;
}

.intro h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
}

.intro-sub {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.intro-item {
  background-color: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

/* Afbeelding */
.intro-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  transition: transform 0.4s ease;
  image-rendering: auto;
  border-bottom: 3px solid #f1f1f1; /* subtiele lijn tussen foto en tekst */
}

.intro-item:hover img {
  transform: scale(1.05);
}

/* Tekstblok */
.intro-item-content {
  padding: 1.6rem 1.5rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Titel */
.intro-item h3 {
  color: #111;
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 1.4rem; /* meer lucht boven het kopje */
  margin-bottom: 0.7rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

/* Paragraaf */
.intro-item p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Hover effect */
.intro-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10); 
}

.intro-item:hover h3 {
  color: #FF6B00;
}

/* Responsiveness */
@media (max-width: 768px) {
  .intro {
    padding: 4rem 0;
  }

  .intro-item img {
    height: 160px;
  }

  .intro-item-content {
    padding: 1.4rem 1.2rem 1.5rem;
  }
}


/* CONTACT  */
.contact {
  background: linear-gradient(180deg, #fff 0%, #f4f4f4 100%);
  color: #111;
  padding: 6rem 0;
  text-align: left;
}

.contact h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
  text-align: left;
}

.contact-sub {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  text-align: left;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
  color: #FF6B00;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: left;
}

.contact-item p,
.contact-item li {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  text-align: left;
}

.openingstijden {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.openingstijden span {
  display: inline-block;
  width: 120px;
  font-weight: 600;
  color: #111;
}

.openingstijden-info {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.5rem;
  text-align: left;
}

.openingstijden-info a {
  color: #FF6B00;
  text-decoration: none;
}

.openingstijden-info a:hover {
  text-decoration: underline;
}

/* Knopstijl */
.btn-secondary {
  display: inline-block;
  margin-top: 1.2rem;
  background-color: #FF6B00;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  background-color: #e65e00;
  transform: scale(1.05);
}

/* Responsiveness */
@media (max-width: 768px) {
  .contact h2,
  .contact-sub,
  .contact-item,
  .openingstijden-info {
    text-align: left;
  }

  .openingstijden span {
    width: auto;
    display: block;
  }
}

.social-icons {
  margin-top: 1rem;
  display: flex;
  gap: 1.2rem;
}

.social-icons a {
  font-size: 1.5rem;
  color: #FF6B00;
  transition: color 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover {
  color: #e65e00;
  transform: scale(1.1);
}

/* WhatsApp specifieke kleur (optioneel, iets groener accent) */
.social-icons a[aria-label="WhatsApp"]:hover {
  color: #25D366; /* WhatsApp groen */
}


/* ========== FOOTER ========== */
.footer {
  background-color: #111;
  color: #bbb;
  padding: 1.5rem 8%;
  border-top: 2px solid #FF6B00;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: left;
  gap: 1rem;
}

.footer-left p {
  margin: 0;
  line-height: 1.5;
  color: #ccc;
}

.footer-center {
  text-align: center;
  flex: 1;
}

.footer-center .privacy-link {
  color: #FF6B00;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.3rem;
  transition: color 0.3s ease;
}

.footer-center .privacy-link:hover {
  color: #fff;
}

.footer-note {
  color: #888;
  font-style: italic;
  font-size: 0.85rem;
}

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

.footer-right .madeby {
  font-size: 0.85rem;
  color: #777;
  font-style: italic;
  letter-spacing: 0.3px;
}

/* Responsief */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .footer-left, .footer-right {
    text-align: center;
  }
}




/* ANIMATIES */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== PRIVACY PAGINA ========== */
.privacy-page {
  background: #f4f4f4;
  color: #222;
}

.privacy-section {
  padding: 8rem 1rem 6rem;
}

.privacy-card {
  background: #fff;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.privacy-card h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}

.privacy-card .intro-text {
  color: #444;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.privacy-card h2 {
  color: #FF6B00;
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.privacy-card h3 {
  color: #222;
  font-size: 1.15rem;
  margin-top: 1.4rem;
}

.privacy-card a {
  color: #FF6B00;
  text-decoration: none;
}

.privacy-card a:hover {
  text-decoration: underline;
}

.privacy-card .update {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #777;
  text-align: right;
}

.simple-nav {
  background: #111;
  padding: 1rem 0;
  position: relative;
  z-index: 10;
}

.simple-nav .logo img {
  height: 80px;
  margin-left: 10%;
}


/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .logo img {
    height: 90px;
  }

  .hero-content {
    top: 44%;
    left: 8%;
  }

  .nav-links {
    right: 8%;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-content {
    top: 38%;
    left: 6%;
    max-width: 90%;
  }

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

  .hero-sub {
    font-size: 1rem;
  }

  .intro {
    padding: 4rem 0;
  }

  .contact {
    padding: 4rem 0;
  }
}
