/* Styles globaux */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	    overflow-x: hidden;
}

/* Header et navigation */
header, nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

h1 {
  font-family: 'Dancing Script', cursive;
  font-weight: 200;
  color: #333;
  letter-spacing: 1px;
  line-height: 1.5;
}

/* Intégration de la police Poiret One depuis Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');

/* Application de la police à vos éléments */
h2 {
  font-family: 'Poiret One', cursive;
  /* Ajoutez ici d'autres styles si nécessaire, comme la taille, la couleur, etc. */
  font-weight: 400;
  color: #333;
  letter-spacing: 2px;
  line-height: 1.5;
}

p {
  font-family: "Genos", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}



/* Menu */
.desktop-nav {
    display: none;
    background: black;
    color: white;
    padding: 1rem;
    text-align: center;
}

.desktop-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.desktop-nav li {
    display: inline-block;
    margin: 0 1rem;
}

.desktop-nav a {
    font-family: 'Poiret One', cursive;
	color: white;
    text-decoration: none;
}

/* Pour les liens actifs (survolés ou cliqués) */
nav a:hover {
  color: #ffa500;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: black;
    color: white;
    padding: 1rem;
}

.logo {
  font-family: 'Dancing Script', cursive;
  font-weight: 200;
  color: #white;
  letter-spacing: 1px;
  line-height: 1.5;	
}

