/* Bases */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #111; /* Fond sombre comme sur tes captures */
    color: white;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Logo (Correctif Firefox) */
header {
    padding: 20px 0;
    background: #000;
}

/* On cible le conteneur du lien du logo */
.logo {
    display: flex;
    justify-content: center; /* Centrage horizontal */
    align-items: center;     /* Centrage vertical */
    width: 100%;             /* S'assure de prendre toute la largeur de la colonne */
}

.logo img {
    height: 60px; 
    width: auto;
    display: block;
    margin: 0 auto; /* Sécurité supplémentaire pour le centrage */
    
    /* Tes correctifs Firefox et visuels */
    filter: brightness(0) invert(1);
    image-rendering: -moz-crisp-edges;
}

/* Bannière avec effet de déroulement */
div.banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                      url('data/fenetre-couple.jpg');
    height: 300px;
    background-attachment: fixed; /* L'effet parallaxe */
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-content h1 {
    font-size: 3rem;
    color: #87ceeb; /* Couleur bleu clair comme sur ta capture */
    margin-bottom: 10px;
}

/* Section Contenu */
.info-section {
    padding: 60px 0;
    text-align: center;
    line-height: 1.6;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.contact-list li {
    margin: 15px 0;
    font-size: 1.2rem;
}

.contact-list a {
    color: #87ceeb;
    text-decoration: none;
}