/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7f7f7; /* Couleur de fond légère */
    color: #333;
}

/* Header */
header {
    background-color: #000;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container, .container2 {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Styles spécifiques pour container2 */
.container2 {
    flex-direction: column; /* Alignement vertical pour le catalogue */
    align-items: center; /* Centre les éléments horizontalement */
}

/* Logo et marque */
.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 80px;
    margin-right: 15px;
}

.brand {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: white;
}

/* Navigation */
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%;
}

/* Introduction du catalogue */
.catalogue-introduction {
    text-align: center;
    margin: 40px 0; /* Espacement autour de l'introduction */
}

.catalogue-introduction h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

.catalogue-introduction p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: auto; /* Centre le texte */
}

/* Styles du catalogue */
.catalogue-gallery {
    display: flex; /* Utilisation de flex pour un alignement horizontal */
    flex-wrap: wrap; /* Permet d'enrouler les éléments si l'espace est insuffisant */
    gap: 20px; /* Espacement entre les éléments */
    margin-top: 20px; /* Espacement au-dessus de la galerie */
}

.catalogue-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: calc(25% - 20px); /* Largeur de l'élément avec l'espacement */
}

.catalogue-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.item-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.catalogue-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.item-info {
    padding: 15px;
}

.item-info h3 {
    font-size: 1.5rem;
    margin: 10px 0;
    font-weight: 600;
    color: #222;
}

.item-info p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
}

.btn-details {
    background-color: #000;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-details:hover {
    background-color: #444;
}

/* Section Nous Suivre */
#follow {
    padding: 40px 0; /* Espacement vertical */
    background-color: #f5f5f5; /* Couleur de fond claire */
    text-align: center; /* Centre le texte */
}

#follow h2 {
    font-size: 2.5rem; /* Taille de police pour le titre */
    color: #333; /* Couleur sombre pour le texte */
    margin-bottom: 15px; /* Espacement sous le titre */
}

#follow p {
    font-size: 1.1rem; /* Taille de police pour le paragraphe */
    margin-bottom: 30px; /* Espacement sous le paragraphe */
    color: #666; /* Couleur du texte */
    max-width: 600px; /* Largeur maximum pour le texte */
    margin-left: auto; /* Centre le texte */
    margin-right: auto; /* Centre le texte */
}

/* Icônes des réseaux sociaux */
.social-icons {
    display: flex; /* Utilisation de flex pour alignement horizontal */
    justify-content: center; /* Centre les icônes */
    gap: 20px; /* Espacement entre les icônes */
}

.social-icon img {
    width: 50px; /* Taille de l'image de l'icône */
    height: auto; /* Ajustement automatique de la hauteur */
    transition: transform 0.3s; /* Animation douce au survol */
}

.social-icon img:hover {
    transform: scale(1.1); /* Agrandissement au survol */
}

/* Responsive design pour mobile */
@media (max-width: 768px) {
    .catalogue-item {
        width: calc(50% - 20px); /* 2 éléments par ligne sur mobile */
    }

    #follow h2 {
        font-size: 2rem; /* Réduction de la taille du titre sur mobile */
    }

    #follow p {
        font-size: 0.9rem; /* Réduction de la taille du texte sur mobile */
    }
}

/* Footer */
footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 20px 0;
}
