/* ====
   CRUCIANI PHOTOGRAPHIE - HOMEPAGE STYLES
   Version 1.3 - Menu hamburger mobile + Correction encart bleu
   ==== */

/* === VARIABLES === */
:root {
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #0f3460;
    --color-gold: #c9a227;
    --color-white: #ffffff;
    --color-light: #f8f9fa;
    --color-text: #333333;
    --color-text-light: #666666;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* === RESET ASTRA CONTAINER FOR HOMEPAGE === */
.home #content,
.home .ast-container {
    padding: 0 !important;
    max-width: 100% !important;
}

.home .entry-content {
    margin: 0 !important;
}

.home #primary {
    margin: 0 !important;
    padding: 0 !important;
}

/* === LANGUAGE SWITCHER === */
.lang-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px;
    border-radius: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.lang-switcher a {
    padding: 8px 15px;
    text-decoration: none;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.lang-switcher a:hover {
    background: var(--color-light);
}

.lang-switcher a.active {
    background: var(--color-primary);
    color: var(--color-white);
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-white);
    padding: 0 20px;
    max-width: 900px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
    text-shadow: 3px 3px 30px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.8s;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

.hero-cta {
    margin-top: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 1.1s;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--color-primary);
}

.btn-primary:hover::before {
    left: 0;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.5s;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-white);
    border-radius: 12px;
    margin-top: 8px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 5px;
    height: 5px;
    background: var(--color-white);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

/* === SECTIONS COMMON === */
.section {
    padding: 100px 20px;
    background: var(--color-white);
}

.section-dark {
    background: var(--color-primary);
    color: var(--color-white);
}

.section-dark .section-title {
    color: var(--color-white);
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.section-dark .expo-content h2 {
    color: var(--color-white);
}

.section-dark .expo-content p {
    color: rgba(255, 255, 255, 0.85);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* === ABOUT SECTION === */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

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

.about-content {
    padding: 20px 0;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 25px;
}

.about-content p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 3px;
    transition: var(--transition-smooth);
    margin-top: 15px;
}

.btn-secondary:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* === STITCHING SECTION === */
.stitching-section {
    background: var(--color-primary);
    color: var(--color-white);
}

.stitching-section .stitching-content h2 {
    color: var(--color-white);
}

.stitching-section .stitching-content p {
    color: rgba(255, 255, 255, 0.85);
}

.stitching-section .stitching-content strong {
    color: var(--color-white);
}

.stitching-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.stitching-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 25px;
}

.stitching-content p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

.stitching-visual {
    position: relative;
}

.stitching-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    background: var(--color-white);
    padding: 20px;
}

.stitching-animated-img {
    width: 100%;
    height: auto;
    display: block;
}

/* === GALLERY PREVIEW === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    aspect-ratio: 4/3;
    text-decoration: none;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
    transition: var(--transition-smooth);
}

.gallery-item:hover::before {
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.gallery-item-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    z-index: 2;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-item-title {
    transform: translateY(-5px);
}

.gallery-cta {
    text-align: center;
}

/* === AMBIANCE SECTION === */
.ambiance-section {
    position: relative;
    padding: 150px 20px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.ambiance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.75);
}

.ambiance-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 10px;
}

.ambiance-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.ambiance-content p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* === SUPPORTS SECTION === */
.supports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.support-card {
    background: var(--color-white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

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

.support-image {
    height: 250px;
    overflow: hidden;
}

.support-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.support-content {
    padding: 30px;
}

.support-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.support-content p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text);
}

/* === EXPO SECTION === */
.expo-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.expo-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 25px;
}

.expo-content p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

