/* ==================== BIOME (voor headings) ==================== */
@font-face {
  font-family: 'Biome';
  src: url('../includes/ttf/Biome W01 Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Biome';
  src: url('../includes/ttf/Biome W01 Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* ==================== SELAWIK (secundair font voor alle non-headings) ==================== */
@font-face {
  font-family: 'Selawik';
  src: url('../includes/ttf/selawk.ttf') format('truetype');   /* Regular */
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Selawik';
  src: url('../includes/ttf/selawkl.ttf') format('truetype');  /* Light */
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Selawik';
  src: url('../includes/ttf/selawksl.ttf') format('truetype'); /* Semilight (optioneel) */
  font-weight: 350;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Selawik';
  src: url('../includes/ttf/selawksb.ttf') format('truetype'); /* Semibold */
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Selawik';
  src: url('../includes/ttf/selawkb.ttf') format('truetype');  /* Bold */
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


:root {
  --primary: #c2410c;
  --accent: #f97316;
  --secondary: #fb923c;
  --light: #fff7ed;
  --dark: #1f2937;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Selawik', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
}

/* Zorg dat alle elementen het nieuwe font gebruiken */
h1, h2, h3, h4, h5, h6,
p, a, li, span, div,
button, input, textarea,
label, .btn, .logo, .menu {
  font-family: 'Selawik', 'Segoe UI', system-ui, sans-serif;
}

/* Formulier elementen */
input, 
textarea, 
button,
select {
  font-family: 'Selawik', 'Segoe UI', system-ui, sans-serif;
}

/* Font Awesome icons behouden */
i, .fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands {
  font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands';
}

header {
  background: rgba(194, 65, 12, 0.95);   /* aangepast naar nieuwe primary */
  backdrop-filter: blur(12px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.15);   /* aangepast naar accent */
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo i {
  color: var(--accent);
}

.menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.menu li {
  position: relative;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.menu a:hover {
  color: var(--accent);
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  overflow: hidden;
  padding: 8px 0;
  z-index: 100;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: var(--dark);
  padding: 12px 20px;
  display: block;
  transition: all 0.3s;
}

.dropdown-content a:hover {
  background: var(--accent);
  color: white;
  padding-left: 25px;
}

.hero {
  height: 60vh;
  background: url('../images/workbench.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 80px;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: white;                    /* beter contrast met nieuwe accent kleur */
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
  background: var(--secondary);
}

section {
  padding: 100px 0;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary);
}

/* Styling voor afbeeldingen in de diensten sectie */
.placeholder-img img {
  width: 20em;
  height: 20em;
  object-fit: contain;
  border-radius: 25%; 
  transition: transform 0.3s ease;
}

/* Hover effect voor afbeeldingen */
.placeholder-img:hover img {
  transform: scale(1.1);
  border-radius: 25%;
}

.placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
  padding: 1rem;
}

.placeholder-img.vertical {
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 768px) {
  .placeholder-img img {
    width: 14em;
    height: 14em;
  }
  
  .placeholder-img {
    padding: 0.8rem;
  }
}

@media (max-width: 480px) {
  .placeholder-img img {
    width: 10em;
    height: 10em;
  }
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

input,
textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: border 0.3s;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
}

footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 60px 20px 30px;
}

.socials a {
  color: white;
  font-size: 1.6rem;
  margin: 0 15px;
  transition: color 0.3s;
}

.socials a:hover {
  color: var(--accent);
}

.logo-img {
  height: 50px !important;
  width: auto !important;
  min-height: 50px;
  max-height: 50px;
  object-fit: contain;
  border-radius: 12px;
}

/* Mobiele navigatie - optimale afstand */
@media (max-width: 768px) {
  .menu {
    gap: 1rem;
  }
  
  .menu a {
    font-size: 0.9rem;
    white-space: nowrap;
  }
  
  .dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  
  .dropdown > a i {
    font-size: 0.7rem;
  }
}

@media (max-width: 600px) {
  .menu {
    gap: 0.9rem;
  }
  
  .menu a {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .menu {
    gap: 0.8rem;
  }
  
  .menu a {
    font-size: 0.8rem;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .menu {
    gap: 1.2rem;
  }
  
  .menu a {
    font-size: 0.95rem;
  }
}

    /* ==================== SPECIFIEKE PLACEHOLDER STYLING ==================== */
    .placeholder-page {
      min-height: 100vh;
      background-color: #F4F4F4;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem 1rem;
      font-family: 'Selawik', 'Segoe UI', system-ui, sans-serif;
    }

    .placeholder-content {
      max-width: 820px;
      text-align: center;
    }

    .logo-container {
      margin-bottom: 2.5rem;
    }

    .logo-container img {
      max-width: 420px;
      border-radius: 10px;
      width: 100%;
      height: auto;
      filter: drop-shadow(0 15px 40px rgba(249, 115, 22, 0.25));
    }

    .tmato-logo {
        display: flex; 
        align-items: center;  
        justify-content: center;
    }

    .tmato-big {
      font-family: 'Biome', system-ui, sans-serif;
      font-size: 6.5rem;
      font-weight: 700;
      color: #f97316;
      letter-spacing: -4px;
      margin: 0.5rem 0 0.8rem;
      line-height: 1;
    }
    .tmato-big-black {
      font-family: 'Biome', system-ui, sans-serif;
      font-size: 6.5rem;
      font-weight: 700;
      color: #000;
      letter-spacing: -4px;
      margin: 0.5rem 0 0.8rem;
      line-height: 1;
    }

    .coming-soon {
      font-family: 'Biome', system-ui, sans-serif;
      font-size: 2.6rem;
      font-weight: 700;
      color: #c2410c;
      margin-bottom: 1.2rem;
      line-height: 1.1;
    }

    .description {
      font-size: 1.05rem;
      color: #444;
      max-width: 560px;
      margin: 0 auto 2.5rem;
      line-height: 1.7;
    }

    .tagline {
      font-size: 1.1rem;
      color: #666;
      margin-top: 2rem;
      font-weight: 300;
    }

    .tomato-emoji {
      font-size: 3.5rem;
      margin: 1.5rem 0;
      display: block;
    }