/* ========== AWS44 - CSS Principal ========== */
/* Reproduction fidèle du visuel aws44.com avec corrections CDC */
/* Variables injectées dynamiquement via PHP dans header.php */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-family: sans-serif; color: #fff; }

body {
    font-family: 'Inter', 'Poppins', Arial, sans-serif;
    background-color: var(--bg-main);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: var(--brown); text-decoration: none; }
a:hover { color: var(--brown-hover); }
p { color: var(--text); }
img { max-width: 100%; height: auto; }
ul { list-style-position: inside; margin: 0; }

.container { width: 95%; max-width: 1300px; margin: 0 auto; }
.container-wide { width: 95%; max-width: 1720px; margin: 0 auto; }
.clearfix::after { content: ''; display: table; clear: both; }
.center { text-align: center; }

/* ========== NAV BAR ========== */
.main-nav {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    z-index: 9;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

/* Au scroll, la nav devient fixe en haut */
.main-nav.scrolled {
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.85);
}

.main-nav .container-wide {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-logo img {
    max-height: 60px;
    width: auto;
}

.nav-menu { text-align: center; }

.nav-menu ul { list-style: none; }

.nav-menu > ul > li {
    display: inline-block;
    position: relative;
    padding: 20px 18px;
}

.nav-menu > ul > li > a {
    font-size: 1.3em;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    display: block;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-menu > ul > li > a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -5px;
    height: 3px;
    width: 0;
    background-color: var(--brown);
    transition: width 0.3s;
}

.nav-menu > ul > li.active > a,
.nav-menu > ul > li > a:hover { color: var(--brown); }

.nav-menu > ul > li.active > a::after,
.nav-menu > ul > li > a:hover::after { width: 50px; }

/* Sous-menu dropdown - CDC: fond gris, écriture blanche, hover marron */
.nav-menu .dropdown {
    display: none;
    position: absolute;
    left: -50%; width: 200%;
    top: 100%;
    z-index: 9999;
    list-style: none;
    transition: all 0.1s;
}

.nav-menu li:hover > .dropdown { display: block; }

.nav-menu .dropdown > li { width: 100%; }

.nav-menu .dropdown > li > a {
    display: block;
    padding: 10px;
    font-size: 1.1em;
    text-align: center;
    color: var(--text);
    background-color: var(--bg-main);
    transition: all 0.2s;
}

.nav-menu .dropdown > li > a:hover,
.nav-menu .dropdown > li.active > a {
    color: #fff;
    background-color: var(--brown);
}

/* Hamburger mobile */
.hamburger {
    display: none;
    position: fixed;
    z-index: 999999;
    top: 8px; left: 8px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 28px; height: 3px;
    background: #fff;
    margin-bottom: 6px;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger span:last-child { margin-bottom: 0; }

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 7px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }

/* ========== BANNIERE FULLSCREEN ========== */
.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 1200px;
    overflow: hidden;
}

.banner-slider {
    position: relative;
    width: 100%; height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s;
    z-index: 0;
}

.banner-slide.active { opacity: 1; z-index: 1; }

.banner-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 34%, rgba(0,0,0,0) 100%);
}

.banner-content {
    position: absolute;
    z-index: 5;
    width: 100%;
    left: 0;
    top: 27%;
}

.banner-content .container { }

.baseline {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.5em;
    color: #fff;
    text-transform: uppercase;
}

.sub-baseline {
    text-transform: uppercase;
    color: #fff;
    font-size: 1.3em;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.banner-buttons {
    display: flex;
    align-items: center;
    padding-top: 30px;
    gap: 15px;
    flex-wrap: wrap;
}

/* Puces slider */
.banner-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 6;
}

