body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0b0b0b;
    color: white;
    text-align: center;
}

#scene {
    position: relative;
    width: 90%;
    max-width: 1800px;
    margin: auto;
    border: 5px solid #d4af37; /* goudkleurige rand voor Egypte-thema */
    border-radius: 15px;
    overflow: hidden;
}

#sceneImage {
    width: 100%;
    display: block;
    border-radius: 15px;
}

.timer {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px 20px;
    font-size: 22px;
    border-radius: 12px;
    font-weight: bold;
}

/* Standbeelden zones visueel (voor debug) */
.statue {
    position: absolute;
    width: 120px;
    height: 300px;
    cursor: pointer;
    border: none; /* hide yellow debug stripes */
    transition: transform 0.2s;
}

.statue:hover {
    transform: scale(1.05);
    border-color: gold;
}

.left { left: 200px; top: 190px; }
.right { right: 200px; top: 190px; }

/* Vraagteken */
.questionMark {
    position: absolute;
    bottom: 80px;
    right: 120px;
    width: 45px;
    height: 45px;
    background: white;
    color: black;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 8px rgb(151, 151, 151);
    transition: transform 0.2s;
}

.questionMark:hover {
    transform: scale(1.2);
}

/* Quiz Box */
.quizBox {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #8a8367;
    padding: 25px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.closeQuestion {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 25px;
    cursor: pointer;
}

/* Sleutel */
.key {
    display: none;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    color: gold;
    text-shadow: 1px 1px 3px black;
}

/* Deur */
.doorArea {
    position: absolute;
    /* centered horizontally over door location */
    left: 50%;
    bottom: 140px;
    transform: translateX(-50%);
    width: 220px;
    height: 350px;
    cursor: pointer;
    border: none;
    transition: transform 0.2s;
}

.doorArea:hover {
    transform: translateX(-50%) scale(1.05);
}








h1 {
    color: gold;
}

/* Egyptisch menu */
.egypt-menu {
    background: rgba(212,175,55,0.95);
    padding: 10px 0;
    box-shadow: 0 4px 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: #3e2c14;
    font-weight: bold;
    font-size: 18px;
    padding: 5px 10px;
    transition: 0.3s;
}

.egypt-menu ul li a:hover {
    color: gold;
    text-shadow: 1px 1px 0 #a67c00;
    transform: translateY(-2px);
}