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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  background-color: #fff;
  color: #111;
  line-height: 1.6;
}

/* --- KLEUREN --- */
:root {
  --goud: #d4af37;
  --zwart: #000;
  --wit: #fff;
  --donkergrijs: #222;
}

/* --- NAVBAR --- */
.navbar {
  background-color: rgba(0, 0, 0, 0.6) !important;
  transition: background-color 0.4s ease-in-out, box-shadow 0.4s;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}

.navbar.scrolled {
  background-color: var(--zwart) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.nav-link {
  color: var(--wit) !important;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--goud) !important;
}

/* --- LOGO --- */
.logo-img {
  height: 68px;
  object-fit: contain;
  padding: 4px 0;
}

/* --- KNOPPEN --- */
.btn-warning {
  background-color: var(--goud);
  border: none;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  background-color: #c29b2f;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* --- HERO --- */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--goud);
  font-size: 2.8rem;
}

.hero p {
  color: #ddd;
  font-size: 1.2rem;
}

/* --- USP BLOKKEN --- */
section h2 {
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--donkergrijs);
}

h5.gold {
  color: var(--goud);
}

/* --- CARDS --- */
.card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* --- BLOCKQUOTES --- */
blockquote {
  background-color: #fff;
  padding: 20px;
  border-left: 5px solid var(--goud);
  font-style: italic;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* --- CTA --- */
.bg-dark .gold {
  color: var(--goud);
}

/* --- FOOTER --- */
footer {
  background-color: #111;
  color: #fff;
}

footer a {
  color: var(--goud);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* --- IMG EQUAL HEIGHT --- */
.img-equal {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* --- FADE-IN SECTIONS --- */
.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  visibility: hidden;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

/* ===== Navbar centreren op mobiel ===== */
@media (max-width: 768px) {
  .navbar {
    justify-content: center !important;
    text-align: center;
  }

  .navbar .container {
    flex-direction: column !important;
    align-items: center !important;
  }

  .navbar-brand {
    margin: 0 auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navbar-toggler {
    margin: 0 auto !important;
    display: block !important;
    position: relative;
    top: 5px;
  }

  .navbar-collapse {
    text-align: center !important;
  }

  .navbar-collapse .nav-item {
    margin: 0.5rem 0;
  }
}