.banner-dots span {
    display: inline-block;
    width: 12px; height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    margin: 0 3px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.banner-dots span.active { background-color: #fff; }

/* Logo mobile dans bannière */
.banner-logo-mobile {
    display: none;
    width: 100%;
    max-width: 220px;
    margin: 0 auto 30px;
}

.banner-logo-mobile img { width: 100%; }

/* ========== BOUTONS (style aws44.com) ========== */
.btn-primary {
    margin-top: 0;
    padding: 16px 32px;
    border-radius: 30px;
    background-color: var(--brown);
    color: #fff !important;
    border: none;
    font-size: 1.1em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
}
.btn-primary:hover { background-color: #fff; color: var(--brown) !important; }

.btn-outline {
    padding: 14px 32px;
    border-radius: 30px;
    background-color: transparent;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.25);
    font-size: 1.1em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
}
.btn-outline:hover { background-color: var(--brown); color: #fff !important; border-color: var(--brown); }

.btn-gold {
    margin-top: 30px;
    padding: 16px 32px;
    border-radius: 30px;
    background-color: var(--gold);
    color: #fff !important;
    border: none;
    font-size: 1.1em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
}
.btn-gold:hover { background-color: #fff; color: var(--gold) !important; }

.btn-white {
    margin-top: 30px;
    padding: 16px 32px;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    color: var(--brown) !important;
    border: none;
    font-size: 1.1em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
}
.btn-white:hover { background-color: var(--bg-main); color: #fff !important; }

/* ========== SECTION TITRE ========== */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.5em;
    color: var(--text);
    text-transform: capitalize;
    margin-bottom: 30px;
    position: relative;
}

.section-title span { color: var(--brown); }

/* ========== PRESTATIONS (allSom) ========== */
.prestations-section { padding: 120px 0; }

.prestations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.prestation-card {
    padding: 10px;
    width: 25%;
}

.prestation-card a {
    display: block;
    text-align: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0,0,0,0);
    transition: box-shadow 0.3s;
}

.prestation-card a:hover { box-shadow: 0 0 25px rgba(0,0,0,0.25); }

.prestation-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    border-radius: 16px;
}

.prestation-bg::before {
    content: "";
    display: block;
    top: 0; left: 0;
    height: 100%; width: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.66) 100%);
    padding-bottom: 90%;
    transition: all 0.5s;
    border-radius: 16px;
}

.prestation-bg::after {
    content: "";
    position: absolute;
    top: 100%; left: 0;
    height: 100%; width: 100%;
    background: linear-gradient(180deg, rgba(165,95,70,0) 0%, rgba(165,95,70,1) 100%);
    transition: all 0.5s;
    border-radius: 16px;
}

.prestation-card a:hover .prestation-bg::before { top: 100%; }
.prestation-card a:hover .prestation-bg::after { top: 0%; }

.prestation-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 50px;
}

.prestation-inner h3 {
    color: #fff;
    position: relative;
    z-index: 1;
    font-size: 1.5em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* ========== SECTION PRESENTATION (sectIndex) ========== */
.presentation-section {
    padding: 120px 0;
    position: relative;
    background-color: rgba(0, 0, 0, 0.1);
}

.presentation-content {
    display: flex;
    flex-wrap: wrap;
}

.presentation-left {
    width: 66.66%;
    padding-right: 40px;
}

.presentation-right {
    width: 33.33%;
}

.article-title {
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.3em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 20px;
}

.article-content { color: var(--text); line-height: 1.8; }
.article-content p { margin-bottom: 12px; color: var(--text); }
.article-content a { color: var(--brown); }
.article-content h2 { font-size: 1.35em; color: var(--brown); margin: 20px 0 10px; }
.article-content h3 { font-size: 1.1em; color: var(--brown); margin: 15px 0 8px; }
.article-content ul { padding: 10px 10px 10px 25px; list-style: disc outside none; }
.article-content li { margin-bottom: 6px; }

/* ===== STYLE CONTENU : CUIR COUSU ===== */
.article-content.article-style-cuir-cousu {
    background: linear-gradient(135deg, rgba(165,95,70,0.08) 0%, rgba(37,43,51,0.6) 100%);
    border: 1px solid rgba(165,95,70,0.2);
    border-left: 4px solid var(--brown);
    border-radius: 0 12px 12px 0;
    padding: 50px 45px;
    position: relative;
}
.article-content.article-style-cuir-cousu::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background: repeating-linear-gradient(
        to bottom,
        var(--brown) 0px, var(--brown) 6px,
        transparent 6px, transparent 12px
    );
    opacity: 0.4;
}
.article-content.article-style-cuir-cousu h2 {
    font-family: 'Playfair Display', 'Poppins', serif;
    font-size: 1.6em;
    color: var(--brown);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(165,95,70,0.2);
}
.article-content.article-style-cuir-cousu p {
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 14px;
    padding-left: 20px;
}
.article-content.article-style-cuir-cousu strong { color: var(--brown); }

