/* ==========================================
   WEDDING PROPOSAL PHOTOGRAPHY WEBSITE
   Modern, Minimalist, Image-First Design
   ========================================== */

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

:root {
    /* Colors */
    --color-primary: #393836;
    --color-secondary: #666;
    --color-background: #f3efe9; /* beige lumineux */
    --color-accent: #8b7355;
    --color-light: #f8f8f8;
    --color-white: #ffffff;
    --color-border: #e0e0e0;
    
    /* Typography */
    --font-primary: 'Lato', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-heading: 'Playfair Display SC', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Layout */
    --container-width: 1200px;
    --container-narrow: 800px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-primary);
    background: var(--color-background);
    overflow-x: hidden;
}

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

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

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 50px; /* Ajustez selon votre logo */
    width: auto;
    display: block;
}

/* Responsive - Logo plus petit sur mobile */
@media (max-width: 768px) {
    .nav-logo img {
        height: 32px;
    }
}

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

.nav-link {
    color: var(--color-secondary);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

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

.nav-link-cta {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
}

.nav-link-cta:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        background: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
}

/* === HERO SECTION === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-start; /* Au lieu de center */
    padding-top: 140px; /* 70px nav + 70px marge */
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 2rem;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

/* === CONTAINERS & SECTIONS === */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 2vw, 1.5rem);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-intro {
    padding-top: var(--spacing-lg);
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* === CTA BANNER === */
.section-cta-banner {
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: 3rem 0;
}

.section-cta-banner .section-title,
.section-cta-banner .section-text {
    color: var(--color-white);
}

.section-cta-banner .btn {
    display: inline-block;
    margin: 0 auto;
}

/* === FEATURES GRID === */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.feature {
    text-align: center;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.feature-text {
    color: var(--color-secondary);
    line-height: 1.7;
}

/* === GALLERY GRID === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.gallery-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: var(--color-white);
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-card-location {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* === GALLERY MASONRY (Individual Gallery Page) === */
.gallery-masonry {
    columns: 3;
    column-gap: 1.5rem;
}

.gallery-masonry img {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-masonry img:hover {
    opacity: 0.9;
    transform: translateY(-4px);
}

@media (max-width: 1024px) {
    .gallery-masonry {
        columns: 2;
    }
}

@media (max-width: 640px) {
    .gallery-masonry {
        columns: 1;
    }
}

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

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

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

/* === PAGE HEADER === */
.page-header {
    padding: calc(80px + var(--spacing-md)) 0 var(--spacing-md) 0;
    text-align: center;
    background: var(--color-light);
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--color-secondary);
}

.back-link {
    display: inline-block;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

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

/* === PROCESS STEPS === */
.process-step {
    position: relative;
    padding-left: 5rem;
    margin-bottom: var(--spacing-lg);
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-accent);
    opacity: 0.3;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.step-text {
    color: var(--color-secondary);
    line-height: 1.8;
}

/* === CHECKLIST === */
.checklist {
    list-style: none;
    max-width: 600px;
    margin: var(--spacing-lg) auto;
}

.checklist li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.checklist li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.2rem;
}

/* === FAQ === */
.faq {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--color-border);
}

.faq:last-child {
    border-bottom: none;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
}

.faq-answer {
    color: var(--color-secondary);
    line-height: 1.8;
}

/* === ABOUT PAGE === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    align-items: start;
    margin-top: var(--spacing-lg);
}

.about-image img {
    width: 100%;
    border-radius: 4px;
}

.about-text {
    margin-bottom: var(--spacing-md);
    color: var(--color-secondary);
    line-height: 1.8;
}

.testimonial {
    padding: var(--spacing-lg);
    background: var(--color-white);
    border-left: 4px solid var(--color-accent);
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

/* === CONTACT FORM === */
.contact-form {
    max-width: 600px;
    margin: 0 auto var(--spacing-xl) auto;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-primary);
}

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

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

.form-group textarea {
    resize: vertical;
}

.hidden {
    display: none;
}

.contact-info {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.contact-info p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-secondary);
}

.contact-info a {
    color: var(--color-accent);
}

