/* ==================== 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;
}

/* ==================== Kleur ==================== */
:root {
  --primary: #c2410c;
  --accent: #f97316;
  --secondary: #fb923c;
  --light: #fff7ed;
  --dark: #1f2937;
}

/* ==================== Algemene Stijl ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Selawik', 'Segoe UI', system-ui, sans-serif;
  font-size: 10px;                 
  line-height: 1.6;
  color: var(--dark);
  /*background-color: var(--light);*/
  background-color: #F4F4F4;
  font-weight: 400;
}

/* Headings gebruiken Biome */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Biome', 'Segoe UI', system-ui, sans-serif;
  font-weight: 700;
}

/* Alle overige elementen gebruiken Selawik + 10px */
p, a, li, span, div, button, input, textarea, label, 
.menu, .btn, .logo-text, .dropdown-content a {
  font-family: 'Selawik', 'Segoe UI', system-ui, sans-serif;
  font-size: 10px;
}

/* Voor lichtere tekst */
.light-text, .font-light {
  font-weight: 300;
}

/* Font Awesome behouden */
i, .fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands {
  font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands';
}

/* ==================== Mijn Specifieke Stijl ==================== */

header {
  background: rgba(194, 65, 12, 0.96);
  backdrop-filter: blur(12px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.25);
}

.logo {
  font-size: 1.8rem;    
  font-weight: 700;
  color: white;
}

.menu a {
  font-size: 12px;          
  color: white;
  font-weight: 400;
}

.btn {
  font-size: 10px;
  font-weight: 600;
  padding: 14px 32px;
  background: var(--accent);
  color: white;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);
}

h2 {
  font-size: 2.8rem;          
  color: var(--primary);
}

input, textarea {
  font-size: 10px;
}

footer {
  background: var(--primary);
  color: white;
}

/* Media queries  */
@media (min-width: 768px) {
  body {
    font-size: 11px;      
  }
}

/* ==================== PLACEHOLDER PAGE ==================== */
.placeholder-page {
  min-height: 100vh;
  background-color: #F4F4F4 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.logo-container img {
  max-width: 380px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(249, 115, 22, 0.3));
}

body {
  background-color: #F4F4F4;
}

/* Optioneel: grotere TMATO tekst in placeholder */
.tmato-text {
  font-family: 'Biome', system-ui, sans-serif;
  font-size: 5.5rem;
  font-weight: 700;
  color: #f97316;
  letter-spacing: -3px;
  margin: 1rem 0;
}