/* Kleurenpalet en Basis */
:root {
    --terracotta: #bc6c4d;
    --beige-bg: #f4eee8;
    --olive: #6b705c;
    --soft-white: #ffffff;
    --text-dark: #4a4a4a;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--beige-bg);
    color: var(--text-dark);
    text-align: center;
    margin: 0;
    padding: 0;
}

header, main, footer {
    max-width: 600px; /* Iets smaller voor betere leesbaarheid */
    margin: 0 auto;
    padding: 20px;
}

header {
    padding-top: 50px;
    margin-bottom: 30px;
}

/* Typografie */
h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--terracotta);
    margin-bottom: 10px;
}

h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: var(--olive);
    margin-top: 0;
}

.subtitle {
    font-style: italic;
    color: var(--olive);
    margin-top: -10px;
    margin-bottom: 30px;
}

/* De Songtekst "Kaartjes" */
#lyrics .verse {
    background-color: var(--soft-white);
    border-radius: 15px; /* Rondere hoeken voor zachtere look */
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(188, 108, 77, 0.1); /* Warme schaduw */
    border-left: 5px solid var(--terracotta); /* Accentlijn */
    text-align: center; /* Tekst in het midden zingt fijner */
}

#lyrics .verse p {
    margin: 8px 0;
    font-size: 1.2rem;
    font-weight: 400;
}

/* De "Baila" refreinen een tikje anders */
#lyrics .verse:nth-child(even) {
    background-color: #fdfaf6;
    border-left: 5px solid var(--olive);
}

/* Video Sectie */
#aftermovie {
    margin-top: 50px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
}

.video-container {
    border: 8px solid var(--soft-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

footer {
    margin: 50px 0;
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: var(--terracotta);
}
.shout {
    color: #bc6c4d; /* De terracotta kleur uit de foto */
    font-weight: bold;
    text-transform: uppercase;
    font-style: italic;
}

.chorus {
    border-left: 5px solid #6b705c !important; /* Olijfgroen voor het refrein */
    background-color: #fdfaf6 !important;
}

.chorus p {
    font-weight: 500;
}