/* ========================
   CONTEXT SCREEN - Un peu de contexte
   ======================== */

.context-screen {
    background-color: #EBBE27;
    background-image: url('../images/bg-gold-g.png');
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: bottom left;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Dark navbar for gold background */
.top-nav-dark {
    background-color: #1a1a1a;
    color: #fff;
}

.top-nav-dark .marquee-content span {
    color: #fff;
}

/* Watermark G - Large semi-transparent */
.context-watermark {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.watermark-g {
    width: 450px;
    height: auto;
    opacity: 0.25;
}

/* Context Content */
.context-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 80px);
    padding: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.context-title {
    font-family: var(--font-body);
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    margin-top: 0;
}

.context-text {
    max-width: 800px;
    margin-bottom: 50px;
}

.context-intro {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-black);
    line-height: 1.6;
    margin-bottom: 25px;
}

.context-detail {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700 !important;
    color: var(--text-black);
    line-height: 1.7;
}

/* Context Actions - Buttons */
.context-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.context-actions .btn-enter {
    background-color: #fff !important;
}

.btn-question {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--text-black);
    border: 2px solid var(--text-black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-question:hover {
    background-color: var(--text-black);
    color: var(--gold);
}

.btn-back-hall {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-black);
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-back-hall:hover {
    opacity: 0.7;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 768px) {
    .context-title {
        font-size: 36px;
    }

    .context-intro {
        font-size: 16px;
    }

    .context-detail {
        font-size: 14px;
    }

    .watermark-g {
        width: 250px;
    }

    .context-watermark {
        left: -60px;
    }
}