/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    min-height: 100px;
}

.nav-logo a {
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff6b6b;
    transition: color 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.nav-logo a:hover .logo-text {
    color: #ff5252;
    transform: scale(1.05);
}

.nav-phone-section {
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
}

.phone-group {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.phone-emoji {
    font-size: 1.8rem;
    animation: pulse 2s ease-in-out infinite;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b6b;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

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

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    cursor: pointer;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b6b;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Bandeau Événement */
.event-banner {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 15px 0;
    position: relative;
    top: 100px; /* Compenser la hauteur de la navbar fixe */
    z-index: 999;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.event-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    text-align: center;
}

.event-banner-icon {
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.event-banner-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    min-width: 300px;
}

.event-banner-text strong {
    color: #fff;
    font-weight: 700;
}

.event-banner-link {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.event-banner-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.event-banner-link i {
    font-size: 1.2rem;
}

/* Responsive pour le bandeau */
@media (max-width: 768px) {
    .event-banner-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .event-banner-text {
        font-size: 1rem;
        min-width: auto;
    }
    
    .event-banner-link {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .event-banner {
        padding: 12px 0;
    }
    
    .event-banner-text {
        font-size: 0.95rem;
    }
    
    .event-banner-icon {
        font-size: 1.5rem;
    }
}

/* Section Hero */
.hero {
    padding: 150px 0 40px;
    color: #333;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: -2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 154, 158, 0.3);
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 700;
    font-weight: bold;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    z-index: 10;
}

.btn-primary {
    background: #ff6b6b;
    color: #fff;
    border-color: #ff6b6b;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    cursor: pointer;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #ff5252;
    border-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    outline: none;
}

.btn-secondary {
    background: transparent;
    color: #ff6b6b;
    border-color: #ff6b6b;
    cursor: pointer;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #ff6b6b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    outline: none;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: bounce 2s ease-in-out infinite;
}

.hero-logo-image {
    width: 500px;
    height: 500px;
    object-fit: contain;
    border-radius: 50px;
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite, pulse 2s ease-in-out infinite;
    cursor: pointer;
}

.hero-logo-image:hover {
    transform: scale(1.1);
    box-shadow: 0 25px 70px rgba(255, 107, 107, 0.4);
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Sections communes */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ff6b6b;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-description {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Section À propos */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 600px;
}

.about-text-left,
.about-text-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-intro h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ff6b6b;
    font-weight: 700;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 2rem;
}

.about-sandy h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #4ecdc4;
    font-weight: 700;
}

.sandy-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.about-sandy p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.sandy-credo {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff6b6b;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    border-radius: 15px;
    margin-top: 2rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.about-image img:hover {
    transform: scale(1.02);
}

.image-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.image-placeholder p {
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

/* Section Avis Google */
.reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.reviews-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-stars i {
    color: #ffd700;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

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

.google-badge {
    background: #4285f4;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.reviews-footer {
    text-align: center;
}

.btn-outline {
    background: transparent;
    color: #4285f4;
    border: 2px solid #4285f4;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background: #4285f4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(66, 133, 244, 0.3);
}

/* Section Services */
.services {
    padding: 40px 0 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.service-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #4ecdc4;
    margin-bottom: 1rem;
    font-style: italic;
}

.service-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Section Équipements */
.equipments {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
}

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


.equipment-item {
    background: white;
    padding: 1.5rem 1rem;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.equipment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.equipment-image {
    width: 100%;
    height: 120px;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 15px;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.equipment-item:hover .equipment-image img {
    transform: scale(1.05);
}

/* Optimisation spécifique pour les vignettes Stands Gourmands */
#stands-gourmands .equipment-image img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
    display: block;
}

/* Optimisation pour les images PNG des équipements */
.equipment-image img[src*=".png"] {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    image-rendering: auto;
}


.image-placeholder {
    font-size: 3rem;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.equipment-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 0.6rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    line-height: 1.2;
}

.equipment-description {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

.equipment-price {
    margin: 1rem 0;
    text-align: center;
}

.price-main {
    font-weight: 800;
    color: #ff6b6b;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(255, 107, 107, 0.3);
    letter-spacing: 0.5px;
}

.price-note {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    line-height: 1.2;
    font-weight: 500;
}

.equipment-link {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.equipment-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}



/* Section FAQ */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #ff5252 0%, #26a69a 100%);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Section Contact */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-right {
    display: flex;
    flex-direction: column;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.contact-item p {
    color: #6b7280;
}

.contact-phone {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-phone:hover {
    color: #ff6b6b;
    text-decoration: none;
}




.contact-form {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-section ul li a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-links a:hover {
    background: #ff6b6b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.footer-credit {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.footer-link {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4ecdc4;
    text-decoration: underline;
}

/* Page Équipements - Styles spécifiques */
.equipements-hero {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    padding: 100px 0 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30vh;
    color: #333;
}

.equipements-hero .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.equipements-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.equipements-hero .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.equipements-section {
    padding: 80px 0;
}

.equipements-section.bg-light {
    background-color: #f8f9fa;
}

.equipements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.equipment-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.equipment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.equipment-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: white;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 15px;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.equipment-card:hover .equipment-image img {
    transform: scale(1.05);
}

.equipment-placeholder {
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 4rem;
}

.equipment-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.equipment-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.equipment-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.equipment-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
}

.spec-item i {
    color: #ff6b9d;
    font-size: 0.9rem;
}

.equipment-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b9d;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid #ff6b9d;
    border-radius: 25px;
    background: transparent;
    margin-top: 1rem;
}

.equipment-link:hover {
    background: #ff6b9d;
    color: white;
    transform: translateY(-2px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    padding: 80px 0;
    text-align: center;
    color: #333;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.cta-buttons .btn-primary {
    background: #ff6b9d;
    color: white;
}

.cta-buttons .btn-primary:hover {
    background: #ff8fab;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.cta-buttons .btn-secondary:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
}

/* Navigation active state */
.nav-link.active {
    color: #ff6b9d;
    font-weight: 600;
}

/* Responsive Design - Mobile First */

/* Mobile (jusqu'à 768px) */
@media (max-width: 768px) {
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }


    .logo-text {
        font-size: 1.8rem;
    }

    .nav-phone-section {
        margin-right: 0.3rem;
    }

    .phone-group {
        gap: 0.2rem;
    }

    .phone-emoji {
        font-size: 1.5rem;
    }

    .phone-number {
        font-size: 1.5rem;
    }

    /* Ajuster la navbar sur mobile */
    .nav-container {
        height: 80px;
        min-height: 80px;
    }

    .hero {
        padding: 80px 0 40px;
        min-height: 45vh;
    }
    
    .hero-video {
        object-position: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        font-weight: bold;
    }

    .hero-logo-image {
        width: 300px;
        height: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-left {
        gap: 1.5rem;
    }
    
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    /* Page Équipements - Mobile */
    .equipements-hero {
        padding: 80px 0 20px;
        min-height: 25vh;
    }
    
    .equipements-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .equipements-hero .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .equipements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .equipment-card {
        margin-bottom: 20px;
    }
    
    .equipment-image {
        height: 150px;
    }
    
    .equipment-image img {
        object-fit: contain;
        object-position: center;
    }
    
    /* Spécifique pour les best sellers sur mobile */
    #equipments .equipment-image img {
        object-fit: contain;
        object-position: center;
    }
    
    .equipment-content {
        padding: 20px;
    }
    
    .equipment-title {
        font-size: 1.0rem;
    }
    
    .equipment-specs {
        gap: 10px;
    }
    
    .spec-item {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .privacy-modal.show {
        padding: 1rem;
    }
    
    .privacy-modal-content {
        max-height: 95vh;
    }
    
    .privacy-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .privacy-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .privacy-modal-body {
        padding: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
    
    .contact-modal.show {
        padding: 1rem;
    }
    
    .contact-modal-content {
        max-height: 95vh;
    }
    
    .contact-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .contact-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .contact-modal-body {
        padding: 1.5rem;
    }
    
    .reviews-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-text {
        font-size: 0.95rem;
    }

    .hero-buttons {
        justify-content: center;
    }

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

/* Tablette (768px à 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-container {
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
        font-weight: bold;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text-left,
    .about-text-right {
        order: 0;
    }
    
    .about-image {
        order: 1;
    }

    .services {
        padding: 30px 0 60px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-emoji {
        font-size: 2.5rem;
    }

    .service-number {
        font-size: 1.2rem;
    }

    .service-subtitle {
        font-size: 0.9rem;
    }

    .service-description {
        font-size: 0.85rem;
    }


    .equipment-image {
        height: 160px;
    }
    
    .equipment-image img {
        object-fit: contain;
        object-position: center;
    }
    
    /* Spécifique pour les best sellers sur tablette */
    #equipments .equipment-image img {
        object-fit: contain;
        object-position: center;
    }

    .equipment-title {
        font-size: 1.2rem;
    }

    .equipment-description {
        font-size: 0.8rem;
    }

    .equipment-link {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .price-main {
        font-size: 1rem;
        letter-spacing: 0.3px;
    }
    
    .price-note {
        font-size: 0.75rem;
        font-weight: 500;
    }


    /* Ajuster la navbar sur tablette */
    .nav-container {
        height: 90px;
        min-height: 90px;
    }

    /* Ajuster le hero sur tablette */
    .hero {
        padding: 90px 0 40px;
        min-height: 50vh;
    }

    .hero-logo-image {
        width: 400px;
        height: 400px;
    }

    .nav-phone-section {
        margin-right: 0.4rem;
    }

    .phone-group {
        gap: 0.25rem;
    }

    .phone-emoji {
        font-size: 1.6rem;
    }

    .phone-number {
        font-size: 1.6rem;
    }

    .logo-text {
        font-size: 2rem;
    }

    .services {
        padding: 35px 0 70px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .service-card {
        padding: 1.8rem 1.2rem;
    }

    .service-emoji {
        font-size: 2.8rem;
    }


    .equipment-image {
        height: 130px;
    }
    
    .equipment-image img {
        object-fit: contain;
        object-position: center;
    }
}

/* Desktop (1024px et plus) */
@media (min-width: 1025px) {
    .hero-title {
        font-size: 3.5rem;
        font-weight: bold;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Spécifique pour les best sellers sur desktop */
    #equipments .equipment-image img {
        object-fit: contain;
        object-position: center;
    }
}

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

.hero-content,
.about-content,
.service-card,
.portfolio-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar personnalisée */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ff6b6b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff5252;
}

/* Message de confirmation du formulaire */
.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.show {
    display: block !important;
    animation: slideIn 0.3s ease;
}

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

/* Pop-up Cookies */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: #ecf0f1;
}

.cookie-text p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #bdc3c7;
}

.cookie-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.cookie-link:hover {
    color: #5dade2;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-weight: 500;
}

.cookie-buttons .btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    color: white;
}

.cookie-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #ff5252 0%, #26a69a 100%);
    transform: translateY(-2px);
}

.cookie-buttons .btn-secondary {
    background: transparent;
    color: #bdc3c7;
    border: 2px solid #7f8c8d;
}

.cookie-buttons .btn-secondary:hover {
    background: #7f8c8d;
    color: white;
    transform: translateY(-2px);
}

/* Modal Politique de confidentialité */
.privacy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
}

.privacy-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.privacy-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.privacy-modal-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.privacy-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.privacy-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.privacy-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.privacy-modal-body {
    padding: 2rem;
}

.privacy-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.privacy-section:last-of-type {
    border-bottom: none;
}

.privacy-section h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.privacy-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.privacy-footer {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
}

.privacy-footer p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Modal Formulaire de contact */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
}

.contact-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.contact-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

.contact-modal-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.contact-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.contact-modal-body {
    padding: 2rem;
}

.contact-form-modal .form-group {
    margin-bottom: 1.5rem;
}

.contact-form-modal input,
.contact-form-modal textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.contact-form-modal input:focus,
.contact-form-modal textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.contact-form-modal .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Styles pour le carousel modal */
.carousel-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.carousel-modal.show {
    display: flex;
}

.carousel-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 90vw;
    max-height: 90vh;
    width: 800px;
    overflow: hidden;
    position: relative;
}

.carousel-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.carousel-modal-header h2 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
}

.carousel-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-close:hover {
    color: #333;
}

.carousel-modal-body {
    padding: 1.5rem;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.carousel-image-container {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    background: #f8f9fa;
}

.carousel-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

.carousel-thumbnails {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.carousel-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.carousel-thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.carousel-thumbnail.active {
    border-color: #ff6b6b;
    opacity: 1;
}

.carousel-counter {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.equipment-img-clickable {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.equipment-img-clickable:hover {
    transform: scale(1.05);
}

/* Responsive pour le carousel */
@media (max-width: 768px) {
    .carousel-modal-content {
        width: 95vw;
        max-height: 95vh;
    }
    
    .carousel-image-container {
        height: 300px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: -20px;
    }
    
    .carousel-next {
        right: -20px;
    }
    
    .carousel-thumbnail {
        width: 50px;
        height: 50px;
    }
}
