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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Filigrane en arrière-plan */
.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filigrane {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    pointer-events: none;
}

/* Contenu principal */
.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    max-width: 600px;
    width: 100%;
}

/* Logo */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.logo {
    max-width: 100%;
    height: auto;
    width: 300px;
}

/* Texte UNDER CONSTRUCTION */
.construction-text {
    color: #e63946;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
}

/* Barre de progression */
.progress-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.progress-bar {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    width: 68%;
    height: 100%;
    background-color: #e63946;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-labels {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #666;
}

.progress-label {
    font-weight: 500;
}

/* Bouton Contact */
.contact-button {
    background-color: #1e3a5f;
    color: #ffffff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
    text-decoration: none;
    text-align: center!important;

}

.contact-button:hover {
    background-color: #2d4a6f;
    transform: translateY(-2px);
}

.contact-button:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .content {
        gap: 2rem;
    }

    .logo {
        width: 250px;
    }

    .construction-text {
        font-size: 1.2rem;
    }

    .contact-button {
        padding: 0.875rem 2.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }

    .content {
        gap: 1.5rem;
    }

    .logo {
        width: 200px;
    }

    .construction-text {
        font-size: 1rem;
        letter-spacing: 0.05em;
    }

    .progress-bar,
    .progress-labels {
        max-width: 100%;
    }

    .contact-button {
        padding: 0.75rem 2rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 300px;
    }
}




