/* --- 1. Basis & Layout --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-size: cover;
    background-position: center;
    color: #e0e0e0;
    line-height: 1.1; /* Strikt behouden om scrollen te beperken */
    padding: 10px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px 10px 10px 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

/* --- 2. Typografie --- */
h1, h2, h3, strong {
    color: #ffcc00;
}

h1 {
    text-align: center;
    font-size: 1.6rem;
    margin: 10px 0 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 1.5rem;
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.eliminating-line {
    font-size: 0.9rem;
    margin: -5px 0 10px;
}

/* --- 3. Interactie & Knoppen --- */
a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffcc00;
}

button {
    padding: 8px 16px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    background: #ffcc00;
    color: #000;
    cursor: pointer;
}

.home-icon {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: #ffcc00;
    z-index: 1000;
}

/* --- 4. Formulieren & Lijsten --- */
.input-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

select {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    border-radius: 5px;
    border: 1px solid #444;
    background: #333;
    color: #e0e0e0;
}

ul {
    list-style: none;
}

li {
    margin: 2px 0;
    display: flex;
    align-items: center;
}

input[type="checkbox"] {
    margin-right: 8px;
}

.reserve-list li {
    margin: 10px 0;
}

.reserve-list a {
    font-size: 1.2rem;
}

/* --- 5. Informatie Blokken --- */
.bait-info, .fish-info {
    margin: 10px 0 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.bait-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.bait-info li {
    font-size: 1.1rem;
}

/* --- 6. Footer & Support --- */
.support-banner {
    margin-top: 25px;
    padding: 14px;
    background-color: #2b2b2b;
    border-radius: 8px;
    text-align: center;
    line-height: 1.4; /* Enige uitzondering: voorkomt dat tekstregels op mobiel overlappen */
}

.support-banner p {
    font-size: 0.9rem;
    color: #d0d0d0;
}

.support-banner a {
    color: #ffcc00;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 204, 0, 0.3);
}

.footer {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    padding: 10px 0;
    font-size: 0.8rem;
    color: #9a9a9a;
    display: block;
}