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

/* Kleuren van de poster als CSS variabelen */
:root {
    --oranje: #E89A4E;
    --donkerblauw: #1A434F;
    --geel: #F9D342;
    --creme: #F7EEDA;
    --groen: #36827F;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--donkerblauw);
    color: var(--creme);
}

h1, h2, h3 {
    font-weight: 900;
    color: var(--geel);
    text-transform: uppercase;
}

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(--geel);
}

/* Header & Navigatie */
header {
    background-color: rgba(26, 67, 79, 0.9); /* Donkerblauw met transparantie */
    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(--geel);
}

.nav-logo {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--creme);
    text-decoration: none;
}

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

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

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

/* Home Sectie */
#home {
    background-color: var(--oranje);
    padding-top: 100px; /* Ruimte voor de vaste header */
}

.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(--donkerblauw);
}
.home-content h1 {
    color: var(--creme);
    text-shadow: 2px 2px 0 var(--donkerblauw);
}
.home-content h2 {
    color: var(--donkerblauw);
    text-align: left;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.ticket-button {
    display: inline-block;
    background-color: var(--geel);
    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(--creme);
    transform: scale(1.05);
}


/* Foto Galerij Sectie */
#fotos {
    background-color: var(--donkerblauw);
}

.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(--creme);
    transition: transform 0.3s ease;
}

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

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

.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(--creme);
    background-color: var(--donkerblauw);
    color: var(--creme);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(247, 238, 218, 0.7);
}


/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--donkerblauw);
    color: var(--creme);
    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; /* Simpele aanpassing, kan vervangen worden door een hamburger menu */
    }

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

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