/* ========== BASIS STYLING ========== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #470041;
}

header {
    background-color: #ca82bf;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

.logo {
    width: 100px;
    display: block;
    margin: 15px auto 20px auto;
}

.nav-link {
    font-weight: bold;
}

.btn-primary {
    background-color: #a30095;
    border-color: #a30095;
}

.btn-primary:hover {
    background-color: #8e0076;
    border-color: #8e0076;
}

.btn-light {
    background-color: #a30095;
    border-color: #a30095;
    color: #fff;
}

.btn-light:hover {
    background-color: #8e0076;
    border-color: #8e0076;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: #fff;
}

.banner {
    padding: 50px 20px;
    width: 100%;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

h1 {
    margin-bottom: 20px; 
}

.section-bg {
    position: relative;
    width: 100%;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center;
}

.overlay {
    background: rgba(0, 0, 0, 0.5); 
    padding: 50px 20px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#newsletter {
    text-align: center;
    margin-top: 20px;
    color: black;
    background-color: #ca82bf;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#newsletter h2 {
    margin-bottom: 20px;
    color: #470041;
}

.form-control {
    text-align: center; 
}

.form-group {
    text-align: center;
    margin-bottom: 20px;
    max-width: 400px;
    margin: 0 auto 20px auto;
}

label {
    display: block;
    color: #470041;
    font-weight: bold;
    margin-bottom: 5px;
}

footer {
    color: #fff;
    text-align: center;
    padding: 20px;
    background-color: #ca82bf;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event {
    display: flex;
    background-color: #5a005a;
    margin-bottom: 20px;
    overflow: hidden;
}

.event img {
    width: 300px;
    height: auto;
    object-fit: cover;
}

.event-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    text-align: left; 
    color: #fff;
}

.event h2 {
    margin-top: 0;
}

.event p {
    margin: 10px 0;
}

.event-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #a30095;
    color: #fff;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 5px;
    align-self: start;
}

.event-button:hover {
    background-color: #8e0076;
}

.about-us {
    max-width: 1000px;
    margin: 0 auto;
}

.about-us img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    color: #fff;
}

.about-us h2, 
.about-us p, 
.about-us h3 {
    color: #fff; 
}

.about-intro, .about-mission, .about-history, .about-team {
    background-color: #5a005a;
    padding: 20px;
    margin-bottom: 20px;
}

.about-intro h2, .about-mission h2, .about-history h2, .about-team h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.team-member {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #4e004e;
    padding: 10px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.team-member h3 {
    margin: 10px 0;
}

.team-member p {
    margin: 0;
}

.praktische-info-details {
    background-color: #5a005a;
    color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.praktische-info-item h2 {
    color: #ca82bf;
    margin-top: 0;
}

.praktische-info-item p {
    margin-bottom: 15px;
}

.praktische-info-item ul {
    list-style-type: none;
    padding-left: 0;
}

.praktische-info-item ul li {
    margin-bottom: 10px;
}

.contact-section,
.contact-details{
  background: var(--panel);
  padding: 30px;
  margin: 20px auto;
  max-width: 800px;
  border: 1px solid rgba(255,255,255,.06);                 /* zelfde startborder als .card */
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.contact-section:hover,
.contact-details:hover{
  transform: translateY(-6px);                              /* zelfde lift */
  box-shadow: 0 10px 30px rgba(0,0,0,.45);                  /* zelfde shadow */
  border-color: rgba(163,0,149,.35);                        /* paarse rand – zelfde als .card:hover */
}

.contact-section h2,
.contact-details h2{
  color:#fff;
  margin-bottom:20px;
  font-size:1.8rem;
  text-align:center;
}

/* Labels altijd wit en links uitlijnen */
.contact-section label{
  color:#fff !important;
  font-weight:bold;
  margin-bottom:6px;
  display:block;
  text-align:left;
}

/* Inputs en textarea licht, goed leesbaar */
.contact-section .form-control{
  background:#fff;
  color:#000;
  border:1px solid #444;
  border-radius:4px;
  margin-bottom:15px;
}
.contact-section .form-control:focus{
  border-color: var(--accent);
  box-shadow: 0 0 6px rgba(163,0,149,0.4);
  outline:none;
}

/* Verzendknop breed en opvallend */
.contact-section .btn-primary{
  background: linear-gradient(90deg,var(--accent),var(--accent-2));
  border: none;
  width: 100%;
  padding: 12px;
  font-size: 1.05rem;
  font-weight: bold;
}
.contact-section .btn-primary:hover{
  filter: brightness(1.08);
  transform: translateY(-2px);
}

/* Contactgegevens mooi gecentreerd */
.contact-details{ text-align:center; }
.contact-details p{ margin:8px 0; color:var(--text); }
.contact-details strong{ color: var(--accent); }
.contact-details .btn-outline-light{ margin:5px; }
/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .navbar-brand {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .navbar-brand .logo {
        max-width: 150px; 
    }

    .event {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .event img {
        width: 100%;
        height: auto;
    }
    .event-info {
        margin-top: 15px;
    }

    iframe {
        width: 100%;
        height: 300px; 
    }
}

.event img {
    max-width: 100%;
    height: auto;
}

/* ========== WOW-UPGRADE ========== */
:root{
  --bg:#121212;
  --panel:#1e1e1e;
  --text:#f1f1f1;
  --muted:#bdbdbd;
  --accent:#a30095;
  --accent-2:#8e0076;
}

*{ border-radius: 0 !important; }
body{ background:var(--bg); color:var(--text); letter-spacing:.15px; }

.navbar{ background:var(--panel) !important; }
.nav-link{
  position: relative; color:#ddd !important; font-weight:700; text-transform:uppercase;
}
.nav-link::after{
  content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; 
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  transition:width .25s ease;
}
.nav-link:hover, .nav-item.active .nav-link{ color:var(--text) !important; }
.nav-link:hover::after, .nav-item.active .nav-link::after{ width:100%; }

.banner{
  position:relative; isolation:isolate;
}
.banner::before{
  content:""; position:absolute; inset:0; 
  background:linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.65));
  z-index:0;
}
.banner > .container{ position:relative; z-index:1; }
@media (min-width:1024px){
  .banner{ background-attachment: fixed; }
}

.card{
  background:var(--panel) !important; color:#ddd; border:1px solid rgba(255,255,255,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  border-color: rgba(163,0,149,.35);
}
.card-title{ color:#fff; letter-spacing:.5px; }
.card-img-top{ object-fit:cover; }

.btn-primary, .btn-accent, .btn-outline-light:hover{
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  border:1px solid var(--accent);
  color:#fff;
  box-shadow: 0 0 0 rgba(163,0,149,0);
  transition: transform .15s ease, box-shadow .25s ease, filter .25s ease;
}
.btn-primary:hover, .btn-accent:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(163,0,149,.35);
  filter: brightness(1.05);
}
.btn-outline-light{
  color:#fff; border:1px solid #fff; background:transparent;
}

#newsletter{ background:#161616; color:#fff; box-shadow:none; }
#newsletter h2{ color:var(--accent); }

.event-card img{ height: 260px; }

.list-unstyled li{ margin:.35rem 0; color:#ddd; }

footer{ background:var(--panel); color:#aaa; }

.reveal{ opacity:0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view{ opacity:1; transform: translateY(0); }