.contact-info a:hover {
    color: var(--color-primary);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FOOTER RÉDUIT - Remplacez votre section footer existante par ce code
   ════════════════════════════════════════════════════════════════════════════════ */

.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 2rem 0 1rem 0; /* Réduit de 6rem à 3rem */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Colonnes plus petites */
    gap: 2rem; /* Réduit de 4rem à 2rem */
    margin-bottom: 2rem; /* Réduit de 4rem à 2rem */
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem; /* Réduit de 1.2rem à 1rem */
    margin-bottom: 0.75rem; /* Réduit */
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-size: 0.9rem; /* Plus petit */
}

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

.footer-col ul li {
    margin-bottom: 0.4rem; /* Réduit */
}

.footer-col ul a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem; /* Plus petit */
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem; /* Réduit */
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem; /* Plus petit */
}

/* Mobile - Footer encore plus compact */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-col h4 {
        font-size: 0.95rem;
    }
    
    .footer-col p,
    .footer-col ul a {
        font-size: 0.85rem;
    }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        padding-left: 3rem;
    }
    
    .step-number {
        font-size: 2rem;
    }
}

/* === SERVICES SECTION === */
/* === SERVICES SECTION (APPROACH PAGE) === */
.section-services {
    background: var(--color-background);
    padding: 1rem 0;
}

/* Container plus large pour les services */
.section-services .container {
    max-width: 100%;
    padding: 0 1rem; /* Ajustez : 1rem = plus large, 4rem = plus étroit */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Force 3 colonnes égales */
    gap: 1rem;
    margin-top: 0rem;
}

