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

body {
  font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;
  background: linear-gradient(135deg, #4b0d1a 0%, #3a0810 50%, #4b0d1a 100%);
  background-attachment: fixed;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === NAVBAR STYLING === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(59, 9, 18, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 8%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.navbar:hover {
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.2);
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #d4af37;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(212, 175, 55, 0.4);
  transition: transform 0.3s ease;
}

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

.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #ffe6a0);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* === HAMBURGER MENU === */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #d4af37;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #4b0d1a !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 100px;
    gap: 25px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.5);
    z-index: 9999;
  }

  .nav-links.show {
    right: 0;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 10000;
  }

  .hamburger span {
    background-color: #d4af37;
  }
}

/* === LOGO ONDER NAV === */
.onder-logo {
  background: linear-gradient(180deg, #3b0912 0%, #4b0d1a 100%);
  padding: 20px 8%;
  text-align: left;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.onder-logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 15px rgba(212, 175, 55, 0.3));
}

/* === HERO SECTIE (INDEX) === */
.hero {
  text-align: center;
  padding: 80px 10%;
  background: linear-gradient(180deg, #4b0d1a 0%, #3a0810 50%, #5a1420 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero h1 {
  font-size: 3rem;
  color: #ffe6a0;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 3px 3px 12px rgba(212, 175, 55, 0.5);
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #ffe6a0 100%);
  color: #4b0d1a;
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  position: relative;
  z-index: 1;
  display: inline-block;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fff 0%, #ffe6a0 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

/* === LOGO SLIDER === */
.logo-slider {
  overflow: hidden;
  background: #4b0d1a;
  padding: 20px 0;
}

.slider-track {
  display: flex;
  gap: 60px;
  align-items: center;
  width: max-content;
  animation: scroll 70s linear infinite;
}

.logo-slider a {
  display: inline-block;
}

.logo-slider img {
  height: 150px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-slider img:hover {
  transform: scale(1.08);
  filter: brightness(1.1);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* === GENERAL SECTIONS === */
.hero-overons,
.hero-reglement,
.hero-contact,
.hero-opleiding {
  position: relative;
  height: 30vh;
  background: url('overons-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 50px;
}

.hero-overons .overlay {
  position: absolute;
  inset: 0;
  background: rgba(59, 9, 18, 0.75);
}

.hero-overons .hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 0 10px;
}

.hero-overons h1,
.hero-reglement h1,
.hero-contact h1,
.hero-opleiding h1 {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 10px;
  text-shadow: 2px 2px 8px rgba(212, 175, 55, 0.4);
}

.hero-overons p,
.hero-reglement p,
.hero-contact p,
.hero-opleiding p {
  font-size: 1.2rem;
  color: #fff;
}

section {
  padding: 60px 10%;
  background: linear-gradient(180deg, #3a0810 0%, #2a0608 100%);
  border-top: 2px solid rgba(212, 175, 55, 0.2);
  position: relative;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

h2 {
  color: #ffe6a0;
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-weight: 800;
  text-shadow: 2px 2px 10px rgba(212, 175, 55, 0.3);
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, transparent);
  border-radius: 2px;
}

p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* === CARDS === */
.cards {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.card {
  flex: 1;
  min-width: 280px;
  background: linear-gradient(135deg, #5a1420 0%, #4b0d1a 100%);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.5);
}

.card h3 {
  color: #d4af37;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 700;
  text-shadow: 1px 1px 6px rgba(212, 175, 55, 0.3);
  position: relative;
  z-index: 1;
}

.card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

/* === ABOUT SECTION === */
/* === BASIS RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;
  background: linear-gradient(135deg, #4b0d1a 0%, #3a0810 50%, #4b0d1a 100%);
  background-attachment: fixed;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* === NAVBAR STYLING === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(59, 9, 18, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 8%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.navbar:hover {
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.2);
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #d4af37;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(212, 175, 55, 0.4);
  transition: transform 0.3s ease;
}

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

.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #ffe6a0);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #d4af37;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* === HAMBURGER MENU === */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #d4af37;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #4b0d1a !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 100px;
    gap: 25px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.5);
    z-index: 9999;
  }

  .nav-links.show {
    right: 0;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 10000;
  }
}

/* === HERO SECTION === */
.hero-overons {
  position: relative;
  height: 35vh;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%),
              url('overons-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 3px solid rgba(212, 175, 55, 0.4);

}

.hero-overons::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(59, 9, 18, 0.7);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 10px;

}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.hero-overons h1 {
  color: #d4af37;
  margin-bottom: 0px;
  /* text-shadow: 0 0 10px gold;  ← verwijder of comment */
}


.hero-overons p {
  font-size: 1.2rem;
  color: #ffe6a0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

/* === ABOUT SECTION === */
/* === OVER ONS PAGINA === */
.hero-overons {
  position: relative;
  height: 35vh;
  background: url('overons-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-overons .overlay {
  position: absolute;
  inset: 0;
  background: rgba(59, 9, 18, 0.75);
}

.hero-overons .hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 0 15px;
}

.hero-overons h1 {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 10px;
}

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

/* Hoofdtekst */
.overons-content {
  padding: 50px 10%;
}

.overons-text {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.overons-img {
  flex: 1 1 300px;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(212, 175, 55, 0.3);
}

/* === Container layout === */
.overons-container {
  display: flex;                 /* zet elementen naast elkaar */
  align-items: flex-start;       /* tekst iets omhoog (bovenaan uitlijnen) */
  justify-content: center;
  gap: 50px;                     /* ruimte tussen foto en tekst */
  max-width: 1100px;
  margin: 80px auto;             /* centreren met ruimte erboven */
  padding: 0 8%;
}

/* === Tekstgedeelte === */
.overons-tekst {
  flex: 1 1 55%;
  color: #fff;
}

.overons-tekst h2 {
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 15px;
}

.overons-tekst p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* === Foto links === */
.pogigng3-img {
  flex: 1 1 40%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(212, 175, 55, 0.3);
  object-fit: cover;
}

/* === Responsief === */
@media screen and (max-width: 900px) {
  .overons-container {
    flex-direction: column;   /* onder elkaar op mobiel */
    align-items: center;
    gap: 30px;
  }

  .overons-img {
    max-width: 90%;
  }

  .overons-tekst {
    text-align: center;
  }
}


.text-block {
  flex: 2 1 500px;
}

.text-block h2, .text-block h3 {
  color: #d4af37;
  margin-bottom: 10px;
}

.text-block p {
  margin-bottom: 15px;
  color: #fff;
}

.text-block ul {
  list-style: none;
  padding-left: 0;
}

.text-block ul li {
  margin-bottom: 5px;
  color: #ffe6a0;
}

/* Mobiel */
@media (max-width: 768px) {
  .overons-text {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .overons-img {
    max-width: 80%;
  }

  .text-block {
    margin-top: 20px;
  }
}

/* === OVER ONS PAGINA === */
.hero-overons {
  position: relative;
  height: 35vh;
  background: url('overons-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-overons .overlay {
  position: absolute;
  inset: 0;
  background: rgba(59, 9, 18, 0.75);
}

.hero-overons .hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 0 15px;
}

.hero-overons h1 {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 10px;
}

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




.overons h1 {
  color: #d4af37; /* goudkleur */
  font-size: 2.5rem; /* zelfde grootte als andere titles */
  margin-bottom: 20px; /* optionele marge */
}

.reglement h1 {
  color: #d4af37; /* goudkleur */
  font-size: 2.5rem; /* zelfde grootte als andere titles */
  margin-bottom: 20px; /* optionele marge */
}


.footer {
  background: linear-gradient(180deg, #3b0a12 0%, #2a0808 100%);
  text-align: center;
  padding: 20px 0;
  font-size: 0.95rem;
  color: #d4af37;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
}

