/* =====================================================
   ENIS EVENTS - Vente & Location Chapiteaux et Tentes
   ===================================================== */

/* === VARIABLES CSS === */
:root {
    /* Couleurs principales */
    --primary-color: #951b1c;        /* Rouge Bordeaux */
    --primary-dark: #731515;         /* Bordeaux foncé */
    --primary-light: #A5315F;        /* Bordeaux clair */

    /* Couleurs secondaires */
    --secondary-color: #2C3E50;      /* Gris foncé */
    --accent-color: #E8B923;         /* Or/Doré */

    /* Couleurs neutres */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #DEE2E6;
    --dark-gray: #495057;
    --black: #212529;

    /* Typographie */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Georgia', serif;

    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Ombres */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

a {
    text-decoration: none;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
}



/* === NAVIGATION === */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    transition: var(--transition-fast);
}

.navbar-brand:hover {
    color: var(--primary-dark) !important;
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    margin: 0 var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm) !important;
    position: relative;
    transition: var(--transition-normal);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/tente-et-chapiteaux.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: 0;
}

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

.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

/* === BUTTONS === */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.btn-scroll {
    background-color: var(--primary-color);
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.btn-scroll:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: scale(1.08);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background-color: transparent;
    padding: var(--spacing-sm) var(--spacing-md);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-normal);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    color: var(--white);
    border: 2px solid var(--white);
    background-color: #FFFFFF30;
    padding: var(--spacing-sm) var(--spacing-md);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-normal);
}

.btn-outline:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary-color);
    transform: scale(1.05);
}

/* === SECTIONS === */
.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.section-title h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: var(--spacing-sm) auto 0;
    border-radius: 2px;
}

.section-bg-light {
    background-color: var(--light-gray);
}

/* === CARDS === */
.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    margin-bottom: var(--spacing-md);
    border: none;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card .card-body {
    padding: var(--spacing-md);
}

.product-card .card-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.product-card .price {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: var(--spacing-sm) 0;
}

.product-card .badge {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* === GALLERY === */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, var(--primary-color) 100%);
    opacity: 0;
    transition: var(--transition-normal);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-md);
}

.gallery-item:hover .overlay {
    opacity: 0.9;
}

.gallery-item .overlay-text {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.gallery-item:hover .overlay-text {
    transform: translateY(0);
}

/* === CONTACT FORM === */
.contact-form {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.form-control {
    border: 2px solid var(--medium-gray);
    padding: var(--spacing-sm);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 21, 56, 0.15);
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* === CONTACT INFO === */
.contact-info-box {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    margin-bottom: var(--spacing-md);
    transition: var(--transition-normal);
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-info-box .icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto var(--spacing-sm);
}

.contact-info-box h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

/* === FOOTER === */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer h5 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: 1.3rem;
}

.footer a {
    color: var(--medium-gray);
    transition: var(--transition-fast);
}

.footer a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer .social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.5rem;
    transition: var(--transition-normal);
}

.footer .social-links a:hover {
    background-color: var(--primary-light);
    transform: translateY(-5px);
    padding-left: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    text-align: center;
    color: var(--medium-gray);
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section {
        padding: var(--spacing-md) 0;
    }

    .product-card img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
}

/* === UTILITIES === */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.border-primary-custom {
    border-color: var(--primary-color) !important;
}

/* === SWIPER CAROUSEL - NOS RÉALISATIONS === */
.realisations-swiper {
    width: 100%;
    padding: 2rem 0 4rem 0;
    position: relative;
}

.realisations-swiper .swiper-wrapper {
    padding-bottom: 5rem;
}

.realisations-swiper .swiper-slide {
    width: 70%;
    height: auto;
    opacity: 0.5;
    transition: var(--transition-normal);
}

.realisations-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1.05);
}

.realisations-swiper .swiper-slide-next {
    opacity: 0.7;
}

.gallery-carousel-item {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    cursor: grab;
    transition: var(--transition-normal);
}

.gallery-carousel-item:active {
    cursor: grabbing;
}

.gallery-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-carousel-item:hover img {
    transform: scale(1.1);
}

.gallery-carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.gallery-carousel-item:hover .gallery-carousel-overlay {
    transform: translateY(0);
}

.gallery-carousel-overlay h4 {
    color: var(--white);
    margin: 0;
    font-size: 1.5rem;
}

/* Swiper Navigation Buttons */
.realisations-swiper .swiper-button-next,
.realisations-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.realisations-swiper .swiper-button-next:after,
.realisations-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 900;
}

.realisations-swiper .swiper-button-next:hover,
.realisations-swiper .swiper-button-prev:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Swiper Pagination */
.realisations-swiper .swiper-pagination {
    bottom: 0;
}

.realisations-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    opacity: 0.5;
    transition: var(--transition-fast);
}

.realisations-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
    background-color: var(--primary-color);
}

