/* Réinitialisation et styles globaux basés sur votre charte */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-image: url('bg-site.jpg');
    background-repeat: no-repeat;
    background-position: right;
    background-color: #070609;
    background-size: auto 100%;
    background-attachment: fixed;
    font-family: 'Courier New', Courier, monospace;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    min-height: 100vh;
}

/* Gestion du fond pour mobiles */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }
    .blocs-inferieurs {
        flex-direction: column;
    }
}

.container {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

/* Bloc Rose global */
.bloc-rose {
    margin-bottom: 40px;
    text-align: center;
}


/* Structure des deux colonnes (Violet et Vert) */
.blocs-inferieurs {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

.bloc-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 4px;
    margin: 0;
}

/* Grandes images dans les blocs avec la lueur de votre code d'origine */
.img-principale {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

.bloc-content h2 {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.bloc-content p {
    font-size: 12px;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Ligne des 5 boutons ronds */
.liens-ronds {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: auto; /* Pousse les ronds vers le bas pour l'alignement */
}

.liens-ronds a img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.2s, box-shadow 0.2s;
}

.liens-ronds a img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Mentions Légales tout en bas */
.mentions-legales {
    text-align: center;
    font-size: 12px;
    margin-top: auto;
    padding-top: 40px;
    width: 100%;
}