/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Header */
header {
    background-color: #fff;
    color: #333;
    padding: 10px 0;
}

.header-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-bar form {
    display: flex;
}

.search-bar input[type="text"] {
    padding: 5px;
    border: none;
    border-radius: 3px 0 0 3px;
    width: 200px;
}

.search-bar button {
    padding: 5px;
    border: none;
    background-color: #fff;
    color: #333;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
}

.search-bar button:hover {
    background-color: white;
}

.social-icons a {
    color: #333;
    margin-left: 10px;
    text-decoration: none;
    font-size: 18px;
}

.social-icons a:hover {
    color: #ddd;
}

/* Navbar */
nav {
    background-color: #231F20;
}

.navbar {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar li {
    margin: 0 15px;
}

.navbar li a {
    color: #fff;
    text-decoration: none;
    padding: 15px 0;
    display: block;
}

.navbar li a:hover {
    color: #BE9143;
}

.navbar .logo {
    margin: 0 30px;
}

.navbar .logo img {
    height: 40px;
}

.navbar .cart a {
    font-size: 20px;
}
/* Section Banner */
.banner-section {
    position: relative;
    text-align: center;
    color: white;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.banner-title {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
    padding: 10px 20px;
    border-radius: 5px;
}

.banner-title h1 {
    font-size: 3em;
    margin: 0;
    
}


/* Section Carte Floue */
.blur-card-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #f4f4f4;
}

.blur-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 30px;
    max-width: 400px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blur-card h2 {
    margin-bottom: 15px;
    font-size: 2em;
}

.blur-card p {
    font-size: 1.2em;
    color: #333;
}

/* Main Content */
main {
    padding: 20px;
    text-align: center;
}





/* Nouvelle Section Image à Gauche et Texte à Droite */
.image-text-section {
    padding: 60px 20px;
    background-color: #fff;
}

.image-text-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.image-text-section .image-container,
.image-text-section .text-container {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.image-text-section .image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.image-text-section .text-container h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.image-text-section .text-container p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-title h1 {
        font-size: 2em;
    }

    .blur-card {
        max-width: 90%;
    }

    .image-text-section .container {
        flex-direction: column;
    }

    .image-text-section .image-container,
    .image-text-section .text-container {
        padding: 10px;
    }

    .image-text-section .text-container h2 {
        font-size: 2em;
    }
}



.separator-background {
    background-size: cover; /* Pour couvrir tout le conteneur */
    background-position: right; /* Positionner l'image à droite */
    height: 100px; /* Hauteur de l'image */
    width: auto; /* Largeur automatique */
    display: block; /* S'assurer qu'il s'affiche comme un bloc */
}





/* Style pour la section des services */
.services-section {
    padding: 20px 20px;
    background-color: #f9f9f9;
}

/* Style pour le titre avec soulignement aligné à gauche */
.section-title {
    font-size: 40px;
    color:  #B07935;
    margin-bottom: 20px;
    text-align: left; /* Aligne le titre à gauche */
    position: relative;
    padding-left: 10px;
}


.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color:  #B07935;
    margin: 8px 0 0; /* Positionne le soulignement directement sous le titre */
}

/* Container des services */
.services-container {
    display: flex; /* Utilise flexbox pour aligner les éléments horizontalement */
    justify-content: space-around; /* Espacement entre les éléments */
    flex-wrap: wrap; /* Permet aux éléments de passer à la ligne si l'espace est insuffisant */
    padding: 20px; /* Espacement autour du conteneur */
}

.service-item {
    display: flex; /* Utilise flexbox pour aligner l'image et le texte */
    flex-direction: column; /* Aligne les éléments verticalement */
    align-items: center; /* Centre les éléments horizontalement */
    padding: 20px; /* Ajoute un peu de rembourrage autour */
    background-color: white; /* Arrière-plan pour chaque élément de service */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Ombre pour un léger effet de relief */
    border-radius: 8px; /* Coins arrondis */
    margin: 10px; /* Espace entre les éléments de service */
    width: 250px; /* Largeur fixe pour chaque élément de service */
}

.service-item img {
    width: 135px; /* Taille fixe pour toutes les images */
    height: 150px; /* Taille fixe pour toutes les images */
    object-fit: cover; /* Assure que l'image remplit son conteneur sans déformer */
    margin-bottom: 10px; /* Espace entre l'image et le texte */
    border-radius: 5px; /* Coins arrondis pour l'image */
}

