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

body {
    background-color: #0f172a; /* Fond bleu nuit foncé */
    color: #a1a1aa; /* Texte gris clair */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-align: center;
    padding: 20px;
}

/* Conteneur principal */
.container {
    max-width: 600px;
    width: 100%;
}

/* Titre principal */
h1 {
    color: #f1f5f9; /* Titre presque blanc */
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.blue-dot {
    color: #38bdf8;
}

/* Sous-titre / Texte */
p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Lien de contact */
.contact {
    color: #38bdf8; /* Couleur cyan pour le lien */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact:hover {
    color: #f1f5f9;
}

/* Graphique de construction */
.construction-graphic {
    margin-bottom: 50px;
}

/* Création du graphique en pur CSS */
.construction-graphic .sign {
    width: 100%;
    height: 300px;
    background-color: #1e293b; /* Gris-bleu foncé */
    border: 4px solid #f97316; /* Bordure orange */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: #f97316;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}

/* Bandes orange diagonales en arrière-plan */
.construction-graphic .sign::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(249, 115, 22, 0.2) 40px,
        rgba(249, 115, 22, 0.2) 80px
    );
    z-index: 1;
}

/* Texte à l'intérieur du graphique */
.construction-graphic .text {
    position: relative;
    z-index: 2;
}

/* Petite animation pour le titre */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

h1, .construction-graphic {
    animation: fadeInDown 1s ease-out;
}

/* Adaptations pour mobile */
@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    .construction-graphic .sign { font-size: 1.5rem; height: 200px; }
    p { font-size: 1rem; }
}