/* Importeer een passend lettertype */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;900&display=swap');

/* Kleuren van de afbeelding als CSS variabelen */
:root {
    --roze: #e94486;
    --paars: #9c27b0;
    --blauw: #3f51b5;
    --lichtblauw: #87CEFA;
    --wit: #ffffff;
    --donkerblauw: #1a1a40;
    --glow: #fefefe;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--roze), var(--paars));
    color: var(--wit);
}

h1, h2, h3 {
    font-weight: 900;
    color: var(--glow);
    text-transform: uppercase;
    text-shadow: 2px 2px 5px var(--donkerblauw);
}

h1 {
    font-size: 3rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    border-bottom: 4px solid var(--lichtblauw);
    background: radial-gradient(circle at center, var(--paars), var(--roze));
}

/* Header & Navigatie */
header {
    background-color: rgba(26, 26, 64, 0.9);
    backdrop-filter: blur(10px);
    width: 100%;
    padding: 1rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--lichtblauw);
}

.nav-logo {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--wit);
    text-decoration: none;
    text-shadow: 1px 1px 3px var(--donkerblauw);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--wit);
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--lichtblauw);
}

/* Home Sectie */
#home {
    background: linear-gradient(to bottom right, var(--paars), var(--roze));
    padding-top: 100px;
}

.home-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
}

.poster-image {
    flex: 1;
}

.poster-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.3);
}

.home-content {
    flex: 1;
    color: var(--wit);
}

.home-content h1 {
    color: var(--lichtblauw);
    text-shadow: 2px 2px 0 var(--donkerblauw);
}

.home-content h2 {
    color: var(--wit);
    text-align: left;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.ticket-button {
    display: inline-block;
    background-color: var(--lichtblauw);
    color: var(--donkerblauw);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.ticket-button:hover {
    background-color: var(--wit);
    transform: scale(1.05);
}

/* Foto Galerij Sectie */
#fotos {
    background: linear-gradient(to right, var(--blauw), var(--paars));
}

.content-wrapper {
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

.intro-text {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
}

.foto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.foto-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid var(--wit);
    transition: transform 0.3s ease;
}

.foto-grid img:hover {
    transform: scale(1.05);
}

/* Contact Sectie */
#contact {
    background-color: var(--blauw);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid var(--glow);
    background-color: var(--donkerblauw);
    color: var(--wit);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--donkerblauw);
    color: var(--wit);
    font-size: 0.9rem;
}

/* Responsive Design voor Mobiel */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    nav ul {
        display: none;
    }

    .home-container {
        flex-direction: column;
        text-align: center;
    }

    .home-content h2 {
        text-align: center;
    }
}
