
:root {
    --rouge-fond: #db2319;
    --beige-clair: #f2e6d8;
}

body {
    background-color: var(--rouge-fond);
    color: var(--beige-clair);
    font-family: 'Barlow', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* Header & Menu */
.site-title {
    font-family: 'Anton';
    font-size: 1.9rem;
    text-transform: uppercase;
}

#lien-titre-site {
    text-decoration: none !important;
    color: var(--beige-clair) !important;
}

.site-menu .nav-link {
    font-family: 'Anton';
    color: var(--beige-clair);
    text-transform: uppercase;
    text-decoration: none;
    padding-right: 15px;
}

/* Section Nos Sites */
.section-sites {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5vh 5%;
}

.titre-principal {
    font-family: 'Anton';
    font-size: clamp(3.5rem, 15vw, 9rem);
    color: var(--beige-clair);
    text-align: center;
    line-height: 1.1;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

/* Liste des liens */
.liste-liens-container {
    width: 100%;
    max-width: 800px;
}

.liste-sites {
    list-style: none;
    padding: 0;
    text-align: center;
}

.liste-sites li {
    margin-bottom: 1.5rem;
}

.liste-sites a {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--beige-clair);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.liste-sites a:hover {
    color: #000; /* Devient noir au survol comme vos autres liens */
    transform: scale(1.05);
}

/* Bouton Retour */
.retour-container {
    margin-top: 4rem;
}

.lien-retour {
    font-family: 'Anton';
    font-size: 1.2rem;
    color: var(--beige-clair);
    text-decoration: none;
    border: 2px solid var(--beige-clair);
    padding: 10px 25px;
    border-radius: 50px;
    transition: background 0.3s ease, color 0.3s ease;
}

.lien-retour:hover {
    background-color: var(--beige-clair);
    color: var(--rouge-fond);
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .liste-sites a {
        font-size: 1.4rem;
    }
    
    .titre-principal {
        font-size: clamp(2.5rem, 12vw, 5rem);
        margin-bottom: 2rem;
    }
}