/* ===== STYLE CONTENU : GRAIN DE CUIR ===== */
.article-content.article-style-grain-cuir {
    background:
        linear-gradient(135deg, rgba(80,55,40,0.95) 0%, rgba(55,38,28,0.97) 50%, rgba(70,48,35,0.95) 100%);
    border-radius: 8px;
    padding: 55px 50px;
    box-shadow:
        0 8px 40px rgba(0,0,0,0.5),
        inset 0 2px 0 rgba(255,255,255,0.08),
        inset 0 -2px 0 rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}
.article-content.article-style-grain-cuir::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(210,170,120,0.2);
    border-radius: 4px;
    pointer-events: none;
}
.article-content.article-style-grain-cuir::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='6' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}
.article-content.article-style-grain-cuir h2 {
    font-family: 'Playfair Display', 'Poppins', serif;
    font-size: 1.6em;
    color: #e8c9a0;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.article-content.article-style-grain-cuir h2::before {
    content: '\2726';
    display: block;
    font-size: 0.6em;
    color: rgba(210,170,120,0.4);
    margin-bottom: 10px;
}
.article-content.article-style-grain-cuir p {
    color: #e0d5c8;
    line-height: 1.9;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.article-content.article-style-grain-cuir strong { color: #e8c9a0; }

@media (max-width: 768px) {
    .article-content.article-style-cuir-cousu,
    .article-content.article-style-grain-cuir {
        padding: 35px 25px;
    }
}

.article-buttons {
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
}

.contact-info-label { color: #ccc; font-size: 0.9em; margin-bottom: 4px; }

.contact-info-value {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-value a,
.contact-info-value span {
    color: #fff !important;
    font-size: 1.2em;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* Pastilles SEO */
.seo-links { margin-top: 30px; text-align: center; border-bottom: 2px solid var(--brown); padding-bottom: 15px; }
.seo-links .seo-title { text-align: left; font-size: 0.9em; margin-bottom: 8px; }
.seo-links a {
    display: inline-block;
    background-color: rgba(0,0,0,0.3);
    padding: 2px 5px;
    border-radius: 1px;
    color: #fff !important;
    margin: 4px;
    font-size: 0.85em;
}

/* ========== TEMOIGNAGES ========== */
.testimonials-section {
    padding: 120px 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(165, 95, 70, 0.85);
}

.testimonials-section * { position: relative; }

.testimonials-section .section-title { text-align: center; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 30px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 24px;
    border-radius: 12px;
}

.testimonial-card .stars { color: #f9c66d; margin-bottom: 10px; }
.testimonial-card .stars .far { opacity: 0.4; }
.testimonial-card .content { font-size: 0.95em; font-style: italic; margin-bottom: 12px; line-height: 1.6; color: #fff; }
.testimonial-card .author { font-weight: 600; font-size: 0.9em; color: #fff; }

.testimonial-google { border-left: 3px solid #4285f4; }

.testimonial-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }

.google-badge {
    font-size: 0.7rem; font-weight: 600; color: #4285f4;
    display: flex; align-items: center; gap: 4px;
    padding: 3px 8px; border: 1px solid rgba(66,133,244,0.4); border-radius: 4px;
}

.testimonial-footer { display: flex; justify-content: space-between; align-items: center; }
.testimonial-footer .time { font-size: 0.75em; opacity: 0.6; }

.testimonials-actions { text-align: center; margin-top: 20px; }

/* ========== GALERIE PHOTOS ========== */
.gallery-section { padding: 120px 0; }

.gallery-grid {
    display: grid;
    grid-gap: 20px;
    grid-template-areas:
        "a a a b b b"
        "c c d d e e";
}

.gallery-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-item:nth-child(1) { grid-area: a; border-top-left-radius: 16px; }
.gallery-item:nth-child(2) { grid-area: b; border-top-right-radius: 16px; }
.gallery-item:nth-child(3) { grid-area: c; border-bottom-left-radius: 16px; }
.gallery-item:nth-child(4) { grid-area: d; }
.gallery-item:nth-child(5) { grid-area: e; border-bottom-right-radius: 16px; }

.gallery-item:nth-child(1)::after,
.gallery-item:nth-child(2)::after {
    content: ''; display: block; width: 100%; padding-bottom: 50%;
}

.gallery-item:nth-child(3)::after,
.gallery-item:nth-child(4)::after,
.gallery-item:nth-child(5)::after {
    content: ''; display: block; width: 100%; padding-bottom: 70%;
}

/* ========== ACTUALITES ========== */
.news-section {
    padding: 120px 0 160px;
    background-color: rgba(0,0,0,0.1);
}

/* ========== PARTENAIRES ========== */
.partners-section {
    padding: 60px 0;
    background-color: #393a3b;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.partner-item {
    background-color: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.partner-item img { max-width: 200px; width: 100%; }

/* ========== CONTACT / FOOTER SECTION ========== */
.contact-footer-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-footer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
}

.contact-area {
    position: relative;
    padding: 80px 0 120px;
}

.contact-area .container {
    display: flex;
    flex-wrap: wrap;
}

.contact-left { width: 50%; }
.contact-right { width: 50%; }

.contact-left .section-title { font-size: 2em; }

.contact-left .contact-info-block { padding: 15px 0; }

/* Formulaire style aws44 */
.contact-form-wrapper {
    padding: 50px;
    border-radius: 16px;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.contact-form-wrapper .form-group { position: relative; margin-top: 15px; }

.contact-form-wrapper label {
    color: #212121;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95em;
    display: block;
    margin-bottom: 4px;
}

.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
    font-size: 1.1em;
    padding: 8px;
    display: block;
    width: 100%;
    border: none;
    color: #212121;
    font-family: 'Inter', sans-serif;
    border-bottom: 2px solid #212121;
    background-color: transparent;
    border-radius: 0 !important;
    transition: border-color 0.3s, color 0.3s;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    color: var(--brown);
    border-bottom-color: var(--brown);
}

.contact-form-wrapper textarea { height: 80px; resize: vertical; }

.contact-form-wrapper select { cursor: pointer; }
.contact-form-wrapper select option { color: #212121; }

.form-row { display: flex; gap: 20px; }
.form-row .form-group { flex: 1; }

.contact-form-wrapper .btn-submit {
    margin-top: 25px;
    padding: 16px 32px;
    border-radius: 30px;
    background-color: var(--gold);
    color: #fff;
    border: none;
    font-size: 1.1em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    display: block;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form-wrapper .btn-submit:hover { background-color: var(--bg-main); color: #fff; }

.form-success {
    padding: 12px;
    color: #fff;
    background-color: #1a8725;
    margin-bottom: 15px;
    border-radius: 8px;
    text-align: center;
}

.form-error {
    padding: 12px;
    color: #fff;
    background-color: #b10808;
    margin-bottom: 15px;
    border-radius: 8px;
    text-align: center;
}

/* Google Maps */
.map-section { height: 300px; }
.map-section iframe { width: 100%; height: 100%; border: 0; }

/* ========== FOOTER ========== */
.site-footer {
    position: relative;
    background-color: rgba(0,0,0,0.5);
    padding: 50px 0;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
}

.site-footer .container-wide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.footer-logo {
    display: flex;
    align-items: center;
    position: relative;
}

.footer-logo img {
    position: absolute;
    bottom: -70px; left: 0;
    max-width: 150px;
}

.footer-up {
    width: 50px; height: 80px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 25px;
    transition: transform 0.3s;
    position: relative;
    color: #fff;
    font-size: 1.2em;
}

.footer-up:hover { transform: translateY(-5px); }

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
}

.footer-links a {
    display: inline-block;
    font-size: 1.1em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 4px;
    transition: color 0.3s;
}

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

.footer-links .login-link { font-size: 0.8em; opacity: 0.4; text-transform: none; }

/* ========== BARRE MOBILE (coordBar) ========== */
.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    background-color: var(--brown);
    text-align: center;
    z-index: 10;
    align-items: center;
    justify-content: space-between;
}

.mobile-bar a {
    color: #fff;
    display: block;
    padding: 8px;
    font-size: 14px;
    flex: 1;
    border-left: 1px solid rgba(255,255,255,0.3);
}

.mobile-bar a:first-child { border: none; }
.mobile-bar img { padding-bottom: 5px; width: 24px; }

/* ========== BREADCRUMB ========== */
.breadcrumb {
    padding: 15px 0;
    padding-top: 120px;
}

.breadcrumb .container { font-size: 0.85em; }
.breadcrumb a { color: var(--brown); }
.breadcrumb span { margin: 0 6px; opacity: 0.5; color: var(--text-secondary); }

/* ========== PAGE HERO SLIDER (IMAGE DE FOND) ========== */
.page-hero {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.page-hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.page-hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s;
    z-index: 0;
}

.page-hero-slide.active { opacity: 1; z-index: 1; }

.page-hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.page-hero-content {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 800px;
    width: 90%;
    padding-top: 40px;
}

.page-hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.page-hero-content p {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.page-hero-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 6;
}

.page-hero-dots span {
    display: inline-block;
    width: 10px; height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 0 3px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.page-hero-dots span.active { background-color: #fff; }

.page-hero + .breadcrumb {
    padding-top: 15px;
}

@media (max-width: 768px) {
    .page-hero { height: 300px; }
    .page-hero-content h1 { font-size: 1.8em; }
    .page-hero-content p { font-size: 1em; }
    .page-hero-content { padding-top: 30px; }
}

@media (max-width: 480px) {
    .page-hero { height: 250px; }
    .page-hero-content h1 { font-size: 1.4em; }
    .page-hero-dots span { width: 8px; height: 8px; }
}

/* ========== PAGES GENERIQUES ========== */
.page-content {
    padding: 80px 0;
}

.page-content .container { max-width: 900px; }
.page-content h2 { font-size: 1.8em; color: var(--brown); margin: 20px 0 12px; }
.page-content p { margin-bottom: 12px; line-height: 1.8; }
.page-content a { color: var(--brown); }

/* ========== CATEGORIES / ALBUMS ========== */
.categories-section { padding: 80px 0; }

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.category-card-link {
    width: 25%;
    padding: 10px;
}

.category-card-link a {
    display: block;
    text-align: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0,0,0,0);
    transition: box-shadow 0.3s;
}

.category-card-link a:hover { box-shadow: 0 0 25px rgba(0,0,0,0.25); }

.category-card-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 16px;
}

.category-card-bg::before {
    content: "";
    display: block;
    height: 100%; width: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    padding-bottom: 90%;
    border-radius: 16px;
    transition: all 0.5s;
}

.category-card-bg::after {
    content: "";
    position: absolute;
    top: 100%; left: 0;
    height: 100%; width: 100%;
    background: linear-gradient(180deg, rgba(165,95,70,0) 0%, rgba(165,95,70,1) 100%);
    transition: all 0.5s;
    border-radius: 16px;
}

.category-card-link a:hover .category-card-bg::before { top: 100%; }
.category-card-link a:hover .category-card-bg::after { top: 0%; }

.category-card-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px 20px;
}

.category-card-inner h3 { color: #fff; font-size: 1.4em; text-transform: uppercase; font-family: 'Poppins', sans-serif; font-weight: 500; position: relative; z-index: 1; }
.category-card-inner p { color: rgba(255,255,255,0.8); font-size: 0.85em; position: relative; z-index: 1; }

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

.album-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.album-card:hover { box-shadow: 0 0 25px rgba(0,0,0,0.25); }
.album-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.album-card:hover img { transform: scale(1.05); }

.album-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
}

.album-overlay h3 { font-size: 1em; color: #fff; }
.album-overlay span { font-size: 0.8em; color: rgba(255,255,255,0.7); }

/* ========== ALBUM DETAIL ========== */
.album-detail { padding: 60px 0; }
.album-detail .container { max-width: 1200px; }
.album-detail h2 { font-size: 1.8em; margin-bottom: 8px; }
.album-description { color: var(--text-secondary); margin-bottom: 30px; line-height: 1.8; }

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.photo-item { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 8px; cursor: pointer; }
.photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.photo-item:hover img { transform: scale(1.08); }

.phase-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--brown);
    color: #fff;
    padding: 4px 12px;
    font-size: 0.75em;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 1000; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 8px; }

.lightbox-close { position: absolute; top: 20px; right: 30px; font-size: 2em; color: #fff; cursor: pointer; background: none; border: none; opacity: 0.7; transition: opacity 0.3s; }
.lightbox-close:hover { opacity: 1; }

.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2em; color: #fff; cursor: pointer; background: rgba(255,255,255,0.1); border: none; padding: 15px 20px; border-radius: 4px; opacity: 0.7; transition: opacity 0.3s; }
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ========== MENTIONS LEGALES ========== */
.mentions-content { padding: 80px 0; }
.mentions-content .container { max-width: 800px; }
.mentions-content h2 { font-size: 1.5em; color: var(--brown); margin: 30px 0 12px; }
.mentions-content h2:first-child { margin-top: 0; }
.mentions-content p { color: var(--text-secondary); font-size: 0.95em; line-height: 1.8; margin-bottom: 12px; }
.mentions-content a { color: var(--brown); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1400px) {
    .nav-menu > ul > li > a { font-size: 1.1em; }
    .nav-logo img { max-width: 160px; }
}

@media (max-width: 1200px) {
    .prestation-inner { padding: 50px 20px; }
    .banner-content { top: 30%; }
    .nav-logo img { max-width: 130px; }
    .nav-menu > ul > li { padding: 60px 10px; }
}

/* Bouton S'y rendre - mobile only */
.btn-navigate-mobile {
    display: none;
    margin-top: 10px;
    padding: 12px 24px;
    border-radius: 30px;
    background-color: var(--brown);
    color: #fff !important;
    font-size: 1em;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-align: center;
}
.btn-navigate-mobile:hover { background-color: var(--brown-hover); }
.btn-navigate-mobile i { margin-right: 6px; }

@media (max-width: 992px) {
    .hamburger { display: block; }
    .btn-navigate-mobile { display: inline-block; }

    .main-nav {
        position: fixed;
        top: 0; left: -100%;
        width: 350px;
        max-width: 80%;
        height: 100%;
        background-color: var(--bg-main);
        z-index: 99999;
        transition: left 0.4s;
        overflow-y: auto;
        box-shadow: 4px 0 20px rgba(0,0,0,0.5);
    }

    .main-nav.open { left: 0; }
    .main-nav .container-wide { flex-direction: column; }
    .nav-logo { display: none; }
    .nav-menu { width: 100%; text-align: left; }
    .nav-menu > ul { display: flex; flex-direction: column; }
    .nav-menu > ul > li { padding: 0; display: block; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .nav-menu > ul > li > a { padding: 15px 20px; font-size: 1.1em; color: #fff; display: block; }
    .nav-menu > ul > li > a:hover,
    .nav-menu > ul > li.active > a { color: var(--brown); }
    .nav-menu > ul > li > a::after { display: none; }
    .nav-menu .dropdown { position: static; width: 100%; left: 0; display: none; background: rgba(0,0,0,0.2); }
    .nav-menu li:hover > .dropdown { display: block; }
    .nav-menu .dropdown > li > a { text-align: left; padding: 10px 40px; font-size: 0.95em; color: rgba(255,255,255,0.7); background: transparent; }
    .nav-menu .dropdown > li > a:hover { color: var(--brown); background: rgba(255,255,255,0.05); }

    .banner-logo-mobile { display: block; max-width: 160px; margin-bottom: 15px; }
    .banner-content { top: 10%; padding: 0 15px; }
    .banner-content .container { padding: 0; }
    .baseline { font-size: 1.4em; line-height: 1.3; }
    .sub-baseline { font-size: 0.85em; margin-top: 8px; }
    .banner-buttons { gap: 10px; padding-top: 20px; }
    .banner-buttons .btn-primary,
    .banner-buttons .btn-outline {
        padding: 12px 22px;
        font-size: 0.9em;
    }

    .prestation-card { width: 50%; }
    .presentation-left { width: 100%; padding-right: 0; }
    .presentation-right { display: none; }
    .contact-left, .contact-right { width: 100%; }
    .contact-left { padding-bottom: 40px; }
    .category-card-link { width: 50%; }
    .nav-menu > ul > li { padding: 20px 12px; }

    .mobile-bar { display: flex !important; }

    .footer-logo img { bottom: -40px; max-width: 100px; }
    .contact-footer-section { padding-bottom: 60px; }
    .site-footer { padding-bottom: 80px; }

    /* Footer : fleche centree, mentions plus petit */
    .site-footer .container-wide {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .footer-logo { justify-content: center; }
    .footer-logo img { position: static; max-width: 120px; }
    .footer-links { align-items: center; }
    .footer-links a { font-size: 0.85em; }

    .gallery-grid { grid-template-areas: "a a a" "b b b" "c c c" "d d d" "e e e"; }
    .gallery-item:nth-child(1)::after,
    .gallery-item:nth-child(2)::after,
    .gallery-item:nth-child(3)::after,
    .gallery-item:nth-child(4)::after,
    .gallery-item:nth-child(5)::after {
        padding-bottom: 60%;
    }
}

@media (max-width: 768px) {
    .prestations-section, .gallery-section, .testimonials-section, .news-section { padding: 60px 0; }
    .presentation-section { padding: 60px 0; }
    .contact-area { padding: 40px 0 60px; }
    .section-title { font-size: 1.5em; }
    .form-row { flex-direction: column; gap: 0; }
    .contact-form-wrapper { padding: 30px 20px; }
    .prestation-card { width: 100%; }
    .category-card-link { width: 100%; }

    /* Banniere mobile */
    .banner-content { top: 8%; }
    .banner-buttons { flex-direction: row; flex-wrap: wrap; align-items: center; }
    .banner-buttons .btn-primary,
    .banner-buttons .btn-outline {
        padding: 10px 18px;
        font-size: 0.85em;
    }
    .baseline { font-size: 1.2em; }
    .sub-baseline { font-size: 0.8em; }
    .banner-logo-mobile { max-width: 120px; margin-bottom: 10px; }
    .banner-dots span { width: 8px; height: 8px; }

    /* Breadcrumb */
    .breadcrumb { padding-top: 90px; }

    /* Mentions */
    .mentions-content h2 { font-size: 1.2em; }
    .mentions-content p { font-size: 0.85em; }
}

@media (max-width: 480px) {
    .photos-grid { grid-template-columns: repeat(2, 1fr); }
    .albums-grid { grid-template-columns: 1fr; }

    /* Banniere tres petit ecran */
    .banner-content { top: 5%; }
    .baseline { font-size: 1em; }
    .sub-baseline { font-size: 0.75em; }
    .banner-logo-mobile { max-width: 100px; }
    .banner-buttons .btn-primary,
    .banner-buttons .btn-outline {
        padding: 8px 16px;
        font-size: 0.8em;
        width: auto;
    }

    .section-title { font-size: 1.3em; }
    .footer-links a { font-size: 0.75em; }
    .mentions-content h2 { font-size: 1.1em; }
    .mentions-content p { font-size: 0.8em; }
}
