/* Algemene instellingen */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #121212;
    color: #f0f0f0;
}

/* Header */
header {
    text-align: center;
    padding: 20px;
    background-color: #001f3f;
    color: #ffcc00;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hoofdgedeelte */
main h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

main p {
    max-width: 800px;
    margin: 10px auto;
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #cccccc; /* Iets lichtere grijstint */
}

header .logo img {
    max-width: 200px;
    height: auto;
    margin-bottom: 10px;
}

/* Navigatie */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: #003366;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #ffcc00;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

nav ul li a.active,
nav ul li a:hover {
    background-color: #ffcc00;
    color: #003366;
}

/* Hoofdsectie */
main {
    padding: 20px;
    max-width: 800px;
    margin: auto;
    background-color: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Film Items */
.film-item {
    background-color: #1a1a1a;
    margin: 15px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: #e0e0e0;
    width: 200px;
    display: inline-block;
}

.film-item img {
    border-radius: 5px;
    margin-bottom: 10px;
    max-width: 100%;
}

.film-item p {
    font-size: 14px;
    color: #cccccc;
    margin: 10px 0;
    text-align: center;
}

.film-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.film-item a {
    text-decoration: none;
    color: white;
    background-color: #00509e;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.film-item a:hover {
    background-color: #003366;
}

/* Formulier Container */
.form-container {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
    max-width: 600px;
}

.form-container h2 {
    color: #ffcc00;
    margin-bottom: 20px;
}

.form-container label {
    display: block;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.form-container input {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: white;
}

.form-container button {
    width: 100%;
    padding: 10px;
    background-color: #00509e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-container button:hover {
    background-color: #003366;
}

/* Stoelen Weergave */
.seating-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.seating-row {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.seat {
    position: relative;
    width: 50px;
    height: 50px;
    background-color: #0074d9;
    color: white;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
}

.seat.taken {
    background-color: #d9534f;
    cursor: not-allowed;
}

.seat input[type="checkbox"] {
    display: none;
}

.seat input[type="checkbox"]:checked + span {
    background-color: #28a745;
    color: white;
    font-weight: bold;
}

.seat span {
    display: inline-block;
    pointer-events: none;
    width: 100%;
    height: 100%;
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
}
/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: #001f3f;
    color: #ffcc00;
    margin-top: 20px;
}
.reviews-container {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
    max-width: 800px;
}

.reviews-container h2 {
    color: #ffcc00;
    margin-bottom: 20px;
    text-align: center;
}

.reviews {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.review-item {
    background-color: #292929;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    width: 300px;
    color: #f0f0f0;
}

.review-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffcc00;
}

.review-item p {
    font-style: italic;
}

.review-item small {
    display: block;
    margin-top: 10px;
    color: #ccc;
}
/* Wacht Animatie */
.loading-container {
    text-align: center;
    margin: 20px auto;
    padding: 20px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top-color: #ffcc00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px auto;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    color: #ffcc00;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    display: block;
}


/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: #001f3f;
    color: #ffcc00;
    margin-top: 20px;
}
