/* Basis reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Achtergrondinstellingen */
body {
    background-image: url('../images/stadion1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
}

/* Header en navigatie */
header {
    background-color: green;
    font-family: Arial, Helvetica, sans-serif;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Logo styling */
.logo {
    width: 60px;
    height: auto;
}

/* Zoekbalk styling */
.search-bar {
    width: 200px;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
    font-size: 16px;
    margin-left: auto; /* Zorgt ervoor dat de zoekbalk helemaal naar rechts schuift */
}

/* Navigatiemenu styling */
nav ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    margin-left: 20px;
    padding-left: 0;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: aliceblue;
    text-decoration: none;
    font-size: large;
}

/* Inhoud styling */
main {
    padding: 80px 20px 20px 20px;
    color: #fff;
    text-align: center;
}

/* Overlay styling */
.overlay {
    background-color: rgba(0, 0, 0, 0.6); /* Transparant zwart */
    border-radius: 10px; /* Ronde hoeken */
    padding: 10px; /* Ruimte rondom de tekst */
    margin: 20px auto; /* Zorgt ervoor dat het gecentreerd is */
    max-width: 600px; /* Max breedte van de overlay */
}

.overlay p {
    font-size: 18px; /* Kleinere tekstgrootte */
    font-weight: bold; /* Dikke tekst */
    color: white; /* Witte tekstkleur */
    text-align: center; /* Tekst centreren */
}

/* Sectie styling */
main section {
    margin-bottom: 30px;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

/* Titels in de secties */
main section h2 {
    color: rgb(255, 2, 2);
    font-weight: bold;
    margin: 0;
    padding-bottom: 5px;
}

/* GIF-container styling */
.gif-container {
    display: flex;
    justify-content: center; /* GIF's centreren */
    gap: 20px;
    margin-top: 5px;
    margin-left: 0;
}

/* Styling voor de GIF's */
.gif-container img {
    width: 200px;
    border-radius: 10px;
}

/* Footer styling */
.about-section {
    background-color: rgba(0, 128, 0, 0.8);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
}
