@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* -----------------------------
   BODY
   ----------------------------- */

body {
  font-family: 'Inter', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
}


/* -----------------------------
   HEADER
   ----------------------------- */

header {
  position: relative;
  background: url('header-background.webp') no-repeat center center;
  background-size: cover;
  padding: 10rem 2rem;
  color: white;
  text-align: left;
}

header h1 {
  font-weight: 700;
  font-size: clamp(1rem, 4vw, 2rem);
}

header p {
  font-size: clamp(0.7rem, 3vw, 1.2rem);
}

.letter-achtergrond {
  background-color: rgba(102, 51, 0, 0.6);
}


/* -----------------------------
   MENU 
   ----------------------------- */

/* Mobiel: toggle via checkbox */
#menu-toggle {
  display: none;
}

/* Menu standaard verborgen (mobile-first) */
.menu {
  display: none;
  position: absolute;
  top: 50px;  
  background-color: rgba(0,0,0,0.8);
  padding: 1rem;
  border-radius: 5px;
  z-index: 25;
  transition: all 0.3s ease;
}

#menu-toggle:checked ~ .menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50px; 
  right: 10px;
  background-color: rgba(0,0,0,0.8);
  padding: 1rem;
  border-radius: 5px;
  z-index: 25;
}

/* --- MENU OP DESKTOP --- */

/* Desktop: toon menu */
@media (min-width: 769px) {
  .menu {
    display: flex;
    position: absolute;
    top: 10px;
    left: 12vw;
    gap: 2rem;
    background-color: rgba(0,0,0,0.6);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    z-index: 20;
  }

  .hamburger {
    display: none; 
  }
}

/* --- MENU OP MOBIEL --- */

/* Hamburger zichtbaar op mobiel */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    user-select: none;
    outline: none;
    width: 30px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    gap: 4px;
    z-index: 30;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffcc66;
    border-radius: 2px;
  }

  .menu-label {
    font-size: 10px;
    color: #FFCC66;
    letter-spacing: 1px;
    width: 30px;         
    text-align: center;
    margin-top: 2px;
  }
}


/* -----------------------------
   LOGO
   ----------------------------- */

.logo {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 10vw;
  max-width: 150px;
  min-width: 50px;
  height: auto;
  z-index: 20;
}


/* -----------------------------
   BUTTONS
   ----------------------------- */

.menubutton {
  color: #ffcc66;
  font-weight: 300;
  font-size: clamp(0.8rem, 1vw, 1rem);
  padding: 0.5rem 1rem;
  text-decoration: none;
}

.button1 {
  background-color: #ffcc66;
  color: #663300;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
}

.button2 {
  background-color: #663300;
  color: #ffcc66;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
}


/* -----------------------------
   MAIN
   ----------------------------- */

main {
  display: block;   
  background: url('main-background.webp') no-repeat center center;
  background-size: cover;
  padding: 1vw 5vw;
  color: white;
  text-align: center;
}


/* -----------------------------
   SECTIONS
   ----------------------------- */

/* Sections */
.section {
  padding: 10px 0;
  border-radius: 10px;
  text-align: center;
}

.section h2 {
  font-weight: 500;
  font-size: clamp(1rem, 4vw, 2rem);
}

.section p {
  font-size: clamp(0.7rem, 3vw, 1.2rem);
  text-align: center;
}

.section .light {
  color: #663300;
  background-color: rgba(255, 204, 102, 0.8);
  overflow: auto;
}

.section .dark {
  color: #ffcc66;
  background-color: rgba(102, 51, 0, 0.8);
  overflow: auto;
}

.section .container {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;   
  justify-content: center;
  gap: 20px;
}

/* Afbeelding links van de tekst */
.float-left {
  float: left;           
  width: 80%;            
  max-width: 500px;      
  min-width: 150px;      
  margin: 1rem 1rem; 
}

/* Responsive, afbeelding onder tekst op kleine schermen */
@media (max-width: 768px) {
  .float-left {
    float: none;         
    display: block;
    width: 100%;         
    margin: 0rem 0rem;
  }
}


/* -----------------------------
   CARDS
   ----------------------------- */

.card {
  color: #663300;
  background-color: #ffcc66;
  border-radius: 10px;
  padding: 0px;
  flex: 1 1 30%;
  width: 30vw;
  max-width: 350px;       
  min-width: 250px;       
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card .title {
  font-size: 1.5em;
  margin: 15px 0;
}

.card p {
  font-size: 1em;
  padding: 5px;
  text-align: left;
}



/* Contactformulier styling */
#contact {
  max-width: 700px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #fdf5e6;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', sans-serif;
}

#contact h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

.form-group {
  margin-bottom: 1.5rem;
}

#contact label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #444;
}

#contact input,
#contact textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
}

#contact input:focus,
#contact textarea:focus {
  border-color: #ff9900;
  outline: none;
  box-shadow: 0 0 5px rgba(255, 153, 0, 0.5);
}

#contact button {
  width: 100%;
  padding: 0.85rem;
  background-color: #ff9900;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contact button:hover {
  background-color: #e68a00;
}

@media (max-width: 600px) {
  #contact {
    padding: 1.5rem;
    margin: 2rem 1rem;
  }

  #contact button {
    padding: 0.75rem;
  }
}





/* -----------------------------
   FOOTER
   ----------------------------- */

footer {
  background-color: #333333;
  color: white;
  text-align: center;
  padding: 20px;
}

footer a {
  color: #f39c12;
  text-decoration: none;
}

/* Tooltip container voor de footer Privacy-link */
footer .tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Tooltip tekst (standaard verborgen) */
footer .tooltip .tooltip-text {
  visibility: hidden;
  width: 50vw;
  max-width: 800px;
  min-width: 300px;
  background-color: rgba(0,0,0,0.9);
  color: #ffffff;
  text-align: left;
  padding: 10px;
  border-radius: 10px;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 100;
  pointer-events: none;
  line-height: 1.4;
  font-size: 0.8rem;
}

/* Tooltip pijl */
footer .tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: rgba(0,0,0,0.9) transparent transparent transparent;
}

/* Tooltip zichtbaar bij hover */
footer .tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}