.expo-image {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.expo-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

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

/* === CUSTOM FOOTER === */
.custom-footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 60px 20px 30px;
    font-family: var(--font-body);
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    color: var(--color-gold);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-copyright {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 0 auto;
    max-width: 1200px;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    opacity: 0.9;
}

.footer-description {
    max-width: 400px;
    line-height: 1.7;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact p {
    margin: 10px 0;
    font-size: 14px;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 8px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-white);
}

.footer-divider {
    width: 50px;
    height: 3px;
    background: var(--color-gold);
    margin: 15px 0;
}

.footer-icon {
    width: 20px;
    height: 20px;
}

/* Hide Astra default footer on homepage */
.home .site-footer,
.home .ast-footer-overlay,
.home #colophon,
.home footer.site-footer,
.home footer#colophon,
.home .ast-small-footer,
.home .ast-footer,
.home .site-footer-primary-section,
.home .site-footer-section,
body.home footer:not(.custom-footer),
body.home .ast-container footer {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Style the scroll-to-top button */
#ast-scroll-top,
.ast-scroll-top-icon,
a.ast-scroll-top-icon {
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    border: none !important;
}

#ast-scroll-top:hover,
.ast-scroll-top-icon:hover {
    background: var(--color-secondary) !important;
}

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

@keyframes scrollBounce {
    0%, 100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 25px;
        opacity: 0.3;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* === SLIDER DOTS === */
.hero-dots {
    position: absolute;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero-dot.active {
    background: var(--color-white);
    transform: scale(1.2);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ================================================================
   CORRECTIONS DESKTOP (min-width: 769px)
   ================================================================ */

@media (min-width: 769px) {
    
    /* === CACHER LE MENU HAMBURGER SUR DESKTOP === */
    #masthead .menu-toggle,
    #masthead .ast-mobile-menu-trigger-minimal,
    #masthead .ast-button-wrap,
    #masthead .ast-mobile-menu-buttons,
    .ast-header-break-point .ast-button-wrap,
    body #masthead .hamburger-icon,
    body .menu-toggle.ast-mobile-menu-trigger-minimal {
        display: none !important;
        visibility: hidden !important;
    }
    
    /* === SUPPRESSION ENCART BLEU MENU DESKTOP === */
    
    /* Forcer TOUS les sous-menus à fond blanc */
    body.home .ast-desktop .main-header-menu .sub-menu,
    body.home .ast-desktop .main-header-menu .sub-menu *,
    body.home .main-header-bar .sub-menu,
    body.home .main-header-bar .sub-menu *,
    body.home #masthead .sub-menu,
    body.home #masthead .sub-menu *,
    body.home .ast-builder-menu-1 .sub-menu,
    body.home .ast-builder-menu-1 .sub-menu *,
    body.home nav .sub-menu,
    body.home nav .sub-menu *,
    body.home [class*="ast-builder-menu"] .sub-menu,
    body.home [class*="ast-builder-menu"] .sub-menu * {
        background: #ffffff !important;
        background-color: #ffffff !important;
    }
    
    /* Supprimer tous les pseudo-éléments qui pourraient créer un fond bleu */
    body.home .sub-menu::before,
    body.home .sub-menu::after,
    body.home .sub-menu *::before,
    body.home .sub-menu *::after,
    body.home #masthead .sub-menu::before,
    body.home #masthead .sub-menu::after,
    body.home .main-header-menu .sub-menu::before,
    body.home .main-header-menu .sub-menu::after {
        display: none !important;
        content: none !important;
        background: transparent !important;
    }
    
    /* Supprimer scrollbar qui pourrait être bleue */
    body.home .sub-menu::-webkit-scrollbar {
        display: none !important;
    }
    
    body.home .sub-menu {
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    
    /* Forcer les liens des sous-menus en noir */
    body.home .sub-menu a,
    body.home .sub-menu li a,
    body.home #masthead .sub-menu a {
        color: #333333 !important;
        background: transparent !important;
    }
    
    body.home .sub-menu a:hover {
        color: #0f3460 !important;
        background: rgba(0, 0, 0, 0.05) !important;
    }
    
    /* Box shadow blanc pour sous-menu */
    body.home .sub-menu {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        border: none !important;
    }
    
    /* Cacher l'encadré FooGallery/Lightbox sur la homepage - DESKTOP SEULEMENT */
    body.home .foogallery-lightbox,
    body.home .fg-lightbox,
    body.home .foogallery-container:not(.hero-section .foogallery-container),
    body.home div[class*="foogallery-lightbox"],
    body.home div.fg-thumb,
    body.home .fg-item {
        display: none !important;
        visibility: hidden !important;
    }
    
    /* === ASTRA HEADER STYLES FOR HOMEPAGE - DESKTOP === */
    
    /* Header TOUJOURS visible avec fond blanc */
    .home #masthead,
    body.home #masthead,
    .home header#masthead,
    body.home header#masthead {
        background: #ffffff !important;
        background-color: #ffffff !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Logo en couleur normale */
    .home #masthead .custom-logo-link img {
        filter: none !important;
    }
    
    /* Texte du site en foncé */
    .home #masthead .site-title a,
    .home #masthead .ast-site-title-wrap a {
        color: #1a1a2e !important;
    }
    
    /* Menu items en foncé */
    .home #masthead .menu-item > a,
    .home #masthead .ast-menu-toggle,
    .home .main-header-menu .menu-item > a {
        color: #333333 !important;
    }
    
    .home #masthead .menu-item > a:hover {
        color: #0f3460 !important;
    }
    
    /* Icônes sociales en foncé */
    .home #masthead .ast-builder-social-element a {
        color: #333333 !important;
    }
    
    /* Hero min-height plus grand sur desktop */
    .hero-section {
        min-height: 600px;
    }
}

/* ================================================================
   MENU MOBILE HAMBURGER (max-width: 768px)
   ================================================================ */

@media (max-width: 768px) {
    
    /* === FORCER LE MENU HAMBURGER VISIBLE EN HAUT À DROITE === */
    
    /* S'assurer que le header est visible sur mobile */
    .home #masthead,
    body.home #masthead {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 999 !important;
        background: #ffffff !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        padding: 10px 15px !important;
    }
    
    /* Ajouter padding-top au body pour compenser le header fixed */
    body.home {
        padding-top: 70px !important;
    }
    
    /* Container du header en flex pour aligner logo à gauche et hamburger à droite */
    .home #masthead .main-header-bar,
    .home #masthead .ast-main-header-bar-alignment {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    /* Logo à gauche */
    .home #masthead .site-branding,
    .home #masthead .ast-site-identity {
        flex: 0 0 auto !important;
        order: 1 !important;
    }
    
    .home #masthead .custom-logo-link img {
        max-height: 50px !important;
        width: auto !important;
    }
    
    /* === FORCER LE BOUTON HAMBURGER À ÊTRE VISIBLE === */
    /* TOUTES les variantes possibles du bouton menu Astra */
    body.home #masthead .ast-button-wrap,
    body.home #masthead .ast-mobile-menu-buttons,
    body.home #masthead .menu-toggle,
    body.home #masthead .ast-mobile-menu-trigger-minimal,
    body.home #masthead .ast-mobile-header-wrap,
    body.home .ast-header-break-point .ast-button-wrap,
    body.home .ast-mobile-menu-buttons,
    body.home .ast-header-break-point #masthead .main-header-bar-wrap .ast-mobile-menu-buttons,
    body.home .ast-header-break-point .main-header-bar .ast-mobile-menu-buttons,
    body #masthead .menu-toggle,
    body .ast-mobile-menu-trigger-minimal,
    .ast-mobile-menu-buttons .menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        order: 3 !important;
        margin-left: auto !important;
        position: relative !important;
        top: auto !important;
        right: auto !important;
        z-index: 1001 !important;
    }
    
    /* S'assurer que le conteneur du bouton ne cache rien */
    body.home .ast-header-break-point #masthead,
    body.home .ast-header-break-point .main-header-bar-wrap {
        overflow: visible !important;
    }
    
    /* Style du bouton hamburger */
    .home #masthead .menu-toggle,
    .home #masthead .ast-mobile-menu-trigger-minimal,
    body.home .menu-toggle {
        background: transparent !important;
        border: none !important;
        padding: 10px !important;
        cursor: pointer !important;
        color: #1a1a2e !important;
        font-size: 24px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px !important;
        height: 44px !important;
    }
    
    /* Icône hamburger (3 barres) */
    .home #masthead .menu-toggle .ast-mobile-svg,
    .home #masthead .ast-mobile-menu-trigger-minimal .ast-mobile-svg,
    body.home .menu-toggle svg {
        fill: #1a1a2e !important;
        width: 24px !important;
        height: 24px !important;
    }
    
    /* Navigation mobile */
    .home #masthead .main-header-bar-navigation,
    .home #masthead .ast-mobile-menu-wrap {
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        background: #ffffff !important;
        max-height: calc(100vh - 70px) !important;
        overflow-y: auto !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        display: none !important;
    }
    
    /* Menu ouvert */
    .home #masthead .main-header-bar-navigation.toggled,
    .home #masthead .ast-mobile-menu-wrap.toggled,
    body.home .ast-header-break-point .main-header-bar-navigation.toggled {
        display: block !important;
    }
    
    /* Items du menu mobile */
    .home #masthead .main-header-menu,
    .home #masthead .ast-nav-menu {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
    }
    
    .home #masthead .menu-item {
        width: 100% !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }
    
    .home #masthead .menu-item a {
        display: block !important;
        padding: 15px 20px !important;
        color: #333333 !important;
        text-decoration: none !important;
        font-size: 16px !important;
    }
    
    .home #masthead .menu-item a:hover {
        background: #f8f9fa !important;
        color: #0f3460 !important;
    }
    
    /* Sous-menus mobile */
    .home #masthead .sub-menu {
        position: static !important;
        background: #f8f9fa !important;
        box-shadow: none !important;
        padding-left: 20px !important;
    }
    
    /* Language switcher repositionné en bas sur mobile */
    .lang-switcher {
        top: auto !important;
        bottom: 20px !important;
        right: 20px !important;
    }
    
    /* === AUTRES AJUSTEMENTS MOBILE === */
    
    .section {
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .ambiance-section {
        background-attachment: scroll;
    }
    
    .stitching-visual {
        display: none;
    }
    
    .stitching-image-container {
        display: block !important;
    }
    
    .custom-footer .footer-main {
        flex-wrap: wrap !important;
        gap: 15px !important;
    }
    
    .custom-footer .footer-main .footer-links {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .about-section,
    .stitching-grid,
    .expo-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .supports-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ambiance-content {
        margin: 20px;
        padding: 40px;
    }
}
