/* Reset & Polices */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Variables Couleurs */
        :root {
            --primary: #002d72;
            --secondary: #00B4D8;
            --accent: #FFD700;
            --light: #F8F9FA;
            --dark: #212529;
            --transition: all 0.3s ease;
            --couleur-fond: #f5f3f0;
            --couleur-page: #fffdf9;
            --couleur-reliure: #e8d8c0;
            --couleur-ombre: rgba(0, 0, 0, 0.2);
            --couleur-texte: #4a3e30;
            --couleur-fleche: #8b7d6b;
            --couleur-fleche-hover: #5d5346;
        }

        /* Header */
        header {
            background-color: var(--primary);
            color: white;
            padding: 1rem 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            padding: 0.5rem 0;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        @media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary);
        flex-direction: column;
        align-items: center;
        gap: 0;
       
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .nav-links.active {
        max-height: 500px; /* Ajustez selon le contenu */
    }

    .nav-links a {
        padding: 1rem;
        width: 100%;
        text-align: center;
    }

    .mobile-menu {
        display: block;
    }
}
        /* Hero Banner */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                        url('https://images.unsplash.com/photo-1600585152220-90363fe7e115') center/cover;
            height: 60vh;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 0 2rem;
        }

        .hero-content h1 {
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 1rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
        }

        .hero-content p {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        }
     /* Reset avec préfixe unique */
        .xplmb-slider-reset {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        /* Conteneur principal */
        .xplmb-container-7b3 {
            width: 100%;
            height: 400px;
            position: relative;
            overflow: hidden;
        }
        
        /* Wrapper des slides */
        .xplmb-wrapper-d9f {
            display: flex;
            width: 300%;
            height: 100%;
            transition: transform 1s cubic-bezier(0.33, 0, 0.2, 1);
        }
        
        /* Slide individuelle */
        .xplmb-slide-y2k {
            width: 33.333%;
            height: 100%;
            display: flex;
            position: relative;
        
        }
        
        /* Partie image */
        .xplmb-imgpart-w4p {
            width: 50%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 1;
            transition: opacity 0.8s ease, transform 8s linear;
            transform: scale(1);
        }
        
        /* Partie texte */
        .xplmb-textpart-r5m {
            width: 50%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 40px;
            background-color: #fff;
            overflow: hidden;
        }
        
        /* Styles pour chaque slide */
        .xplmb-slide1-h8j .xplmb-imgpart-w4p {
            background-image: url('img/ban/ifanproban.webp');
        }
        
        .xplmb-slide2-k3v .xplmb-imgpart-w4p {
            background-image: url('img/ban/sanitaire.webp');
        }
        
        .xplmb-slide3-n6q .xplmb-imgpart-w4p {
            background-image: url('img/ban/robineteri.webp');
        }
        
        /* Styles texte avec animations */
        .xplmb-title-g3t {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #333;
            line-height: 1.3;
            transform: translateX(100%);
            opacity: 0;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1) 2s, 
                        opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1) 2s;
        }
        
        .xplmb-desc-f7s {
            font-size: 1rem;
            margin-bottom: 30px;
            color: #666;
            transform: scale(0.8);
            opacity: 0;
            transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 2.3s, 
                        opacity 0.6s ease 2.3s;
        }
        
        .xplmb-btn-c2x {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 10px;
            font-weight: bold;
            transform: translateY(50px);
            opacity: 0;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1) 2.6s, 
                        opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1) 2.6s,
                        background-color 0.3s;
            width: fit-content;
        }
        
        .xplmb-btn-c2x:hover {
            background-color: var(--secondary);
        }
        
        /* Classes actives pour animations */
        .xplmb-slide-active .xplmb-imgpart-w4p {
            transform: scale(1.03);
        }
        
        .xplmb-slide-active .xplmb-title-g3t {
            transform: translateX(0);
            opacity: 1;
        }
        
        .xplmb-slide-active .xplmb-desc-f7s {
            transform: scale(1);
            opacity: 1;
        }
        
        .xplmb-slide-active .xplmb-btn-c2x {
            transform: translateY(0);
            opacity: 1;
        }
        
        /* Animation d'entrée de l'image */
        @keyframes xplmb-img-entrance {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }
        
        .xplmb-slide-active .xplmb-imgpart-w4p {
            animation: xplmb-img-entrance 1s ease-out;
        }
