/* Variables */
:root {
    --primary-color: #8B7355;
    --primary-dark: #6B5744;
    --secondary-color: #C19A6B;
    --accent-color: #D4A574;
    --text-dark: #3d3d3d;
    --text-light: #ffffff;
    --bg-light: #FAF8F5;
    --bg-cream: #F5F1EC;
    --bg-white: #ffffff;
    --border-color: #E8E2DB;
    --shadow: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-brand .logo {
    height: 70px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

/* Cacher les icônes sur desktop */
.nav-icon {
    display: none;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 10000;
    position: relative;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
    background: transparent;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
    pointer-events: none;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    min-height: 700px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-image: url('images/IMG_0461.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: var(--text-light);
    padding: 100px 20px;
}

/* Image mobile séparée */
@media (max-width: 768px) {
    .hero {
        min-height: 600px;
        background-image: url('images/IMG_0461.jpg');
        background-position: center center;
        justify-content: flex-start;
        text-align: center;
        padding: 60px 20px 0 20px;
        flex-direction: column;
        position: relative;
    }
    
    .hero-content {
        margin-left: 0;
        max-width: 100%;
        position: relative;
        z-index: 2;
    }
    
    .hero-content > div:first-child {
        /* Groupe du haut : titre, sous-titre, localisation */
        margin-bottom: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 0.3rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .hero-location {
        font-size: 1rem;
        margin-bottom: 0;
    }
    
    .hero-quote {
        display: none;
    }
    
    /* Cacher le texte lightbox sur mobile */
    .desktop-only {
        display: none;
    }
    
    /* Désactiver l'interaction lightbox sur mobile */
    .gallery-item {
        cursor: default;
    }
    
    .gallery-overlay {
        display: none !important;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 20px;
    margin-left: 5%;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
    letter-spacing: 0.5rem;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-location {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-quote {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.92;
    line-height: 1.8;
    max-width: 550px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* CTA Section */
.cta-section {
    background: var(--bg-cream);
    padding: 3rem 0;
    text-align: center;
}

.cta-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn-cta {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 18px 50px;
    font-size: 1.4rem;
    box-shadow: var(--shadow);
    font-weight: 700;
}

.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Services */
.services {
    background: var(--bg-cream);
}

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

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

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

/* Réalisations avec Galerie en Grille */
.realisations {
    background: var(--bg-cream);
}

.gallery-category {
    margin-bottom: 4rem;
}

.gallery-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Galerie Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 3/2;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 115, 85, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.gallery-overlay i {
    font-size: 3rem;
    color: white;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--secondary-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Instagram Section */
.instagram-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    min-height: auto;
}

.instagram-placeholder {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-cream);
    border-radius: 12px;
}

.instagram-placeholder i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.instagram-placeholder p {
    color: #666;
    font-size: 1.05rem;
    margin: 0;
}

.instagram-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 16px 40px;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    opacity: 0.95;
}

/* Zone d'intervention */
.zone-intervention {
    background: var(--bg-white);
}

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

.zone-column {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.zone-column h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.zone-column ul {
    list-style: none;
}

.zone-column li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 1.05rem;
}

.zone-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

/* About */
.about {
    background: var(--bg-white);
    padding: 100px 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.about-content h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.9;
}

.about-highlight {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.about-highlight p {
    margin-bottom: 0;
    font-style: italic;
    color: var(--text-dark);
}

/* Contact */
.contact {
    background: var(--bg-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

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

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-info p {
    margin: 0.5rem 0;
    opacity: 0.9;
}

.footer-reviews h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.google-reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.google-reviews:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: var(--secondary-color);
}

.google-reviews .stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.google-reviews .stars i {
    color: #fbbf24;
    font-size: 1.3rem;
}

.google-reviews .review-score {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.google-reviews .review-count {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0.8rem;
}

.google-reviews .google-logo {
    font-size: 2rem;
    color: #4285f4;
}

.footer-social h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.5rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-keywords {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: 0;
        left: auto;
        width: 280px;
        max-width: 85%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 0;
        gap: 0 !important;
        box-shadow: -4px 0 12px rgba(0,0,0,0.15);
        z-index: 9999;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
        font-weight: 400;
        text-align: left;
        width: 100%;
        margin: 0 !important;
        box-sizing: border-box;
        gap: 1rem;
        transition: all 0.2s ease;
    }
    
    .nav-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1.3em;
        flex-shrink: 0;
        opacity: 0.7;
        font-size: 1.1em;
    }
    
    .nav-link:hover .nav-icon,
    .nav-link.active .nav-icon {
        opacity: 1;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(44, 85, 48, 0.04);
        color: var(--primary-color);
    }

    /* Hero optimisé pour mobile */
    .hero {
        min-height: 650px;
        background-position: center;
        background-size: cover;
        padding: 15px 15px 50px;
        justify-content: flex-start;
    }

    .hero-content {
        padding: 0 10px;
        margin-top: 20px;
    }

    .hero h1 {
        font-size: 3rem;
        margin-bottom: 0.6rem;
        line-height: 1.1;
        letter-spacing: 0.3rem;
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .hero-location {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .hero-quote {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        margin-top: 1.5rem;
        padding: 0 10px;
    }

    .btn {
        font-size: 0.95rem;
        padding: 12px 24px;
        margin-top: 1rem;
    }

    .cta-section {
        padding: 2rem 0;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 20px;
    }

    .btn-cta {
        padding: 15px 35px;
        font-size: 1.05rem;
        width: auto;
        max-width: 90%;
    }

    .nav-brand .logo {
        height: 60px;
    }

    .nav-brand span {
        font-size: 1.2rem;
    }

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

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .zone-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-reviews {
        order: -1;
    }

    .google-reviews {
        padding: 1.2rem;
    }

    .google-reviews .stars i {
        font-size: 1.2rem;
    }

    .google-reviews .review-score {
        font-size: 1.6rem;
    }

    .google-reviews .review-count {
        font-size: 0.9rem;
    }

    .google-reviews .google-logo {
        font-size: 1.8rem;
    }

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

    .gallery-item {
        aspect-ratio: 3/2;
    }

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

    .instagram-placeholder {
        padding: 2rem 1.5rem;
    }

    .instagram-placeholder i {
        font-size: 3rem;
    }

    .instagram-placeholder p {
        font-size: 1rem;
    }

    .btn-instagram {
        font-size: 1.1rem;
        padding: 14px 32px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    /* Hero encore plus optimisé pour petits écrans */
    .hero {
        min-height: 600px;
        padding: 10px 10px 45px;
    }

    .hero-content {
        margin-top: 15px;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
        letter-spacing: 0.2rem;
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .hero-location {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .hero-quote {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
        margin-top: 1.2rem;
    }

    .btn {
        margin-top: 0.8rem;
    }

    .cta-section {
        padding: 2rem 0;
    }
    
    .cta-section h2 {
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }
    
    .cta-section p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        padding: 0 15px;
    }

    .btn-cta {
        padding: 14px 30px;
        font-size: 1rem;
        width: auto;
        max-width: 85%;
    }

    section {
        padding: 50px 0;
    }

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

    .gallery-item {
        aspect-ratio: 4/3;
    }

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

    .instagram-placeholder {
        padding: 1.5rem 1rem;
    }

    .instagram-placeholder i {
        font-size: 2.5rem;
    }

    .instagram-placeholder p {
        font-size: 0.95rem;
    }

    .btn-instagram {
        font-size: 1rem;
        padding: 12px 28px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 2rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Bouton WhatsApp flottant - Mobile uniquement */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: none; /* Caché par défaut */
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    animation: pulse 2s infinite;
}

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

/* Afficher uniquement sur mobile et tablette */
@media (max-width: 1024px) {
    .whatsapp-float {
        display: flex;
    }
}
/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 4rem 0 3rem;
    margin-top: 70px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Blog Styles */
.blog {
    padding: 4rem 0;
    background: var(--bg-light);
}

.blog-article {
    background: white;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.blog-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-date {
    color: #888;
    font-size: 0.95rem;
}

.blog-category {
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-article h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.blog-intro {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
}

.blog-article h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-article p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.blog-article ul {
    margin: 1rem 0;
}

.blog-article ul li {
    margin: 0.5rem 0;
    line-height: 1.8;
}

.blog-cta {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2.5rem;
}

.blog-cta p {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* Zone Intervention */
.zone-intervention {
    padding: 4rem 0;
}

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

.zone-column {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.zone-column h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.zone-column ul {
    list-style: none;
}

.zone-column ul li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.zone-column ul li:last-child {
    border-bottom: none;
}

.zone-note {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-cream);
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .blog-article {
        padding: 2rem 1.5rem;
    }
    
    .blog-article h2 {
        font-size: 1.6rem;
    }
    
    .zone-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* About Profile Section with Photo */
.about-profile {
    padding: 5rem 0;
    background: white;
}

.about-profile-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

.about-profile-image {
    position: sticky;
    top: 100px;
}

.about-profile-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.about-profile-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.about-subtitle {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.about-profile-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-profile-text .about-highlight {
    background: var(--bg-cream);
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    margin: 2rem 0;
}

.about-profile-text .about-highlight p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-dark);
    font-style: italic;
}

.signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 1.5rem !important;
    color: var(--primary-color) !important;
    margin-top: 2rem !important;
    font-weight: normal !important;
}

/* Responsive About Profile */
@media (max-width: 968px) {
    .about-profile-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-profile-image {
        position: static;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-profile {
        padding: 3rem 0;
    }
    
    .about-profile-text h2 {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-profile-image {
        max-width: 250px;
    }
}

/* ========================================
   LIGHTBOX MODERNE - STYLE INSTAGRAM
   ======================================== */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

/* Compteur de photos */
.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Bouton fermer */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.2s;
    line-height: 1;
    padding: 0;
    width: 50px;
    height: 50px;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

/* Boutons navigation */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Overlay sur les photos vitrines */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 115, 85, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

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

.gallery-overlay i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.photo-count {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Grille responsive */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--secondary-color);
}

/* Responsive mobile */
@media (max-width: 768px) {
    .hero-image {
        width: 150px;
        height: 150px;
        border-width: 4px;
        margin-bottom: 1.5rem;
    }
    
    .lightbox-content img {
        max-height: 70vh;
    }
    
    .lightbox-close {
        font-size: 40px;
        top: 10px;
        right: 15px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 10px 15px;
        font-size: 24px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-counter {
        bottom: -40px;
        font-size: 1rem;
        padding: 6px 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .gallery-overlay i {
        font-size: 2.5rem;
    }
    
    .photo-count {
        font-size: 1rem;
    }
}