.mobile-header .logo {
    font-size: 1.5rem;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.burger {
    width: 25px;
    height: 3px;
    background: white;
}

.mobile-nav {
    display: none;
    background: black;
}

.mobile-nav.show {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.mobile-nav li {
    border-bottom: 1px solid white;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    padding: 1rem;
    display: block;
}

/* Fil d'ariane /////
/* Conteneur principal */
.breadcrumb {
  background-color: #f5f5f5;
  padding: 1rem 0 1rem 20px;
  font-family: 'Genos', sans-serif; /* Utilisation de la police Genos de votre code */
  font-size: 1rem;
  color: #a0a0a0; /* Une couleur de texte plus douce pour l'ensemble */
  Margin-top: 50px;
}

/* Liste des éléments du fil d'Ariane */
.breadcrumb ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

/* Chaque élément de la liste */
.breadcrumb li {
  margin: 0;
}

/* Style des liens */
.breadcrumb a {
  text-decoration: none;
  color: #007bff; /* Ou une autre couleur vive qui s'accorde avec votre site */
  transition: color 0.3s ease; /* Ajout d'une transition pour un effet fluide */
}

.breadcrumb a:hover {
  color: #0056b3; /* Changement de couleur au survol */
}

/* Ajout du séparateur ">" via un pseudo-élément */
.breadcrumb li + li::before {
  content: '/'; /* Utilisation de la barre oblique pour un look épuré */
  display: inline-block;
  padding: 0 0.5rem; /* Réduction de l'espacement pour plus de compacité */
  color: #e0e0e0; /* Une couleur de séparateur très claire */
}

.breadcrumb li:last-child {
  color: #333; /* Le texte de la page actuelle est mis en évidence */
  font-weight: 500; /* Une épaisseur de police moyenne */
  cursor: default;
}

/* Style pour le dernier élément (page actuelle) */
.breadcrumb li:last-child span {
  color: #212529; /* Couleur du texte de la page actuelle */
  font-weight: bold; /* Mise en gras */
  cursor: default; /* Change le curseur */
}

/* Accueil ///////////////////////////////////////////////////////////////*/
#accueil {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 0;
}

.intro {
    text-align: center;
    flex: 1;
}

.intro h1 {
    font-size: 4rem;
    margin: 0;
}

.intro h2 {
    font-size: 1.5rem;
    margin: 0;
}

/* Galerie */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery-container {
    margin-top: 80px;
}

.thumbnail {
    width: 250px;
    /* Supprimez la ligne top: 150px; */
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    background-color: #fff;
    transition: transform 0.2s ease-in-out;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail img {
    width: 100%;
    height: auto;
}

.card-info {
    padding: 10px;
}

.card-info h3 {
    margin: 10px 0;
    font-size: 1.2em;
    color: #333;
}

.card-info p {
    margin: 5px 0;
    font-size: 0.9em;
    color: #666;
}

.card-info .status {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    font-size: 0.8em;
    border-radius: 5px;
    background-color: #f0ad4e;
    color: #fff;
}

/* Section introduction et présentation du service */
.store-intro {
    max-width: 900px;
    margin: 50px auto 10px auto; /* 40px en haut, 10px en bas */
    text-align: center;
    padding: 0 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.gallery-container {
    margin-top: 10px; /* On réduit de 80px à 10px */
}

.store-intro h1 {
    font-size: 2.5rem;
    color: #333;
    text-transform: none;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.subtitle {
    font-style: italic;
    color: #666;
    margin-bottom: 10px; /* Espace réduit entre "papier d'art" et les tarifs */
}

.sales-conditions {
    display: flex;
    justify-content: center;
    gap: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    flex-wrap: wrap; /* Pour la version mobile */
}

.condition-item {
    font-size: 0.95rem;
    color: #444;
}

.condition-item strong {
    color: #000;
}

/* Modale */
.modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
}

.modal-content {
            background: #000000;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
            text-align: center;
            position: relative;
        }
		
.modal img {
            max-width: 100%;
            border-radius: 10px;
        }

.close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #FFA500;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}


.close:hover {
    color: red;
}

/* modale technique toiles */
/* Fond de la modale (Overlay) */
#artOverlay {
    display: none; 
    position: fixed;
    z-index: 10000; /* Priorité maximale */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Fond noir semi-transparent */
    backdrop-filter: blur(4px); /* Flou artistique sur l'arrière-plan */
    overflow-y: auto; /* Permet de scroller si le contenu est trop long sur mobile */
}

/* Conteneur principal */
.art-container {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 900px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease-out;
}

/* Bouton Fermer */
.art-close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 35px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.2s;
}
.art-close:hover { color: #e67e22; }

/* Organisation Image / Texte */
.art-body {
    display: flex;
    flex-direction: row; /* Côte à côte par défaut */
    gap: 40px;
    margin-top: 10px;
}

/* Coté Image */
.art-image-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.art-image-side img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Coté Infos */
.art-info-side {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.art-info-side h2 {
    margin-top: 0;
    color: #333;
    font-family: 'Arial', sans-serif;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 10px;
}

.art-technical {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.art-technical ul {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
}

.art-price-tag {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

#artDescription {
    font-size: 1.1rem; /* Taille plus confortable (environ 17-18px) */
    line-height: 1.7;   /* Plus d'air entre les lignes pour faciliter la lecture */
    color: #2c3e50;    /* Un gris très foncé, plus lisible que le noir pur */
    text-align: left;  /* Le "justify" peut créer des trous bizarres, "left" est souvent plus naturel */
    margin: 20px 0;    /* Espace au-dessus et en dessous */
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; /* Police propre */
}

/* Animation d'ouverture */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE : Mobile --- */
@media (max-width: 768px) {
    .art-body {
        flex-direction: column; /* On empile sur mobile */
    }
    .art-container {
        margin: 2% auto;
        width: 95%;
        padding: 20px;
    }
}

/* Bouton de filtres */
.filter-buttons {
    text-align: center;
    margin-bottom: 20px;
}

.filter-buttons button {
    background-color: #000;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
}

.filter-buttons button:hover {
    background-color: #FF8C00;
}

/* Effet de zoom et assombrissement au survol */
.thumbnail img, .galerie img {
    transition: all 0.4s ease-in-out;
}

.thumbnail:hover img, .galerie img:hover {
    filter: brightness(70%); /* L'image s'assombrit légèrement */
    transform: scale(1.08);   /* Zoom fluide */
}

/* Ajout d'un petit texte "Voir +" qui apparaît au centre */
.thumbnail, .galerie .item {
    position: relative;
    overflow: hidden;
}

.thumbnail:hover::after {
    content: "VOIR +";
    position: absolute;
    top: 40%; /* Ajusté pour être sur l'image */
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-family: 'Poiret One', cursive;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border-bottom: 1px solid white;
    pointer-events: none; /* Important : ne bloque pas le clic */
}

/* Bouton retour //////////////////////////////////////////////////////////////////////////*/
#scroll-to-top {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 20px;
    background: #333;
    color: #fff;
    border: none;
    padding: 15px 25px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    font-size: 1.5rem; /* Augmente la taille de la flèche */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#scroll-to-top.show {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Bouton vers fiche produit /////////////////////////////////////////////////////////////// */

.btn-style {
    display: inline-block;
    padding: 10px 20px;
    background: #4CAF50;
    color: white;
    border-radius: 5px;
    text-decoration: none; /* Supprime le soulignement du lien */
    cursor: pointer;
}

.btn-style:hover {
    background: #45a049; /* Effet hover */
}

/* Footer ///////////////////////////////////////////////////////////////////////////////////*/
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000; /* Couleur de fond du footer */
  color: #fff;
  display: flex;
  font-family: 'Poiret One', cursive;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px; /* Ajustez cette valeur */
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1); /* Optionnel: ajout d'une ombre pour le style */
  z-index: 1000; /* Assure que le footer reste au-dessus des autres éléments */
}

footer a {
    color: white; /* Couleur blanche par défaut */
    text-decoration: none; /* Supprime le soulignement */
    transition: color 0.3s ease; /* Ajoute une transition pour un effet fluide */
}

footer a:hover {
    color: orange; /* Couleur orange au survol */
    text-decoration: underline; /* Optionnel : ajoute un soulignement au survol */
}


/* Style des icônes de réseaux sociaux */
.footer .footer-left a {
  text-decoration: none;
  color: inherit;
  font-size: 24px;
}

.footer .footer-left a:not(:last-child) {
  margin-right: 15px; /* Espacement entre les icônes */
}

.footer .footer-left a:hover {
  color: #ff9900; /* Couleur des icônes au survol */
}

.footer small {
  font-size: 12px; /* Taille de la police pour le texte de copyright */
  padding-right: 30px; /* Ajoutez cette ligne pour augmenter l'espace à droite */

}

/* fiche produit */

        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
        }

.header-container {
    display : flex;
    justify-content : space-between;
    align-items : center;
}

.container {
    max-width : 1150px;
    margin : 0 auto;
    padding : 50px;
	margin-top: 80px;
    background-color : #ffffff;
    border-radius : 5px;
    box-shadow : 0 2px 5px rgb(0, 0, 0, 0.1);
    font-family : "Manrope", sans-serif;
}

        .fiche-produit {
            display: flex;
            gap: 20px;
			margin-top: 50px;
        }

        .image-section {
            flex: 1;
        }

        .image-section img {
            width: 85%;
            border-radius: 10px;
        }

        .miniatures {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }

        .miniatures img {
            width: 80px;
            height: auto;
            cursor: pointer;
            border: 2px solid transparent;
            border-radius: 5px;
        }

        .miniatures img:hover {
            border-color: #333;
        }

        .info-section {
            flex: 1;
        }

        h1 {
            font-size: 24px;
        }

        .prix {
            font-weight: bold;
            font-size: 20px;
            color: #d9534f;
        }

        .bouton-paypal {
            display: inline-block;
            padding: 10px 20px;
            margin-top: 20px;
            background: #ff9900;
            color: white;
            font-size: 16px;
            text-align: center;
            text-decoration: none;
            border-radius: 5px;
            cursor: pointer;
            border: none;
        }

        .bouton-paypal:hover {
            background: #e68a00;
        }
		
.fiche-produit-vertical {
    display: flex;
    flex-direction: column; /* Aligne les elements verticalement */
    align-items: center; /* Centre le contenu */
    gap: 20px;
    margin-top: 50px;
}

/* Styles pour la section image et info en mode vertical */
.fiche-produit-vertical .image-section,
.fiche-produit-vertical .info-section {
    width: 100%; /* Les sections prennent toute la largeur disponible */
}

.fiche-produit-vertical .info-section {
    text-align: justify; /* Pour une meilleure lecture du texte */
}
		
/* section miniatures ////////////////////////////////////////////////////////////////////////*/

		
		.hero {
		background: linear-gradient(to right, #ED7F10, #feb47b);
		color: white;
		text-align: center;
		padding: 50px 20px;
		width: 100%;
		}
		
		.btn {
			display: inline-block;
			padding: 10px 20px;
			background: #FFA500;
			color: white;
			text-decoration: none;
			border-radius: 5px;
			transition: 0.3s;
			border: 1px solid white;
			cursor: pointer;
		}
		
        .btn:hover {
            background: #218838;
        }
        .presentation, .galerie, .achat {
            padding: 40px 20px;
            text-align: center;
        }
        .presentation img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .galerie {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .galerie .item {
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
            width: 200px;
        }
        .galerie img {
            width: 100%;
            border-radius: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }
		

/* Responsive /////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////*/
@media (min-width: 1024px) {
    .mobile-header, .mobile-nav {
        display: none;
    }

    .desktop-nav {
        display: block;
    }

    #accueil {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
  .thumbnail {
    flex: 1 1 calc(50% - 20px);
  }
  
 /*section orange intro galerie miniuatures */
    .hero {
      background: linear-gradient(to right, #ED7F10, #feb47b);
      color: white;
      text-align: center;
      padding: 70px 20px 20px;
      width: 90%;
    }
	
        .galerie .item {
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
            width: 300px;
        }
	

  /* fiche produit */

    .fiche-produit {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .image-section {
        width: 100%;
    }

    .info-section {
        width: 100%;
		text-align: justify;
    }

    .miniatures {
        justify-content: center;
    }

    h1 {
        font-size: 22px;
    }

    .prix {
        font-size: 18px;
    }

    .bouton-paypal {
        width: 100%;
        font-size: 18px;
        padding: 12px;
    }
  
}

@media (max-width: 480px) {
  .thumbnail {
    flex: 1 1 100%;
  }

  .btn {
    top: 15px;
    left: 15px;
  }
}



/* Paramètres des différents container */

.container h2 {
text-align : center;
}

.content {
margin-top : 100px;
padding : 20px;
}

.section {
margin : 20px auto;
width : 100%;
text-align : center;
padding : 50px;
}


.text-container {
text-align : justify;
}

/* Paramètres des intertitres */
.intertitre {
font-family : 'Dancing Script', cursive;
font-size : 30px;
}


/* Caption text */
.text {
  color: #fff;
  font-size: 24px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

