body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #2442AD;
    color: white;
}

/* HERO */
.hero {
    position: relative;
    height: 500px; /* pas hoogte aan naar wens */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero nav {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    z-index: 10;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* past de afbeelding netjes aan */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); /* donkere overlay over de afbeelding */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

/* NAVBAR LINKS */
.hero nav {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 10;
    font-weight: bold;
}


.hero nav a {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #FA9D07; /* oranje */
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hero nav a:hover {
    background-color: #db8f00; /* donkerder oranje hover */
}

/* LOGOUT KNOP */
.hero nav form button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #FA9D07; /* rode knop */
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hero nav form button:hover {
    background-color: #c0392b;
}

/* Hero afbeelding */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
}
/* GRID */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding: 40px;
}

/* CARDS */
.info-card {
    padding: 20px;
    border-radius: 10px;
}

.outline-card {
    border: 3px solid rgba(255,255,255,0.5);
    height: 300px;
}

.filled-card {
    background: rgba(255,255,255,0.08);
    height: 200px;
}

.small-card {
    background: rgba(255,255,255,0.08);
    margin-top: 20px;
    height: 160px;
}

/* TROPHY */
.trophy-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trophy-section img {
    width: 200px;
}

/* SIGNUP */
.signup-section {
    text-align: center;
    margin: 60px 0;
}

.signup-section h2 {
    font-size: 40px;
    font-weight: normal;
    margin-bottom: 20px;
}

.signup-btn {
    display: inline-block;
    background: #f5a000;
    color: white;
    padding: 18px 60px;
    font-size: 28px;
    text-decoration: none;
    border-radius: 8px;
}

.signup-btn:hover {
    background: #db8f00;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .signup-section h2 {
        font-size: 28px;
    }

    .signup-btn {
        font-size: 22px;
    }
}