* {
    font-family: 'Poppins', sans-serif;
}

/* Conteneur personnalisé plus large */ 
.container-wide {
    width: 100%;
    max-width: 1600px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.bg-myinfo {
    margin: 0 0 4rem;
    background-color: #f1f7fe;
    background: linear-gradient(180deg, rgba(241, 247, 254, 1) 0%, rgba(241, 247, 254, 0) 100%);
    border-radius: 1.2rem;
    padding: 3rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.bg-dark-abc{

    background-color: #212529;
}

@media (max-width: 992px) {
  .bg-myinfo {
    padding: 1.2rem;
    flex-direction: column; /* optionnel, si tu veux empiler le contenu */
  }
}
.bg-myinfo-no-radius {
    border-radius: 0 !important;
}

body {
    color: #4c555d;
}

.h1 {
    color: #D3334A;
}

.text-shadow {
    text-shadow: 0px 0px 20px #170A06;
}

.bg-subdark {
    background-color: rgb(15 16 16) !important;
}

h2, .h2, .h2-like {
    display: block;
    font-family: "Poppins", sans-serif;
    text-shadow: 2px 2px 3px rgb(188 188 188 / 36%);
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 4rem;
    color: #D3334A;
    margin-bottom: 3.2rem;
}

@media (max-width: 767.98px) {
    h2, .h2, .h2-like { 
        font-size: 2rem;
        line-height: 3rem;
    }
}

h3, .h3 {
    display: block;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 1.40rem;
    line-height: 2rem;
    color: #4f4f4f;
    margin-bottom: 12px;
    text-shadow: 2px 2px 3px rgb(188 188 188 / 36%);
}

/* ===== STYLES DE BASE ===== */
.custom-check {
    color: #28a745;
    font-weight: 900;
    font-size: 1.8rem;
    margin-right: 8px;
    min-width: 35px;
    text-align: center;
}

.custom-border {
    border-top: 1px dashed #D3334A;
    border-bottom: 1px dashed #D3334A;
}

.custom-border-right {
    border-right: 1px dashed #D3334A;
}

.bg-white {
    background-color: #fff;
}

p {
    font-size: 1.125rem;
    line-height: 1.6;
}

/* ===== HEADER ET CARROUSEL ===== */
.fullscreen-header {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

/* .hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: rgba(0, 0, 0, 0.4);
    z-index: 1;
} */

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* vignettage radial */
    background: radial-gradient(
        circle,
        rgba(0, 0, 0, 0) 60%,       /* centre clair */
        rgba(0, 0, 0, 0.65) 100%     /* bords assombris */
    );
    z-index: 1;
    pointer-events: none; /* évite de bloquer les clics */
}


.header-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% { 
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInDown 0.6s ease-out forwards;
}
/* ===== NAVBAR ===== */
.navbar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease, height 0.3s ease;
    padding: 1.2rem 0; /* hauteur par défaut */
}

.navbar-scrolled {
    background: rgba(200, 201, 202, 0.35) !important;
    background:rgb(0 0 0 / 71%) !important;
    padding: 0.5rem 0; /* réduit la hauteur */
    backdrop-filter: blur(5px);
}

/* ===== LOGO ===== */
.logo-navbar {
    transition: transform 0.4s ease, width 0.4s ease, opacity 0.3s ease;
    transform-origin: left center;
        padding: 15px 20px;
    background: #000;
}

.navbar-scrolled .logo-navbar {
    transform: scale(0.8) translateY(-5px);
    width: 140px;
    opacity: 0.9;
}

/* ===== Liens ===== */
.navlink-overlay {
    color: #fff;
    text-shadow: 0px 0px 20px #170A06;
    font-size: 1.3rem;
    transition: font-size 0.3s ease;
}

.navbar-scrolled .navlink-overlay {
    font-size: 1.15rem; /* un peu plus compact */
}



.navbar .dropdown-menu {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    animation: dropdownFade 0.2s ease-in-out;
}

@keyframes dropdownFade {
    from { 
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu .dropdown-item {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #212529;
}

.navbar .nav-link.active {
    font-weight: 600;
    border-bottom: 2px solid #ffffff33;
}

/* ===== BOUTONS ET CONTRÔLES ===== */
.btn-custom {
    transition: all 0.3s ease;
    transform: translateY(0);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* AJOUTS POUR UNIFORMITÉ */
    width: 300px !important;
    min-width: 300px !important;
    max-width: 300px !important;
    height: 40px !important;
    /* Padding uniforme qui surcharge px-5 py-3 */
    padding: 12px 20px !important;
    /* Centrage du contenu */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    /* Gestion du texte long */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* Empêcher flex de modifier la taille */
    flex: none !important;
    box-sizing: border-box !important;
}

@media (max-width: 576px) {
    /* Centrer les boutons sur mobile */
    .header-content .d-grid { 
        justify-content: center !important;
    }
    .header-content .d-sm-flex {
        flex-direction: column;
        align-items: center;
    }
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-controls:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 15;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== EFFETS DE RÉVÉLATION AU SCROLL ===== */
.reveal-element {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-fade {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* États révélés */
.reveal-element.revealed, 
.reveal-left.revealed, 
.reveal-right.revealed, 
.reveal-scale.revealed, 
.reveal-fade.revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Délais pour animations séquentielles */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* ===== SECTIONS SPÉCIALISÉES ===== */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.guarantee-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.guarantee-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.guarantee-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.why-choose-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
    border-left: 4px solid #0d6efd;
}

.why-choose-card:hover {
    transform: translateY(-3px);
}

.why-choose-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.zoom-effect {
    transition: transform 0.3s ease;
}

.card:hover .zoom-effect {
    transform: scale(1.05);
}

.card {
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* ===== SECTIONS SPÉCIFIQUES ===== */
.confection-metrage-section {
    background-color: #F1F3F5;
}

.confection-metrage-section h1 {
    font-size: 2rem;
}

.confection-metrage-section .lead {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.selliers-professionnels-section {
    height: 800px;
    overflow: hidden;
    position: relative;
}

.selliers-professionnels-section .carousel {
    height: 100%;
}

.selliers-professionnels-section .carousel-inner {
    height: 100%;
}

.selliers-professionnels-section .carousel-item {
    height: 100%;
}

.selliers-professionnels-section .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.selliers-professionnels-section .text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 2rem;
    overflow-y: auto;
}

.selliers-professionnels-section .row.h-100 > .col-lg-6 {
    height: 100%;
}

/* ===== LIGHTBOX POUR GALERIE ===== */
.confection-de-toiles-sur-mesure .carousel-img {
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.confection-de-toiles-sur-mesure ul li {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.4;
}

.side-img {
    width: 200px;
    height: 150px;
    object-fit: cover;
}

.center-img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    /* border: 3px solid #007bff; */
}

.carousel-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -10px;
    right: 10px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #ccc;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .navbar .dropdown-menu { 
        box-shadow: none;
        margin-top: 0;
        border-radius: 0;
    }
    .navbar .dropdown-item {
        padding-left: 2rem;
    }
    .carousel-controls {
        width: 40px;
        height: 40px;
    }
    .carousel-prev {
        left: 15px;
    }
    .carousel-next {
        right: 15px;
    }
    .header-content h1 {
        font-size: 2.5rem !important;
    }
    .selliers-professionnels-section {
        height: auto;
        min-height: 600px;
    }
    .selliers-professionnels-section .row.h-100 > .col-12 {
        min-height: 300px;
    }
    .selliers-professionnels-section .text-content {
        padding: 1.5rem;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .image-carousel { 
        flex-direction: column;
    }
    .side-img, .center-img {
        width: 280px;
        height: 180px;
    }
}

@media (max-width: 575.98px) {
    .btn-custom { 
        padding: 0.5rem 1.2rem !important;
        font-size: 1rem !important;
    }
    .selliers-professionnels-section .text-content {
        padding: 1rem;
    }
    .selliers-professionnels-section {
        min-height: 500px;
    }
}

@media (max-height: 600px) {
    .fullscreen-header { 
        min-height: 600px;
    }
}

.stars {
    color: #FFC107;
    font-size: 0.9rem;
    margin: 5px 0;
}

.total-reviews {
    color: #666;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.review-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #4285F4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.0rem;
}

.reviewer-name {
    font-weight: 600;
        font-size: 13px;
}

.review-date {
    color: #888;
    font-size: 0.7rem;
}

.review-content {
    margin-bottom: 15px;
    line-height: 1.1;
}

.review-content p {
     font-size: 0.90rem;
    line-height: 1.3;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #4285F4;
    font-weight: 600;
}

.cta-section {
    text-align: center;
    padding: 40px 0;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.cta-button {
    display: inline-block;
    background: #4285F4;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #3367D6;
}

.disclaimer {
    text-align: center;
    margin-top: 30px;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .reviews-container { 
        grid-template-columns: 1fr;
    }
    .rating-summary {
        flex-direction: column;
        text-align: center;
    }
}

.nav-link-round-ico i {
    display: inline-flex;
    /* pour activer le centrage flex */
    align-items: center;
    justify-content: center;
    width: 40px;
    /* taille du cercle */
    height: 40px;
    border-radius: 50%;
    /* cercle parfait */
    background-color: #fff;
    /* couleur de fond */
    color: #D3334A;
    /* couleur de l'icône */
    font-size: 18px;
    /* taille de l'icône */
    transition: all 0.3s ease;
    /* effet hover fluide */
}

.nav-link-round-ico i:hover {
    background-color: #D3334A;
    color: #fff;
}

footer input,
footer textarea {
  background-color: #222;
  color: #fff;
  border: 1px solid #444;
}

footer input::placeholder,
footer textarea::placeholder {
  color: #aaa;
}

footer input:focus,
footer textarea:focus {
  border-color: #0d6efd;
  box-shadow: none;
  background-color: #1a1a1a;
}


   .quote::before,
    .quote::after {
      position: absolute;
    
      font-weight: bold;
      color: inherit;
      opacity: 0.2;
      line-height: 1;
    }

    .quote::before {
      content: "«";
      font-size: clamp(4rem, 15vw, 8rem);
      top: -0.5rem;
      left: -1rem;
    }

    .quote::after {
      content: "»";
      font-size: clamp(4rem, 15vw, 8rem);
      bottom: -1rem;
      right: 0.5rem;
    }


    .navbar-toggler {

    border: 0!important;
  
}