:root {
    --gold: #dca750;
    --gold-dark: #b88636;
    --green: #376839;
    --green-dark: #1f4220;
    --bg-tint: #181c15;
}

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

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-tint);
    /* Let op: Jouw achtergrond plaatje! */
    background-image: url('background.png'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 22, 15, 0.75);
    z-index: -1;
}

.staff-login {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #ccc;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.staff-login:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.container {
    text-align: center;
    max-width: 900px;
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
}

.logo {
    width: 250px;
    height: auto;
    margin-bottom: -10px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.6));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 2px;
    text-shadow: 3px 5px 15px rgba(0, 0, 0, 0.9);
    margin-bottom: 5px;
}

.title .highlight {
    color: var(--green);
}

.badge {
    background-color: var(--green-dark);
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 6px 20px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: #e0e0e0;
    margin-bottom: 30px;
    text-shadow: 1px 2px 5px rgba(0,0,0,0.9);
}

.ip-box {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--gold);
    padding: 12px 35px;
    border-radius: 50px; /* Mooier afgerond voor deze stijl */
    font-family: monospace;
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 167, 80, 0.15);
}

.ip-box:hover {
    background: rgba(220, 167, 80, 0.15);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 25px rgba(220, 167, 80, 0.3);
}

.ip-box i {
    color: var(--gold);
}

/* NIEUW: De Grote Kaarten Indeling */
.action-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(55, 104, 57, 0.8) 0%, rgba(31, 66, 32, 0.9) 100%);
    border: 2px solid var(--green);
    border-radius: 12px;
    width: 180px;
    height: 140px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.card span {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card:hover {
    background: linear-gradient(135deg, rgba(65, 124, 67, 0.9) 0%, rgba(41, 86, 42, 1) 100%);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.card:hover .card-icon {
    transform: scale(1.15);
}

/* NIEUW: De Info Navigatiebalk */
.info-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.nav-link i {
    color: var(--gold);
    opacity: 0.7;
}

.nav-link:hover {
    color: white;
}

.nav-link:hover i {
    opacity: 1;
}

footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive voor mobiel */
@media (max-width: 650px) {
    .title { font-size: 2.8rem; }
    .logo { width: 200px; }
    
    .action-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 280px;
        height: 100px;
        flex-direction: row;
        gap: 20px;
    }

    .card-icon {
        margin-bottom: 0;
        font-size: 2rem;
    }
    
    .info-nav {
        border-radius: 12px;
        padding: 20px;
    }
}