body {
            font-family: 'Roboto', sans-serif;
            padding-top: 56px; /* Ajustez selon la hauteur de la navbar */
        }

.text-uppercase{
    text-transform: uppercase;
}
        .navbar {
            background-color: #000; /* Fond noir */
            border-bottom: 1px solid #ffd17b; /* Liseré plus fin de couleur or sous le menu */
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        .navbar.scrolled {
            background-color: rgba(0, 0, 0, 0.9); /* Opacité légère du fond noir */
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        }

        .navbar a {
            color: #ffd17b !important; /* Couleur du texte en orange clair */
        }

        .hero-full {
            position: relative;
            height: 100vh; /* La section prend toute la hauteur de l'écran */
            overflow: hidden;
        }

        .hero-full img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* L'image couvre tout l'écran */
        }

        .hero-full .content-title {
            position: absolute;
            top: 50%;
            left: 20px;
            transform: translateY(-50%); /* Centrer verticalement et aligner à gauche */
            color: #ffd17b; /* Titre en couleur orange clair */
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400; /* Plus léger */
            text-transform: uppercase; /* Titre en majuscules */
            letter-spacing: 3px; /* Espacement entre les lettres */
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Légère ombre pour améliorer la lisibilité */
        }

        .hero-full .content-description {
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 100%; /* Le texte occupe toute la largeur */
            color: #ffd17b; /* Texte en couleur orange clair */
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            line-height: 1.6;
            text-align: center;
            padding: 0 20px; /* Ajouter un peu de padding pour éviter que le texte touche les bords */
        }

        .about-section {
            background-color: #36220c; /* Couleur de fond de la section */
            color: #ffd17b; /* Couleur du texte */
            padding: 60px 0;
        }

        .about-section .image-part {
            position: relative;
            background-image: url('img/section-2-visage-celebre-et-inconnu.jpg'); /* Remplacez par votre image */
            background-size: cover;
            background-position: center;
            height: 100%; /* Prend toute la hauteur de la section */
        }

        .about-section .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Calque noir avec 50% d'opacité */
        }

        .about-section .text-part {
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .about-section .text-part h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .about-section .text-part p {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-section .text-overlay {
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%); /* Centrer verticalement */
            color: #ffd17b;
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 700;
            text-align: right;
            letter-spacing: 3px;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .about-section .row {
                flex-direction: column;
            }
            .about-section .image-part {
                height: 300px; /* Hauteur réduite sur mobile */
            }
            .about-section .text-overlay {
                font-size: 2rem; /* Réduire la taille du texte sur mobile */
            }
        }