.service-item h3 {
    margin: 5px 0; /* Ajoute un peu d'espace au-dessus et au-dessous du titre */
}

.service-item p {
    margin-top: 5px; /* Ajoute un peu d'espace au-dessus du texte */
    color: #666; /* Couleur du texte */
}


/* Section Image à Gauche et Texte à Droite */
.image-text-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 60px;
}

/* Galerie */
.gallery-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow-x: auto; /* Défilement horizontal pour les petits écrans */
    padding: 20px 0;
    scroll-behavior: smooth;
}

.gallery-item {
    position: relative;
    width: 100%; /* Largeur fixe pour chaque image */
    overflow: hidden;
    border-radius: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%; /* Hauteur uniforme pour les images */
    object-fit: cover; /* Recadre l'image pour bien s'ajuster */
    border-radius: 1px;
}

.image-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6); /* Fond semi-transparent pour la légende */
    color: #fff;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    border-bottom-left-radius: 1px;
    border-bottom-right-radius: 1px;
}


/* Section du Blog */
.blog-section {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.section-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
}

/* Blog Container */
.blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Blog Post */
.blog-post {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 600px;
    height: 500px;
    transition: transform 0.3s;
}

.blog-post:hover {
    transform: scale(1.05);
}

.blog-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
    text-align: left;
}

.blog-title {
    font-size: 1.5em;
    margin: 0 0 10px;
    color: #333;
}

.blog-excerpt {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 15px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.read-more:hover {
    background-color: #CC0033; /* Change la couleur sur hover */
}



/* Section du bouton */
/* Section du bouton */
.button-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 40px;
    background-image: url('../images/arrie_3.png'); /* Chemin vers l'image */
    background-repeat: no-repeat; /* N'affiche l'image qu'une seule fois */
    background-position: left center; /* Positionne l'image à gauche, centré verticalement */
    background-size: 200px; /* Ajustez la taille de l'image selon vos besoins */
}


.main-button {
    padding: 15px 30px;
    background-color: #CC0033;
    color: #fff;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 1px;
    transition: background-color 0.3s, transform 0.2s;
}

.main-button:hover {
    background-color: #333;
    transform: scale(1.05); /* Légère mise en relief au survol */
}

.main-button {
    padding: 15px 30px;
    background-color: #CC0033;
    color: #fff;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 1px;
    transition: background-color 0.3s, transform 0.2s;
}

.main-button:hover {
    background-color: #333;
    transform: scale(1.05); /* Légère mise en relief au survol */
}

.main-button {
    padding: 15px 30px;
    background-color: #CC0033;
    color: #fff;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 1px;
    transition: background-color 0.3s, transform 0.2s;
}

.main-button:hover {
    background-color: #333;
    transform: scale(1.05); /* Légère mise en relief au survol */
}


/* Styles du Footer */
.footer {
    display: flex;
    justify-content: space-between; /* Espacement entre les sections */
    align-items: flex-start; /* Alignement vertical en haut */
    padding: 20px;
    background-color: #f4f4f4; /* Couleur de fond du footer */
    
}

/* Sections du Footer */
.footer-section {
    flex: 1; /* Chaque section prend un espace égal */
    padding: 0 20px; /* Espacement interne */
}


.footer-section h3,h4 {
    color: #C09346;
}

.footer-section p {
    color: #fff;
}

.footer-logo {
    width: 150px; /* Largeur du logo */
    margin-bottom: 10px; /* Espacement sous le logo */
}

/* Lignes de séparation */
.footer-divider {
    width: 2px; /* Largeur de la ligne */
    background-color: #78BE20; /* Couleur de la ligne */
    height: 180px; /* Hauteur de la ligne */
    margin: 0 20px; /* Espacement horizontal */
}

/* Liens Rapides */
.quick-links-section ul {
    list-style: none; /* Supprime les puces */
    padding: 0; /* Supprime le remplissage */
}

.quick-links-section li {
    margin: 5px 0; /* Espacement entre les liens */
}

.quick-links-section a {
    text-decoration: none; /* Supprime le soulignement */
    color: #fff; /* Couleur des liens */
    transition: color 0.3s; /* Transition pour hover */
}

