/* ============================================
   VIP - Vision International des Produits
   Style : Industrie Luxe Moderne
   Version : 2.0 Sécurisée
   ============================================ */

/* Reset CSS sécurisé */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #D4AF37;
    --dark-bg: #111111;
    --light-bg: #F8F9FA;
    --text-dark: #333333;
    --text-light: #9c9c9c;
    --transition-speed: 0.3s;
}

/* Améliorations d'accessibilité */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    font-size: 100%;
}

:focus-visible {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    font-family: 'Inter', 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-bg);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 30px);
    overflow: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--dark-bg);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-dark);
    margin-bottom: 1em;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 15px 0;
    transition: all var(--transition-speed) ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.vip {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #111;
    line-height: 1;
}

.subtitle {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-link span {
    position: relative;
    z-index: 2;
}

.underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
    z-index: 1;
}

.nav-link:hover {
    color: #D4AF37;
}

.nav-link:hover .underline {
    width: 100%;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F8F9FA;
    padding: 10px 20px;
    border-radius: 30px;
    border: 2px solid #D4AF37;
}

.nav-contact i {
    color: #D4AF37;
    font-size: 1.1rem;
}

.nav-contact span {
    font-weight: 600;
    color: #111;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #111;
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: #FFFFFF;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-logo {
    margin-bottom: 30px;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.main-logo img {
    height: 150px;
    width: auto;
    filter: brightness(1.2);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #D4AF37;
    margin-bottom: 50px;
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #D4AF37;
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #D4AF37;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.gold-line {
    width: 80px;
    height: 3px;
    background: #D4AF37;
    margin: 20px auto;
}

.gold-line.left {
    margin: 20px 0;
}

.section-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============ SECTION VIDÉO EXPERTISE ============ */
.video-expertise-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 992px) {
    .video-expertise-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.video-container-auto {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: #000;
}

.video-container-auto video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.video-container-auto:hover video {
    transform: scale(1.01);
}

.video-label {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.video-label i {
    font-size: 1.2rem;
}

.video-description {
    background: #FFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.video-description h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #111;
}

.video-description h3 i {
    color: #D4AF37;
}

.video-description p {
    margin-bottom: 25px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

.video-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight i {
    color: #D4AF37;
    font-size: 1.2rem;
}

.highlight span {
    color: #333;
    font-weight: 500;
}

/* Commerciaux Section */
.commerciaux {
    background: #FFFFFF;
}

.commerciaux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.commercial-card {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.commercial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #D4AF37;
}

.commercial-photo {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.commercial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.commercial-card:hover .commercial-photo img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.commercial-card:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay i {
    font-size: 3rem;
    color: #D4AF37;
}

.commercial-info {
    padding: 25px;
    text-align: center;
}

.commercial-info h3 {
    margin-bottom: 10px;
    color: #111;
}

.role {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 25px;
    background: #D4AF37;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #D4AF37;
}

.contact-btn:hover {
    background: transparent;
    color: #D4AF37;
}

.commerciaux-cta {
    text-align: center;
    padding: 40px;
    background: #F8F9FA;
    border-radius: 10px;
    border: 2px dashed rgba(212, 175, 55, 0.3);
}

.commerciaux-cta p {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: #111;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #111;
}

.btn-primary:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    position: relative;
}

.about-badge {
    position: absolute;
    top: -20px;
    right: 0;
    background: #D4AF37;
    color: #000;
    padding: 15px 25px;
    border-radius: 5px;
    text-align: center;
    min-width: 120px;
}

.year {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    color: #000;
}

.about-text h3 {
    margin-bottom: 25px;
    color: #111;
    position: relative;
    padding-bottom: 15px;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #D4AF37;
}

.about-text p {
    margin-bottom: 25px;
    color: #555;
}

.about-features {
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.feature i {
    color: #D4AF37;
    font-size: 1.5rem;
    margin-top: 3px;
}

.feature h4 {
    color: #111;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid #D4AF37;
    border-radius: 5px;
    z-index: -1;
}

/* Produits Section */
.produits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.produit-card {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.produit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 30%, rgba(212, 175, 55, 0.03) 100%);
    z-index: 1;
    pointer-events: none;
}

.produit-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #D4AF37;
}

.produit-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.produit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.produit-card:hover .produit-image img {
    transform: scale(1.1);
}

.produit-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #D4AF37;
    color: #000;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.produit-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.produit-content h3 {
    margin-bottom: 15px;
    color: #111;
}

.produit-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
}

