/* Styles de base et du corps de la page */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background-color: #333; /* Couleur de fond gris foncé */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.6;
}

/* Bannière de construction */
.construction-banner {
    width: 100%;
    background-color: #c00000; /* Couleur rouge foncée */
    color: #fff;
    padding: 1.5rem 0;
}

.construction-title {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0;
}

.construction-text {
    font-size: 1em;
    margin: 0;
}

/* Contenu principal */
.content {
    padding: 2rem;
    max-width: 800px;
    width: 100%;
}

.domain-name {
    font-size: clamp(2.5rem, 8vw, 5rem); /* Taille de police adaptable */
    font-weight: 700;
    color: #fff;
    margin: 2rem 0 1rem;
    word-break: break-word; /* Gérer les noms de domaine longs */
}

.association-info {
    font-size: 1.2em;
    margin-bottom: 2rem;
}

/* Séparateur 'o o o' */
.separator {
    font-size: 1.5em;
    letter-spacing: 0.5rem;
    color: #fff;
    margin: 2rem 0;
}

/* Détails et liens */
.details p {
    margin: 1rem 0;
    font-size: 1em;
}

/* Liens hypertexte */
.link {
    color: #4da6ff; /* Bleu clair pour les liens */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.link:hover {
    color: #fff; /* Changement de couleur au survol */
}

/* Media Queries pour le responsive */
@media (max-width: 768px) {
    .domain-name {
        font-size: clamp(2rem, 10vw, 4rem);
    }
    
    .construction-banner {
        padding: 1rem;
    }

    .details p {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .construction-title {
        font-size: 1em;
    }

    .construction-text {
        font-size: 0.9em;
    }
}