.quick-links-section a:hover {
    color: #C09346; /* Couleur lors du survol */
}

/* Réseaux Sociaux */
.social-icons a {
    margin-right: 10px; /* Espacement entre les icônes */
}

.social-icons img {
    width: 24px; /* Largeur des icônes */
    height: auto; /* Hauteur automatique */
}

.list-container {
    display: flex;
 
    justify-content: flex-start;
}

.list-container ul {
    list-style-type: none;
    padding: 0;
    display: flex;
}

.list-container li {
    margin: 0 0px;
}


.list-container a {
    text-decoration: none;
    color: #333;
    font-size: 1em;
    text-align: center;
}

.list-container a:hover {
    color: #CC0033;
}






.contact-button {
    position: fixed;
    bottom: 80px; /* Positionner le bouton à 20px du bas de la fenêtre */
    left: 80px; /* Positionner le bouton à 20px du côté gauche de la fenêtre */
    padding: 10px 20px;
    width: 200px;
    height: 70px;
    font-size: 16px;
    color: #a10029;
    font-weight: bold;
    background-color: #fff;
    border: none;
    border-radius: 25px; /* Bordures arrondies */
    cursor: pointer;
    box-shadow: 3px 3px 10px rgba(255, 0, 0, 0.3); /* Effet d'ombre subtil */
    z-index: 1000; /* S'assurer que le bouton reste au-dessus des autres éléments */
    transition: background-color 0.3s ease; /* Animation pour le survol */
}

.contact-button:hover {
    background-color: #a10029; /* Couleur légèrement plus foncée au survol */
    color: #fff;
}

.title-left {
    text-align: left; /* Aligner le texte à gauche */
    margin-left: 20px; /* Ajouter une marge à gauche */
    font-size: 24px; /* Taille du texte (à ajuster selon vos besoins) */
    color: #333; /* Couleur du texte */
    font-weight: bold; /* Mettre le texte en gras */
}


  /* Styles pour la section de la galerie */
  .image-text-section {
    background-color: #fff;
    padding: 20px;
    text-align: center;
}

.gallery-container {
    display: flex;
    overflow-x: auto;
    padding: 10px;
    gap: 10px;
    scroll-behavior: smooth;
    white-space: nowrap;
    width: 100%;
}

.gallery-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-container img:hover {
    transform: scale(1.1);
}

/* Styles pour le lien de voir plus de produits */
.view-more-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    color: #fff;
    background-color: #CC0033;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.view-more-link:hover {
    background-color: #99002a;
}

/* Styles pour l'affichage plein écran */
.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.fullscreen-overlay.active {
    visibility: visible;
    opacity: 1;
}

.fullscreen-overlay img {
    width: 80%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 8px;
}

.gallery-section {
    width: 300px; /* Ajustez selon vos besoins */
    height: 500px; /* Hauteur de la section visible */
    overflow: hidden; /* Cache les images qui sortent du cadre */
    position: relative;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 8px;
}








.title-left {
    font-family: 'Viga', sans-serif;
  
    text-align: left; /* Alignement à gauche */
    padding-right: 400px; /* Décalage à droite pour équilibrer */
    margin-bottom: 20px; /* Espacement en bas */
    letter-spacing: 2px; /* Espacement entre les lettres pour un look aéré */
    text-transform: uppercase; /* Mise en majuscules pour plus d'impact */
    position: relative;
}

.title-left::after {
    display: none; /* Cela masquera la barre sans changer les autres styles */
}

/* Style pour le paragraphe général */
.couture-description {
    font-family: 'Nexa Light', sans-serif; /* Typographie élégante */
    font-size: 18px; /* Taille légèrement plus petite pour une meilleure lisibilité */
    color: #333; /* Couleur gris foncé pour une lecture agréable */
    text-align: justify; /* Justification pour une présentation soignée */
    line-height: 1.8; /* Amélioration de l'espacement entre les lignes pour plus de clarté */
    margin-bottom: 20px; /* Espacement sous le texte */
}

.text-justify {
    text-align: justify;
    font-size: 25px;
    margin-top: 0; /* Assurez-vous qu'il n'y a pas de marge en haut */
    margin-bottom: 20px; /* Conservez la marge en bas si nécessaire */
}

