/* Kleurenpalet */
:root {
    --pink1: #E18AAA;
    --pink2: #E4A0B7;
    --pink3: #ECBDC4;
    --pink4: #EFCFD4;
    --pink5: #D47D9D; 
}

/* Reset */
body {
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: var(--pink5);
}

/* Hero sectie */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;

    background-image: url('plaatjes/balletzaal.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
/*
.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(240, 176, 215, 0.336);
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 40%;
    background: linear-gradient(to bottom, rgb(233, 171, 192) 0%, rgba(24, 16, 17, 0) 100%);
    z-index: 2;
}
*/
.hero > * {
    position: relative;
    z-index: 3;
}

.logo {
    width: 180px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero h1 {
    color: var(--pink3);
    font-size: 80px;
    margin-bottom: 40px;
}

/* Button */
.home-button {
    background: var(--pink2);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
    transition: 0.2s;
}

.home-button:hover {
    background: var(--pink1);
    transform: scale(1.04);
}

/* Header */
.header-container {
    background: var(--pink2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
    border-bottom: 2px solid var(--pink1);
}

.logo-header img {
    height: 100px;
    cursor: pointer;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    padding: 0;
    margin: 0;
}

.main-nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 14px;
    border-radius: 12px;
    transition: 0.25s;
}

.main-nav a:hover {
    background-color: var(--pink1);
    color: white;
}

/* Social icons */
.socials-header img {
    width: 26px;
    margin-left: 18px;
    filter: brightness(100%);
    transition: 0.3s;
}
.socials-header img:hover {
    filter: brightness(200%);
}

/* Over ons media */
.overons-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.overons-video {
    max-width: 150px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.overons-image {
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Start content */
.start-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.intro-video {
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Ballet stijlen */
.video-styles {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.ballet-styles {
    max-width: 350px;
    background-color: var(--pink4);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-align: left;
}

h2{
   color: #3b2b2b;
; 
}

.ballet-styles h3 {
    color: black;
    margin-bottom: 10px;
}

.ballet-styles ul {
    list-style-type: disc; /* bullets zichtbaar */
    padding-left: 20px;
    margin: 0;
}

.ballet-styles li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: black;
}

html, body {
  height: 100%;
  overflow-y: auto; /* verticale scroll altijd toestaan */
  margin: 0;
  padding: 0;
}


    /* Video vakje */
.video-container {
    width: 250px;             /* smaller vakje voor kleinere video */
    margin: 20px auto 0;      /* centreren en afstand boven */
    padding: 8px;             /* iets minder padding */
    border: 2px solid #ccc;   /* grijze rand */
    border-radius: 12px;      /* afgeronde hoeken */
    box-shadow: 0 3px 8px rgba(0,0,0,0.1); /* lichtere schaduw */
    background-color: #f9f9f9; /* achtergrondkleur */
    text-align: center;       /* video in het midden */
}

.video-container video {
    width: 100%;              /* past de video aan binnen het vakje */
    height: auto;             /* behoudt de verhoudingen */
    border-radius: 8px;       /* afgeronde video-hoeken */
    display: block;
    margin: 0 auto;
}
