/* =========================
   RESET
   ========================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* =========================
   BODY
   ========================= */
body {
    height: 100vh;
    font-family: "Inter", Arial, sans-serif;
    overflow: hidden;
}

/* =========================
   VIDEO BACKGROUND
   ========================= */
.bg-video {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* =========================
   OVERLAY
   ========================= */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: -1;
}

/* =========================
   PAGE
   ========================= */
.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* =========================
   CARD
   ========================= */
.card {
    background: #ffffff;
    max-width: 460px;
    width: 100%;
    padding: 48px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* =========================
   ANIMATION STATES
   ========================= */
.hidden {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
}

.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* =========================
   TEXT
   ========================= */
.card h1 {
    font-size: 28px;
    font-weight: 700;
    color: #111;
}

.subtitle {
    margin: 12px 0 36px;
    color: #555;
    font-size: 15px;
}

/* =========================
   LANGUAGES
   ========================= */
.languages {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lang {
    padding: 16px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    background: #f8f9fa;
    border: 1px solid #e1e4e8;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lang:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ==================================================
   ELECTRIC BLUE MENU – FINAL FIX (HEADER SAFE)
   ================================================== */

/* forțează peste Bootstrap (btn-danger / warning etc) */
.navbar .menu-electric,
.navbar .menu-electric.btn,
.navbar .menu-electric.btn-danger,
.navbar .menu-electric.btn-warning,
.navbar .menu-electric.btn-success {
    background-color: #0d6efd !important; /* BLEU ÉLECTRIQUE */
    color: #ffffff !important;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    margin: 2px;
    border: none;
    transition: background-color 0.25s ease, transform 0.15s ease;
}

/* hover + active */
.navbar .menu-electric:hover,
.navbar .menu-electric:focus,
.navbar .menu-electric.active {
    background-color: #084298 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}
