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

body, html {
    height: 100%;
    font-family: 'Lato', sans-serif;
    color: #2c2c2c;
    font-size: 16px;
    overflow-x: hidden; /* Évite le scroll horizontal sur mobile */
}

/* --- ARRIÈRE-PLAN --- */
.bg-wrapper {
    /* Le chemin remonte d'un dossier (..) puis va dans img */
    background-image: url('../img/background.jpg'); 
    min-height: 100vh; /* Prend toute la hauteur de l'écran */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Voile sombre pour lisibilité */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25); 
    z-index: 1;
}

/* --- CARTE CENTRALE --- */
.card-container {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.96);
    padding: 3.5rem 2.5rem;
    max-width: 650px;
    width: 100%;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px; /* Coins très légèrement arrondis pour la douceur */
}

/* --- LOGO --- */
.logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* --- TYPOGRAPHIE --- */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-weight: 600;
}

.location {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: #9e8b5c; /* Doré mat élégant */
    margin-bottom: 1.5rem;
}

/* Ligne de séparation */
.divider {
    height: 1px;
    width: 60px;
    background-color: #ddd;
    margin: 2rem auto;
}

.status {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    color: #666;
}

.message {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #555;
    font-weight: 300;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* --- BOUTONS ET LIENS --- */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.btn-contact {
    display: inline-block;
    text-decoration: none;
    background-color: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    padding: 14px 35px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    transition: all 0.3s ease;
    font-weight: 400;
}

.btn-contact:hover {
    background-color: #1a1a1a;
    color: #fff;
    cursor: pointer;
}

.phone-link {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-weight: 400;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #9e8b5c;
}

/* --- PIED DE PAGE --- */
.footer-legal {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 600px) {
    .bg-wrapper {
        padding: 15px;
    }

    .card-container {
        padding: 2.5rem 1.5rem;
    }

    .logo {
        max-width: 200px;
        margin-bottom: 1.5rem;
    }

    h1 {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .location {
        font-size: 1.1rem;
    }

    .message {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
}