.header {
    background-color: black;
    color: white;
    padding: 0; /* Supprimer le padding pour éviter les différences de couleur */
    text-align: center;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid white;
    font-family: 'Playfair Display', serif;
}

/* Barre de navigation */
.navbar {
    width: 100%; /* Pour s'assurer que la navbar prend toute la largeur */
    margin: 0;
}

.navbar-nav .nav-item .nav-link {
    color: white; /* Couleur du texte */
    padding: 8px 16px;
    transition: font-weight 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover {
    font-weight: bold;
    color: #f1f1f1; /* Couleur du texte au survol */
}

.dropdown-menu .dropdown-item {
    color: black; /* Couleur des éléments du menu déroulant */
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f1f1f1;
    color: black; /* Couleur du texte des éléments au survol */
}

.social-icons .nav-item .nav-link {
    color: white;
    font-size: 1.2em;
    padding: 8px 10px;
}

.social-icons .nav-item .nav-link:hover {
    color: #f1f1f1;
}

/* Conteneur principal de la section Hero */
.Home__Hero {
    display: flex;
    flex-direction: row;
    height: calc(100vh - 120px);
    color: white;
}

@media (max-width: 640px) {
    .Home__Hero {
        flex-direction: column;
        height: calc(100vh - 120px);
    }
}

/* Chaque partie du Hero */
.Home__Hero__Part {
    position: relative;
    flex: 1;
    transition: flex 0.4s ease;
    background: black;
    overflow: hidden;
}

.Home__Hero__Part:hover {
    flex: 1.1;
}

.Home__Hero__Part:hover .text {
    font-size: 3em;
}

/* Style des images */
.Home__Hero__Part img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

/* Style du texte */
.Home__Hero__Part .text {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-size: 2em;
    text-transform: uppercase;
    transition: font-size 0.4s ease;
    color: white;
    font-family: 'Playfair Display', serif;
}

/* Style du footer */
.footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid white;
    font-family: 'Lato', sans-serif;
}