/* Responsive Carousel */
@media (max-width: 992px) {
    .realisations-swiper .swiper-slide {
        width: 80%;
    }

    .gallery-carousel-item {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .realisations-swiper .swiper-slide {
        width: 90%;
    }

    .gallery-carousel-item {
        height: 300px;
    }

    .realisations-swiper .swiper-button-next,
    .realisations-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .realisations-swiper .swiper-button-next:after,
    .realisations-swiper .swiper-button-prev:after {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .realisations-swiper .swiper-slide {
        width: 95%;
    }

    .gallery-carousel-item {
        height: 250px;
    }

    .gallery-carousel-overlay h4 {
        font-size: 1.2rem;
    }
}

/* === SWIPER CAROUSEL - PAGE TENTES (Slide actif plus grand) === */
.tentes-swiper {
    width: 100%;
    padding: 3rem 0 5rem 0;
    position: relative;
    overflow: hidden;
}

.tentes-swiper .swiper-wrapper {
    padding-bottom: 3rem;
    align-items: center;
}

.tentes-swiper .swiper-slide {
    width: 30%;
    height: auto;
    opacity: 0.6;
    transform: scale(0.85);
    transition: all 0.5s ease;
}

/* Slide actif - PLUS GRAND */
.tentes-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1.25);
    z-index: 10;
}

/* Slides à côté - plus petits */
.tentes-swiper .swiper-slide-prev,
.tentes-swiper .swiper-slide-next {
    opacity: 0.7;
    transform: scale(0.9);
}

.tentes-swiper .gallery-carousel-item {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: grab;
    transition: all 0.5s ease;
}

.tentes-swiper .swiper-slide-active .gallery-carousel-item {
    box-shadow: var(--shadow-xl);
}

.tentes-swiper .gallery-carousel-item:active {
    cursor: grabbing;
}

.tentes-swiper .gallery-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.tentes-swiper .gallery-carousel-item:hover img {
    transform: scale(1.08);
}

/* Navigation Buttons - Tentes */
.tentes-swiper .swiper-button-next,
.tentes-swiper .swiper-button-prev {
    width: 55px;
    height: 55px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.tentes-swiper .swiper-button-next:after,
.tentes-swiper .swiper-button-prev:after {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 900;
}

.tentes-swiper .swiper-button-next:hover,
.tentes-swiper .swiper-button-prev:hover {
    background-color: var(--primary-dark);
    transform: scale(1.15);
    box-shadow: var(--shadow-xl);
}

/* Pagination - Tentes */
.tentes-swiper .swiper-pagination {
    bottom: 0;
}

.tentes-swiper .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background-color: var(--primary-color);
    opacity: 0.4;
    transition: var(--transition-fast);
}

.tentes-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 35px;
    border-radius: 7px;
    background-color: var(--primary-color);
}

/* Responsive - Tentes Carousel */
@media (max-width: 1200px) {
    .tentes-swiper .swiper-slide {
        width: 50%;
    }

    .tentes-swiper .swiper-slide-active {
        transform: scale(1.2);
    }
}

