/* =============================
   SPLASH (PREMIÈRE VISITE)
   ============================= */
.splash-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    height: 100%;
    box-sizing: border-box;
    margin-top: 30vh;
}

.app-logo {
    margin-bottom: 30px;
}

.app-logo img {
    width: 80vw;
    max-width: 1000px;
    height: auto;
}

.info-message {
    margin-bottom: 40px;
    font-size: 1.1em;
    color: #333;
}

.info-message .prevention-text {
    font-size: 0.9em;
    color: #e44d26;
    margin-top: 15px;
    font-weight: bold;
}

.splash-container .btn-primary {
    padding: 12px 30px;
    font-size: 1.2em;
}
/* =============================
   MODAL PLEIN ÉCRAN
   ============================= */
.modal-fullscreen-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.modal-fullscreen-overlay.hidden {
    display: none;
}

.modal-fullscreen-box {
    background: var(--Beige-Fond-color);;
    /* border: 1px solid rgba(255,255,255,0.15); */
    border-radius: var(--border-radius);
    padding: 36px 28px;
    max-width: 340px;
    width: 90%;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: slideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.modal-fullscreen-icon {
    font-size: 3em;
    margin-bottom: 12px;
    line-height: 1;
}

.modal-fullscreen-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.modal-fullscreen-desc {
    font-size: 0.9em;
    color: #484848;
    margin-bottom: 24px;
    line-height: 1.5;
}

.modal-fullscreen-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-fullscreen-yes {
    background: var(--Or-color);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    padding: 13px 20px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.15s, opacity 0.15s;
}

.btn-fullscreen-yes:active { transform: scale(0.97); opacity: 0.85; }

.btn-fullscreen-no {
    background: var(--Beige-Fond-color);
    color: #888;
     border: 2px solid var(--Beige-Fond-color); 
    box-shadow: var(--boxlitghdo);
    border-radius: var(--border-radius);
    padding: 11px 20px;
    font-size: 0.9em;
    cursor: pointer;
}