/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9; /* Couleur de fond légère */
    color: #333;
}

/* Header */
header {
    background-color: #000;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 80px;
    margin-right: 15px;
}

.brand {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
}

nav ul li a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: white;
    transition: width .3s;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Contenu Principal */
.container2 {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 0; /* Espacement autour du contenu principal */
}

.about-section {
    text-align: center;
    margin: 40px 0; /* Espacement autour de la section */
}

.about-section h2 {
    font-family: 'Playfair Display', serif; /* Utilisation de la police élégante */
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.about-section p {
    font-family: 'Poppins', sans-serif; /* Utilisation de Poppins pour le texte */
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6; /* Amélioration de la lisibilité */
    max-width: 800px; /* Largeur maximale pour le texte */
    margin: 20px auto; /* Centre le texte */
}

/* Section Nous Suivre */
#follow {
    padding: 50px 0;
    text-align: center;
    background-color: #f5f5f5;
}

#follow h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

#follow p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Icônes des réseaux sociaux */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.social-icon img {
    width: 40px;
    height: auto;
    transition: transform 0.6s;
}

.social-icon img:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 20px 0;
}
