/* ==========================================================================
   1. DESIGN GLOBAL & ARRIÈRE-PLAN
   ========================================================================== */
body {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding: 0;
    margin: 0;
    min-height: 100vh;
    background-image: url('./background01.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Neutralisation du style par défaut des liens */
a {
    color: #e6e6e6;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ==========================================================================
   2. CONTENEUR PRINCIPAL (PLUS TRANSPARENT)
   ========================================================================== */
.container {
    padding: 60px 40px; /* Un peu plus d'air à l'intérieur */
    max-width: 600px;
    width: 90%;
    /* Transparence augmentée : 0.25 pour laisser passer l'image de fond */
    background: rgba(0, 0, 0, 0.25);  
    /* Effet de flou sur l'image derrière le verre (très premium) */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1); /* Bordure très fine */
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    text-align: center;
}

/* LOGO */
.logo-title {
    max-width: 80%;
    height: auto;
    margin-bottom: 25px;
}

/* ==========================================================================
   3. TYPOGRAPHIES ET TEXTES (OPTION A : PLAYFAIR)
   ========================================================================== */
.description {
    color: #f1eee7;
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.location {
    /* APPLICATION DE L'OPTION A */
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8); 
    font-size: 1.3em;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.5px; /* Moins d'espacement pour l'italique */
    text-transform: none; /* L'italique est plus élégant en minuscules */
}

.timer {
    font-weight: 300;
    color: rgba(230, 230, 230, 0.6);
    margin-top: 30px;
    font-size: 0.85em;
    font-style: normal; /* On retire l'italique ici pour ne pas saturer */
    letter-spacing: 1px;
}

/* ==========================================================================
   4. BOUTON CTA (COHÉRENCE DESIGN)
   ========================================================================== */
.cta-btn {
    color: #ffffff;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 14px 40px;
    display: inline-block;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn:hover {
    background-color: #ffffff;
    color: #111111;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ==========================================================================
   5. RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    .container { padding: 40px 25px; }
    .description { font-size: 1.2em; }
    .location { font-size: 1.15em; }
}