@media (max-width: 992px) {
    .tentes-swiper .swiper-slide {
        width: 60%;
    }

    .tentes-swiper .swiper-slide-active {
        transform: scale(1.15);
    }

    .tentes-swiper .gallery-carousel-item {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .tentes-swiper .swiper-slide {
        width: 75%;
    }

    .tentes-swiper .swiper-slide-active {
        transform: scale(1.1);
    }

    .tentes-swiper .gallery-carousel-item {
        height: 300px;
    }

    .tentes-swiper .swiper-button-next,
    .tentes-swiper .swiper-button-prev {
        width: 45px;
        height: 45px;
    }

    .tentes-swiper .swiper-button-next:after,
    .tentes-swiper .swiper-button-prev:after {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .tentes-swiper .swiper-slide {
        width: 85%;
    }

    .tentes-swiper .swiper-slide-active {
        transform: scale(1.05);
    }

    .tentes-swiper .gallery-carousel-item {
        height: 250px;
    }
}

/* === TITRE MODERNE - NOTRE ESPACE ÉVÉNEMENTIEL === */
.hero-carousel-title {
    text-align: center;
    padding: 4rem 0 3rem 0;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.hero-carousel-title .title-decoration-line {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.hero-carousel-title .main-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.hero-carousel-title .title-underline {
    width: 200px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 0.5rem;
    border-radius: 2px;
    position: relative;
}

.hero-carousel-title .title-underline::before,
.hero-carousel-title .title-underline::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.hero-carousel-title .title-underline::before {
    left: -15px;
}

.hero-carousel-title .title-underline::after {
    right: -15px;
}

.hero-carousel-title .subtitle {
    font-size: 1.3rem;
    color: var(--dark-gray);
    font-weight: 400;
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-carousel-title .title-decoration-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 0.5rem;
}

.hero-carousel-title .title-decoration-dots span {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s infinite;
}

.hero-carousel-title .title-decoration-dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-carousel-title .title-decoration-dots span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Responsive Titre */
@media (max-width: 768px) {
    .hero-carousel-title {
        padding: 3rem 1rem 2rem;
    }

    .hero-carousel-title .main-title {
        font-size: 2.5rem;
    }

    .hero-carousel-title .subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-carousel-title .main-title {
        font-size: 2rem;
    }

    .hero-carousel-title .subtitle {
        font-size: 1rem;
    }
}

/* === HERO CAROUSEL 3D - EFFET COVERFLOW (Page Accueil) === */
.hero-carousel-section {
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
    padding-bottom: 3rem;
}

.hero-carousel-3d {
    width: 100%;
    height: 550px;
    padding: 2rem 0 4rem 0;
    position: relative;
    overflow: visible !important;
    perspective: 1200px;
}

.hero-carousel-3d .swiper-wrapper {
    align-items: center;
}

.hero-carousel-3d .swiper-slide {
    width: 900px;
    height: 600px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Image centrale - GRANDE, NETTE, AU PREMIER PLAN */
.hero-carousel-3d .swiper-slide-active {
    z-index: 10 !important;
}

/* Effet sur les images non actives */
.hero-carousel-3d .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.5;
    filter: brightness(0.9);
}

.hero-carousel-3d .hero-carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    /* box-shadow: 0 20px 60px rgba(0,0,0,0.3); */
    cursor: grab;
    transition: all 0.6s ease;
}

/* .hero-carousel-3d .swiper-slide-active .hero-carousel-item {
    box-shadow: 0 30px 80px rgba(149, 27, 28, 0.4);
    border: 4px solid var(--primary-color);
} */

.hero-carousel-3d .hero-carousel-item:active {
    cursor: grabbing;
}

.hero-carousel-3d .hero-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
}

.hero-carousel-3d .swiper-slide-active .hero-carousel-item img {
    transform: scale(1.05);
}

/* Navigation Buttons - Hero Carousel */
.hero-carousel-3d .swiper-button-next,
.hero-carousel-3d .swiper-button-prev {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    transition: var(--transition-normal);
    box-shadow: 0 8px 20px rgba(149, 27, 28, 0.3);
    z-index: 20;
}

.hero-carousel-3d .swiper-button-next:after,
.hero-carousel-3d .swiper-button-prev:after {
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 900;
}

.hero-carousel-3d .swiper-button-next:hover,
.hero-carousel-3d .swiper-button-prev:hover {
    transform: scale(1.2);
    box-shadow: 0 12px 30px rgba(149, 27, 28, 0.5);
}

/* Pagination - Hero Carousel */
.hero-carousel-3d .swiper-pagination {
    bottom: 20px;
    z-index: 20;
}

.hero-carousel-3d .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: var(--white);
    opacity: 0.5;
    transition: var(--transition-fast);
    border: 2px solid var(--primary-color);
}

.hero-carousel-3d .swiper-pagination-bullet-active {
    opacity: 1;
    width: 40px;
    border-radius: 8px;
    background-color: var(--primary-color);
}

/* Responsive - Hero Carousel 3D */
@media (max-width: 1400px) {
    .hero-carousel-3d {
        height: 550px;
        perspective: 1000px;
    }

    .hero-carousel-3d .swiper-slide {
        width: 550px;
        height: 450px;
    }
}

@media (max-width: 1200px) {
    .hero-carousel-3d {
        height: 500px;
        perspective: 900px;
    }

    .hero-carousel-3d .swiper-slide {
        width: 500px;
        height: 400px;
    }
}

@media (max-width: 992px) {
    .hero-carousel-3d {
        height: 450px;
        perspective: 800px;
    }

    .hero-carousel-3d .swiper-slide {
        width: 450px;
        height: 350px;
    }

    /* Réduire légèrement l'opacité sur tablettes */
    .hero-carousel-3d .swiper-slide:not(.swiper-slide-active) {
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    .hero-carousel-3d {
        height: 400px;
        padding: 3rem 0 5rem 0;
        perspective: 700px;
    }

    .hero-carousel-3d .swiper-slide {
        width: 380px;
        height: 300px;
    }

    /* Boutons de navigation plus petits */
    .hero-carousel-3d .swiper-button-next,
    .hero-carousel-3d .swiper-button-prev {
        width: 50px;
        height: 50px;
    }

    .hero-carousel-3d .swiper-button-next:after,
    .hero-carousel-3d .swiper-button-prev:after {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-carousel-3d {
        height: 350px;
        perspective: 600px;
    }

    .hero-carousel-3d .swiper-slide {
        width: 320px;
        height: 280px;
    }

    .hero-carousel-3d .hero-carousel-item {
        border-radius: 15px;
    }

    /* Boutons encore plus petits sur mobile */
    .hero-carousel-3d .swiper-button-next,
    .hero-carousel-3d .swiper-button-prev {
        width: 45px;
        height: 45px;
    }

    .hero-carousel-3d .swiper-button-next:after,
    .hero-carousel-3d .swiper-button-prev:after {
        font-size: 1rem;
    }
}