/* Responsive Design */
@media (max-width: 992px) {
    .xplmb-title-g3t {
        font-size: 36px;
    }
    
    .xplmb-textpart-r5m {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .xplmb-container-7b3 {
         
            height: 500px;
          
        }
    .xplmb-slide-y2k {
        flex-direction: column;
    }
    
    .xplmb-imgpart-w4p,
    .xplmb-textpart-r5m {
        width: 100%;
    }
    
    .xplmb-imgpart-w4p {
        height: 300px;
    }
    
    .xplmb-title-g3t {
        font-size: 32px;
    }
    
    .xplmb-textpart-r5m {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .xplmb-title-g3t {
        font-size: 28px;
    }
    
    .xplmb-desc-f7s {
        font-size: 14px;
    }
    
    .xplmb-btn-c2x {
        padding: 10px 20px;
    }
    
    .xplmb-textpart-r5m {
        padding: 20px;
    }
}






        .btn {
            display: inline-block;
            background-color: var(--accent);
            color: var(--dark);
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .btn:hover {
            transform: translateY(-3px);
            background-color: transparent;
            color: var(--accent);
            border-color: var(--accent);
        }
               .section-title {
            text-align: left;
            margin-bottom: 3rem;
            color: var(--primary);
            font-size: clamp(1.5rem, 3vw, 2rem);
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: relative;
            bottom: -10px;
            display:grid;
           

            width: 100px;
            height: 5px;
            background-color: var(--accent);
        }


        .slider-container {
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            padding: 0 30px;
            overflow: hidden;
        }

        .slider {
            display: flex;
            transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
            gap: 20px;
            padding: 10px 0;
            
        }

        .slide {
            min-width: calc(33.33% - 14px);
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .slide:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
        }

        .product-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--light), #e0f7fa);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1rem;
            font-weight: 500;
            position: relative;
            overflow: hidden;
        }

        .product-image::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--accent);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .slide:hover .product-image::after {
            transform: scaleX(1);
        }

        .product-info {
            padding: 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            height: 150px;
        }

        .product-category {
            color: var(--secondary);
            font-size: 0.85rem;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        .product-name {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--primary);
            font-weight: 700;
            line-height: 1.3;
            flex-grow: 1;
        }

        .see-more {
            background: var(--primary);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: var(--transition);
            margin-top: auto;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .see-more:hover {
            background: var(--secondary);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 180, 216, 0.3);
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
            gap: 25px;
        }

        .slider-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .slider-arrow:hover {
            background: var(--primary);
            transform: scale(1.1);
        }

        .slider-arrow:hover svg {
            stroke: white;
        }

        .slider-arrow svg {
            width: 24px;
            height: 24px;
            stroke: var(--primary);
            stroke-width: 2;
            transition: var(--transition);
        }

        .slider-dots {
            display: flex;
            gap: 12px;
        }

        .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #e0e0e0;
            cursor: pointer;
            transition: var(--transition);
        }

        .dot.active {
            background: var(--primary);
            transform: scale(1.2);
            box-shadow: 0 0 0 2px var(--accent);
        }

        @media (max-width: 1024px) {
            .slide {
                min-width: calc(50% - 10px);
            }
            
            .slider-container {
                padding: 0 15px;
            }
        }

        @media (max-width: 640px) {
            .slide {
                min-width: 100%;
            }
            
            .promo-header h1 {
                font-size: 1.8rem;
            }
            
            .slider-arrow {
                width: 42px;
                height: 42px;
            }
        }
        
        
         /* Style de base pour la section */
        .image-section {
            padding: 4rem 2rem;
            background-color: var(--light);
        }
        
        /* Conteneur flex pour les colonnes */
        .image-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px; /* Espace entre les colonnes */
        }
        
        /* Style des colonnes */
        .image-column {
            flex: 1 1 300px; /* Flex-grow, flex-shrink, flex-basis */
            min-width: 0; /* Empêche le débordement */
            position:relative;
        }
        
        /* Style des images */
        .responsive-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .responsive-image:hover {
            transform: scale(1.02);
        }
        
        /* Légende optionnelle */
        .image-caption {
            margin-top: 10px;
            text-align: center;
            font-family: Arial, sans-serif;
            color: #333;
        }
                /* Nouveau style pour l'étiquette "Special Promotion" */
        .image-column::after {
            content: "Special Promotion";
            position: absolute;
            top: 10px;
            right: 0;
            background: #FFD814;
            color: #111;
            padding: 5px 10px;
            font-size: 12px;
            font-weight: bold;
            border-radius: 3px 0 0 3px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            z-index: 2;
            text-transform: uppercase;
        }
        
        /* Optionnel: ajustement pour les petits écrans */
        @media (max-width: 600px) {
            .image-column::after {
                font-size: 10px;
                padding: 3px 6px;
            }
        }
        
        
        
        
        
        
        /* Section Services */
        .services {
            padding: 4rem 2rem;
            background-color: var(--light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }

        .service-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .service-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        /* Section Promotions */
        .promo {
            background-color: var(--light);
            padding: 4rem 2rem;
            text-align: center;
        }

        .promo-banner {
            background-color: var(--secondary);
            color: white;
            padding: 2rem;
            border-radius: 8px;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .promo-banner:hover {
            transform: scale(1.02);
        }

        .promo-banner h2 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            margin-bottom: 1rem;
        }

        .promo-banner p {
            margin-bottom: 0.5rem;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: left;
        }

        .footer-column h3 {
            color: var(--accent);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-column ul li a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-column ul li a:hover {
            color: var(--accent);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: var(--transition);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-links a:hover {
            color: var(--accent);
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        .copyright {
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
         /* produit */
        .produit {
            padding: 4rem 2rem;
            background-color: white;
        }

        .slider-container-9x8b {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            overflow: hidden;
        }



        .slider-7f5k {
            display: flex;
            transition: var(--transition);
            gap: 25px;
            padding: 15px 5px;
        }

        .slide-3m9x {
            min-width: calc(33.33% - 17px);
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0, 45, 114, 0.08);
            transition: var(--transition);
            border: 1px solid rgba(0, 45, 114, 0.1);
            flex: 0 0 auto;
        }

        .slide-3m9x:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 45, 114, 0.15);
        }

        .img-box-4n6f {
            width: 100%;
            height: 220px;
            background: linear-gradient(145deg, var(--light), #e6f7fc);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.1rem;
            font-weight: 600;
            position: relative;
        }

        .img-box-4n6f::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--accent);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .slide-3m9x:hover .img-box-4n6f::after {
            transform: scaleX(1);
        }

        .info-box-7k2j {
            padding: 22px;
            text-align: center;
            display: flex;
            flex-direction: column;
            height: 150px;
        }

        .category-9d3f {
            color: var(--secondary);
            font-size: 0.9rem;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }

        .name-2v8h {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary);
            font-weight: 700;
            line-height: 1.4;
            flex-grow: 1;
        }

        .size-5b3n {
            background: rgba(0, 180, 216, 0.1);
            color: var(--primary);
            border: 1px solid var(--secondary);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.95rem;
            transition: var(--transition);
            margin-top: auto;
            font-weight: 600;
            display: inline-block;
            width: fit-content;
            margin: 10px auto 0;
        }

        .nav-6k9m {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 45px;
            gap: 30px;
        }

        .arrow-3v7d {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
        }

        .arrow-3v7d:hover {
            background: var(--primary);
            transform: scale(1.1);
        }

        .arrow-3v7d:hover .icon-8j2k {
            stroke: white;
        }

        .icon-8j2k {
            width: 26px;
            height: 26px;
            stroke: var(--primary);
            stroke-width: 2.5;
            transition: var(--transition);
        }

        .dots-4m3d {
            display: flex;
            gap: 15px;
        }

        .dot-7f2k {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #e0e0e0;
            cursor: pointer;
            transition: var(--transition);
        }

        .dot-7f2k.active {
            background: var(--primary);
            transform: scale(1.2);
            box-shadow: 0 0 0 3px var(--accent);
        }

        @media (max-width: 1200px) {
            .slide-3m9x {
                min-width: calc(50% - 13px);
            }
        }

        @media (max-width: 768px) {
            .dot-7f2k{
                
                display:none;
            }
            .slider-container-9x8b {
                padding: 0 20px;
            }
            
            .slide-3m9x {
                min-width: 100%;
            }
            
            .title-5t3v {
                font-size: 2rem;
            }
        }
        
        
        

        

        

        
       
.album-container {
    width: 90%;
    max-width: 1200px;
    perspective: 2000px;
    padding: 2rem 0;
    margin: auto;
}

.livre-ouvert {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    margin: 0 auto;
    transform-style: preserve-3d;
}

.double-page {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    transform-style: preserve-3d;
}

.page {
    flex: 1;
    background-color: var(--couleur-page);
    padding: 2rem;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: transform 1s ease;
}

.page-gauche {
    border-radius: 5px 0 0 5px;
    transform-origin: right center;
    box-shadow: -5px 0 15px var(--couleur-ombre);
    z-index: 1;
}

.page-droite {
    border-radius: 0 5px 5px 0;
    transform-origin: left center;
    box-shadow: 5px 0 15px var(--couleur-ombre);
    z-index: 1;
}

.reliure {
    position: absolute;
    width: 20px;
    height: 100%;
    background: linear-gradient(to right, #d4c4a8, #e8d8c0, #d4c4a8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 
        inset -5px 0 15px rgba(0,0,0,0.2),
        inset 5px 0 15px rgba(0,0,0,0.2);
}

.page img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-vide {
    background-color: #f9f5ee;
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: italic;
    color: #b3a99a;
}

.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.fleche {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    background-color: var(--couleur-page);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px var(--couleur-ombre);
    border: none;
    transition: all 0.3s ease;
    z-index: 20;
}

.fleche:hover {
    background-color: var(--couleur-fleche-hover);
}

.fleche:hover svg {
    stroke: white;
}

.fleche svg {
    stroke: var(--couleur-fleche);
    stroke-width: 2;
    transition: all 0.3s ease;
}

.pagination {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
}

/* Animation de tournage de page */
.page-turning {
    position: absolute;
    width: 50%;
    height: 100%;
    transform-origin: left center;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    z-index: 5;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    transition: transform 1s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--couleur-page);
}

.page-turning.right {
    right: 0;
    transform-origin: right center;
    box-shadow: 5px 0 15px rgba(0,0,0,0.2);
}

.page-turning img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* États d'animation */
.turning-left {
    animation: turnPageLeft 1s forwards;
}

.turning-right {
    animation: turnPageRight 1s forwards;
}

@keyframes turnPageLeft {
    0% {
        transform: rotateY(0deg);
        left: 50%;
    }
    100% {
        transform: rotateY(-180deg);
        left: 0;
    }
}

@keyframes turnPageRight {
    0% {
        transform: rotateY(0deg);
        right: 50%;
    }
    100% {
        transform: rotateY(180deg);
        right: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .livre-ouvert {
        height: 60vh;
        min-height: 400px;
    }
    
    .fleche {
        width: 40px;
        height: 40px;
    }
    
    .page {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .livre-ouvert {
        height: 50vh;
        min-height: 300px;
    }
    
    .album-container {
        width: 95%;
    }
    
    .fleche {
        width: 35px;
        height: 35px;
    }
    
    .reliure {
        width: 15px;
    }
}



/* map css*/
.map-section {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 40px auto;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      border-radius: 10px;
      overflow: hidden;
    }

    .info {
      background-color: #0e154a;
      color: white;
      flex: 1 1 400px;
      padding: 40px;
    }

    .info h2 {
      color: #FFD700;
      font-size: 28px;
      margin-bottom: 10px;
    }

    .info h3 {
      margin-top: 20px;
      margin-bottom: 10px;
      font-size: 20px;
      color: #ffffff;
    }

    .info ul {
      list-style-type: disc;
      margin-left: 20px;
    }

    .info p {
      line-height: 1.6;
    }

    .map {
      flex: 1 1 400px;
    }

    .map iframe {
      width: 100%;
      height: 100%;
      min-height: 400px;
      border: 0;
    }