/* === Stijl voor PadelPassie (licht thema) === */

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #f1faff;
    color: #222;
}

/* Navigatie */
nav {
    background-color: #4ea8de;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 18px;
    background-color: #4ea8de;
    border-radius: 18px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #468faf;
}

/* Header */
header {
    background: linear-gradient(to right, #90e0ef, #caf0f8);
    padding: 30px 20px;
    text-align: center;
}

.logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 10px;
}

/* Intro op homepage */
main {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}

main section {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
}

/* Aanmeld-knop op home */
.aanmeld-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #00b4d8;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.aanmeld-link:hover {
    background-color: #0096c7;
}

/* Formulier */
form {
    background-color: white;
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

label {
    display: block;
    margin: 12px 0 5px;
    font-weight: bold;
}

input,
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 12px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #00b4d8;
    box-shadow: 0 0 4px rgba(0, 180, 216, 0.4);
}

/* Checkbox label */
.checkbox-label {
    display: block;
    margin-top: 15px;
    font-size: 14px;
}

/* Knop */
button {
    margin-top: 20px;
    padding: 12px;
    background-color: #00b4d8;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0096c7;
}

/* Footer */
footer {
    background-color: #4ea8de;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: auto;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

.footer-bg {
    background-image: url('images/padel-footer-bg.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    font-weight: bold;
    font-size: 15px;
}

.footer-flex {
    background-color: #4ea8de;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1px; /* afstand tussen tekst en afbeelding */
    padding: 10px 20px;
    height: 100px;
    color: white;
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    flex-wrap: wrap;
}


.footer-text {
    flex: 1;
}

.footer-combi {
    background-color: #4ea8de;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
}

.footer-inner {
    display: flex;
    align-items: center;
    gap: 20px; /* ruimte tussen tekst en afbeelding */
    flex-wrap: wrap;
    max-width: 1000px;
}

.footer-text {
    font-size: 15px;
    font-weight: bold;
    color: white;
}

.footer-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}