.service-card {
    background: var(--color-white);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0rem;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    color: var(--color-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-services .container {
        padding: 0 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-services {
        padding: 3rem 0;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}


/* ══════════════════════════════════════════════════════════════════════════
   OPTION 1 : CARDS AVEC BADGES
   ══════════════════════════════════════════════════════════════════════════ */

.section-services-home {
    background: var(--color-light);
}

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

.service-home-card {
    position: relative;
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-home-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-home-card-essential {
    border-color: var(--color-accent);
    background: linear-gradient(to bottom, rgba(139, 115, 85, 0.05), var(--color-white));
}

.optional-badge,
.essential-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #666;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.essential-badge {
    background: var(--color-accent);
}

.service-home-number {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.service-home-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--color-primary);
}

.service-home-desc {
    color: var(--color-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .services-home-grid {
        grid-template-columns: 1fr;
    }
}


/* ══════════════════════════════════════════════════════════════════════════
   OPTION 2 : TIMELINE / FLUX
   ══════════════════════════════════════════════════════════════════════════ */

.section-services-timeline {
    background: var(--color-light);
}

.timeline {
    max-width: 600px;
    margin: 1rem auto 0;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    color: white;
    position: relative;
    z-index: 2;
}

.timeline-essential .timeline-marker {
    background: var(--color-accent);
}

.timeline-content {
    flex: 1;
    padding-bottom: 1rem;
}

.timeline-label {
    display: inline-block;
    background: #ddd;
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.timeline-essential .timeline-label {
    background: var(--color-accent);
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.timeline-desc {
    color: var(--color-secondary);
    line-height: 1.6;
}

.timeline-connector {
    width: 2px;
    height: 30px;
    background: #ddd;
    margin-left: 24px;
}

@media (max-width: 768px) {
    .timeline-item {
        gap: 1rem;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .timeline-connector {
        margin-left: 19px;
        height: 30px;
    }
}


/* ══════════════════════════════════════════════════════════════════════════
   OPTION 3 : MINIMALISTE AVEC ICÔNES
   ══════════════════════════════════════════════════════════════════════════ */

.section-services-minimal {
    background: var(--color-light);
}

.services-minimal-list {
    max-width: 700px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-minimal {
    background: var(--color-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.service-minimal:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateX(8px);
}

.service-minimal-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.service-minimal-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.service-minimal-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.service-minimal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin: 0;
}

.service-minimal-tag {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.tag-optional {
    background: #e0e0e0;
    color: #666;
}

.tag-essential {
    background: var(--color-accent);
    color: white;
}

@media (max-width: 768px) {
    .service-minimal-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-minimal-info {
        flex-direction: column;
    }
}


/* ══════════════════════════════════════════════════════════════════════════
   PATCHWORK DE PHOTOS - DESTRUCTURÉ
   ══════════════════════════════════════════════════════════════════════════ */

.section-photo-patchwork {
    background: var(--color-white);
    overflow: hidden;
}

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

.patchwork-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.patchwork-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 10;
}

/* Photos hautes (verticales) */
.patchwork-tall {
    grid-row: span 2;
}

/* Photos larges (horizontales) */
.patchwork-wide {
    grid-column: span 2;
}

.patchwork-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Variations de disposition pour un look déstructuré */
/* Photo 1 - Verticale gauche */
.patchwork-item:nth-child(1) {
    grid-column: 1;
    grid-row: span 2;
}

/* Photo 2 - Horizontale en haut */
.patchwork-item:nth-child(2) {
    grid-column: 2 / 4;
    grid-row: 1;
}

/* Photo 3 - Carrée haut droite */
.patchwork-item:nth-child(3) {
    grid-column: 4;
    grid-row: 1;
}

/* Photo 4 - Carrée milieu centre gauche */
.patchwork-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

/* Photo 5 - Horizontale bas gauche */
.patchwork-item:nth-child(5) {
    grid-column: 1 / 3;
    grid-row: 3;
}

/* Photo 6 - Verticale bas centre */
.patchwork-item:nth-child(6) {
    grid-column: 3;
    grid-row: 2 / 4;
}

/* Photo 7 - Verticale bas à droite */
.patchwork-item:nth-child(7) {
    grid-column: 4;
    grid-row: 2 / 4;
}

/* Responsive - Ajustements pour tablette */
@media (max-width: 1024px) {
    .patchwork-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        grid-auto-rows: 180px;
    }
}

/* Responsive - Mobile simplifié */
@media (max-width: 768px) {
    .patchwork-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
        gap: 0.5rem;
    }
    
    /* Sur mobile, garder quelques variations mais simplifier */
    .patchwork-tall {
        grid-row: span 2;
    }
    
    .patchwork-wide {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    /* Réinitialiser certaines règles spécifiques */
    .patchwork-item:nth-child(2) {
        grid-column: span 1;
    }
    
    .patchwork-item:nth-child(5) {
        grid-column: span 2;
    }
}

/* === PRICING GRID === */
.section-pricing {
    background: var(--color-light);
}

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

/* === PRICING CARDS === */
.pricing-card {
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Featured Card */
.pricing-card-featured {
    border: 3px solid var(--color-accent);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--color-accent);
    color: white;
    padding: 0.5rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* === PRICING HEADER === */
.pricing-header {
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.pricing-label {
    display: inline-block;
    background: #e0e0e0;
    color: #666;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.pricing-label-essential {
    background: var(--color-accent);
    color: white;
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.pricing-price {
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    font-family: var(--font-heading);
}

.pricing-subtitle {
    color: var(--color-secondary);
    font-size: 1rem;
}

/* === PRICING FEATURES === */
.pricing-features {
    padding: 2rem;
    flex: 1;
}

.features-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    color: var(--color-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.features-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.pricing-note small {
    color: #999;
    font-style: italic;
}

/* === PRICING FOOTER === */
.pricing-footer {
    padding: 0 2rem 2rem;
    text-align: center;
}

.pricing-footer .btn {
    width: 100%;
}

/* === COMPLETE PACKAGE === */
.section-complete-package {
    background: linear-gradient(135deg, var(--color-accent) 0%, #72614a 100%);
    color: white;
}

.complete-package-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.package-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.package-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.package-amount {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.package-save {
    background: rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-description {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.package-includes h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.package-services {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.package-service {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 8px;
}

.service-check {
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.package-content .btn {
    display: block;
    max-width: 300px;
    margin: 2rem auto 0;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .pricing-header {
        padding: 2rem 1.5rem;
    }
    
    .pricing-features {
        padding: 1.5rem;
    }
    
    .pricing-title {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .complete-package-card {
        padding: 2rem 1.5rem;
    }
    
    .package-title {
        font-size: 2rem;
    }
    
    .package-amount {
        font-size: 2.8rem;
    }
    
    .popular-badge {
        font-size: 0.65rem;
        padding: 0.4rem 2rem;
    }
}

/* === PRICING FAQ ADJUSTMENTS === */
.section-pricing + .section .section-title {
    margin-bottom: 1rem;
}