/* =========================
   BODY / ALGEMEEN
========================= */
body {
    margin: 0;
    font-family: "Papyrus", fantasy;
    background: url("../giza.webp") no-repeat center center fixed;
    background-size: cover;
    color: #FFD700;
    text-align: center;
    overflow-x: hidden;
}

/* =========================
   MENU
========================= */
.egypt-menu {
    position: sticky;
    top: 0;
    background: rgba(212,175,55,0.95);
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.egypt-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.egypt-menu ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    transition: color 0.3s;
}

.egypt-menu ul li a:hover {
    color: #fff;
}

/* =========================
   HEADER / TITEL
========================= */
header {
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 50px;
    text-shadow: 0 0 10px #FFD700, 0 0 20px #c9a227;
}

#timerDisplay {
    margin-top: 10px;
    font-size: 24px;
    text-shadow: 0 0 6px #FFD700;
}

/* =========================
   SECTIES
========================= */
section {
    background: rgba(0,0,0,0.75);
    border-radius: 20px;
    padding: 20px;
    margin: 20px auto;
    width: 90%;
    max-width: 500px;
    text-align: left;
}

/* INPUTS */
input, select, textarea {
    width: 90%;
    padding: 10px;
    margin: 5px 0;
    border-radius: 8px;
    border: none;
}

/* BUTTONS */
button {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(45deg, #FFD700, #ffcc00);
    cursor: pointer;
    margin-top: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px #FFD700;
}

/* TEAM OVERZICHT */
#teamOverview {
    margin-top: 15px;
    list-style: none;
    padding: 0;
}

#teamOverview li {
    background: #f3e0a2;
    color: #000;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width:768px) {
    header h1 {
        font-size: 36px;
    }

    section {
        width: 95%;
        padding: 15px;
    }
}