:root {
    --primary-color: #007bff; /* Bleu d'innovation */
    --background-dark: #1a1a2e;
    --text-light: #f0f0f5;
    --accent-color: #e94560; /* Rouge d'accent */
    --font-main: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--text-light);
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1d 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow-x: hidden;
}

.maintenance-container {
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
    margin: 20px;
}

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.6em;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.5em;
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

p {
    line-height: 1.6;
    font-size: 1.1em;
    margin: 10px auto;
    max-width: 800px;
}

.countdown {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.countdown > div {
    background-color: var(--accent-color);
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    min-width: 80px;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.countdown > div::after {
    content: attr(data-label);
    display: block;
    font-size: 0.5em;
    font-weight: normal;
    margin-top: 5px;
    opacity: 0.7;
}

/* 🖼️ Section des deux images */
.images-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.image-block {
    flex: 1 1 45%;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease;
    max-width: 500px;
}

.image-block:hover {
    transform: scale(1.02);
}

.info-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.image-caption {
    margin-top: 15px;
    font-size: 1.1em;
    color: #f0f0f5;
    opacity: 0.9;
}

/* 📱 Responsivité mobile */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .maintenance-container {
        padding: 25px 15px;
        margin: 10px;
    }

    .logo {
        width: 140px;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 1.8em;
        letter-spacing: 2px;
    }

    p {
        font-size: 1em;
        padding: 0 5px;
    }

    .images-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .image-block {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 15px;
    }

    .info-image {
        width: 100%;
        border-radius: 10px;
    }

    .countdown {
        gap: 10px;
    }

    .countdown > div {
        padding: 10px 15px;
        font-size: 1.2em;
    }

    footer p {
        font-size: 0.9em;
    }
}