.produit-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.produit-tags span {
    padding: 5px 12px;
    background: #F8F9FA;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #555;
}

/* Logistique Section */
.logistique-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.logistique-text h2 {
    margin-bottom: 20px;
}

.logistique-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.logistique-points {
    margin-top: 40px;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.point i {
    color: #D4AF37;
    font-size: 1.8rem;
    margin-top: 5px;
}

.point h4 {
    color: #111;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.point p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

.logistique-image {
    position: relative;
}

.logistique-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.image-label {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Contact Section */
.contact {
    background: #FFFFFF;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: #F8F9FA;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #D4AF37;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 20px;
}

.contact-info h3 {
    color: #111;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.detail {
    color: #333;
    margin-bottom: 8px;
    font-size: 1rem;
}

.phone, .email {
    font-weight: 600;
    color: #111;
}

.action {
    color: #D4AF37;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 10px;
}

.horaires-contact {
    background: #111;
    color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.horaires-contact h3 {
    color: #D4AF37;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.horaires-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.jour {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.jour span:first-child {
    font-weight: 500;
    color: #FFFFFF;
}

.heures {
    font-size: 1.1rem;
    color: #D4AF37;
    font-weight: 600;
}

.ferme {
    color: #999;
}

/* Footer */
.footer {
    background: #111;
    color: #FFFFFF;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    height: 70px;
    width: auto;
    filter: brightness(1.3);
}

.footer-text h3 {
    color: #D4AF37;
    font-size: 2rem;
    margin-bottom: 5px;
}

.footer-text p {
    color: #AAA;
    font-size: 0.9rem;
}

.slogan {
    color: #D4AF37 !important;
    font-style: italic;
    margin-top: 10px;
}

.footer-social h4 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: #D4AF37;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-5px);
}

.footer-help h4 {
    color: #FFFFFF;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-help p {
    color: #AAA;
    margin-bottom: 20px;
}

.help-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    background: #D4AF37;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.help-btn:hover {
    background: #FFFFFF;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: #777;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #AAA;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4AF37;
}

.separator {
    color: #555;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .video-expertise-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: #FFFFFF;
        flex-direction: column;
        padding: 40px;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 15px 0;
        font-size: 1.1rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-contact {
        display: none;
    }
    
    .hero {
        padding-top: 120px;
        height: 80vh;
        min-height: 600px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .about-content,
    .logistique-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .produits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .main-logo img {
        height: 120px;
    }
    
    .commerciaux-grid {
        grid-template-columns: 1fr;
    }
    
    .about-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 20px;
    }
    
    .video-label {
        font-size: 0.8rem;
        padding: 10px 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .horaires-grid {
        grid-template-columns: 1fr;
    }
    
    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Animations pour le scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Protection contre les réductions de mouvement */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Mode contraste élevé */
@media (prefers-contrast: high) {
    :root {
        --primary-gold: #B8860B;
        --dark-bg: #000000;
        --text-dark: #000000;
    }
}

/* Mode économie de données */
@media (prefers-reduced-data: reduce) {
    video, 
    .hero-bg,
    .commercial-photo img,
    .produit-image img {
        display: none;
    }
    
    .video-container-auto::before {
        content: "Vidéo désactivée pour économiser des données";
        display: block;
        padding: 20px;
        background: var(--light-bg);
        text-align: center;
    }
}

/* Avertissement NoScript */
.no-script-warning {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ff6b6b;
    color: white;
    text-align: center;
    padding: 10px;
    z-index: 9999;
    font-weight: bold;
}

/* Menu backdrop */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

/* Accessibilité améliorée */
[aria-hidden="true"] {
    pointer-events: none;
}

/* Focus styles améliorés */
:focus:not(:focus-visible) {
    outline: none;
}