/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background: #F8F5F1;
    color: #2F2F2F;
    line-height: 1.6;
    overflow-x: hidden;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* =========================
   HEADER
========================= */

header {

    position: sticky;

    top: 0;

    z-index: 9999;

    background: rgba(248,245,241,0.97);

    backdrop-filter: blur(10px);

    border-bottom: 1px solid #E8DDD1;
}

/* LOGO */

.logo-link {

    display: flex;

    align-items: center;

    text-decoration: none;
}

.logo-image {

    height: 100px;

    width: auto;

    object-fit: contain;
}
/* NAVIGATION */

.nav {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 18px 0;

    position: relative;
}


/* MENU DESKTOP */

.main-nav ul {

    display: flex;

    align-items: center;

    gap: 40px;

    list-style: none;

    padding: 0;

    margin: 0;
}

.main-nav a {
    position: relative;

    margin-left: 15px;

    text-decoration: none;

    color: #2F2F2F;

    font-weight: 500;

    transition: 0.3s ease;
}

.main-nav a::after{

    content:'';
  
    position:absolute;
  
    left:0;
    bottom:-6px;
  
    width:0%;
    height:2px;
  
    background:#003333;
  
    transition:0.3s ease;
  }
  .main-nav a:hover::after{
    width:100%;
  }
  .main-nav a:hover{color: #003333;}


/* =========================
   BOUTON BURGER
========================= */

.menu-toggle {

    display: none;

    flex-direction: column;

    justify-content: center;

    gap: 6px;

    background: none;

    border: none;

    cursor: pointer;

    z-index: 10001;
}

.menu-toggle span {

    width: 28px;

    height: 3px;

    background: #2F2F2F;

    border-radius: 20px;

    transition: 0.3s;
}


@media(max-width: 900px) {

    .logo-image {

        height: 80px;
    }

    .menu-toggle {

        display: flex;
    }


    /* MENU MOBILE */

    .main-nav {

        position: fixed;

        top: 0;
        right: -100%;

        width: 280px;

        height: 100vh;

        background: #F8F5F1;

        padding-top: 120px;

        transition: 0.4s ease;

        box-shadow: -5px 0 20px rgba(0,0,0,0.08);
    }

    .main-nav.active {

        right: 0;
    }


    /* UL MOBILE */

    .main-nav ul {

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: flex-start;

        gap: 30px;

        list-style: none;

        padding: 0;
        margin: 0;
    }

    .main-nav li {

        list-style: none;
    }

    .main-nav a {

        font-size: 1.1rem;
    }


    /* ANIMATION BURGER */

    .menu-toggle.active span:nth-child(1) {

        transform: rotate(45deg) translateY(12px);
    }

    .menu-toggle.active span:nth-child(2) {

        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {

        transform: rotate(-45deg) translateY(-12px);
    }

}
/* HERO OVERLAY */

.hero-overlay {
    min-height: 55vh;
    background-image:
        linear-gradient(
            rgba(0,0,0,0.35),
            rgba(0,0,0,0.35)
        ),
        url('../images/Oreillers-Decoratifs.jpg');

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    display: flex;

    align-items: center;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .hero-overlay {

        min-height: 40vh;
    }
}

/* PAGE HERO */

.page-hero {

    background: #E8DDD1;

    padding: 60px 0 60px;

    text-align: center;
}

.page-hero h1 {

    font-size: 3rem;

    color: #B56E5A;

    margin-bottom: 30px;
}

.page-hero p {

    max-width: 700px;

    margin: auto;

    color: #555;

    font-size: 1.2rem;
}
.hero-overlay h1{

    color: white;
}
.hero-overlay p{
    color: white;
    margin-bottom: 30px;
}
/* =========================
   STORYTELLING
========================= */

.story-section {

    padding: 60px 0;

    background: white;
}

.story-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.story-subtitle {

    display: inline-block;

    color: #B56E5A;

    font-weight: 600;

    margin-bottom: 20px;

    letter-spacing: 1px;

    text-transform: uppercase;

    font-size: 0.9rem;
}

.story-text h2 {

    font-size: 3rem;

    color: #B56E5A;

    margin-bottom: 30px;

    line-height: 1.2;
}

.story-text p {

    margin-bottom: 20px;

    line-height: 1.9;

    color: #555;
}

.story-image img {

    width: 100%;

    border-radius: 24px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
/* RESPONSIVE */

@media(max-width:900px) {

    .story-grid {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .story-text {

        text-align: center;
    }

    .story-text h2 {

        font-size: 2.3rem;
    }

}

/* =========================
   INTRO
========================= */

.intro {

    padding: 100px 20px;

    text-align: center;

    max-width: 900px;
}

.intro-subtitle {

    display: inline-block;

    margin-bottom: 20px;

    color: #B56E5A;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 0.9rem;

    font-weight: 600;
}

.intro h2 {

    font-size: 3rem;

    color: #2F2F2F;

    margin-bottom: 35px;
}

.intro p {

    font-size: 1.1rem;

    line-height: 1.9;

    color: #555;

    margin-bottom: 20px;
}
.intro-signature {

    margin-top: 40px;

    font-style: italic;

    color: #B56E5A;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .intro {

        padding: 70px 20px;
    }

    .intro h2 {

        font-size: 2.2rem;
    }

    .intro p {

        font-size: 1rem;
    }

}

/* BUTTONS */
.btn {
    display: inline-block;
    background: #B56E5A;
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}


.btn:hover {
    background: #9d5f4d;
}


.btn.light {
    background: white;
    color: #B56E5A;
}


/* INTRO */
.intro {
    padding: 80px 0;
    text-align: center;
}


.intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #B56E5A;
}


/* SERVICES */
.services {
    padding: 80px 0;
}
/* =========================
   PROCESSUS
========================= */
.process-subtitle {

    display: inline-block;

    color: #B56E5A;

    font-weight: 600;

    margin-bottom: 20px;    

    letter-spacing: 1px;

    text-transform: uppercase;

    font-size: 0.9rem;
}
.process-section {

    padding: 110px 0;

    background: white;
}

.process-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    margin-top: 70px;
}


/* CARD */

.process-card {

    background: #F8F5F1;

    padding: 40px 30px;

    border-radius: 24px;

    text-align: center;

    transition: 0.3s;
}

.process-card:hover {

    transform: translateY(-5px);
}


/* NUMBER */

.process-number {

    width: 70px;
    height: 70px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: #B56E5A;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.4rem;

    font-weight: bold;
}


/* TEXT */

.process-card h3 {

    margin-bottom: 20px;

    color: #2F2F2F;
}

.process-card p {

    color: #555;

    line-height: 1.8;
}


/* RESPONSIVE */

@media(max-width:900px) {

    .process-grid {

        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width:600px) {

    .process-grid {

        grid-template-columns: 1fr;
    }

}


.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}


.card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}


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


.card h3 {
    margin-bottom: 15px;
    color: #B56E5A;
}


/* CTA */
.cta {
    background: #B56E5A;
    color: white;
    padding: 80px 0;
    text-align: center;
}


.cta h2 {
    margin-bottom: 25px;
    font-size: 2.5rem;
}
/* =========================
   ENGAGEMENT HEBE
========================= */

.engagement-section {

    padding: 120px 0;

    background: white;
}


/* CONTENU */

.engagement-content {

    max-width: 850px;

    margin: auto;

    text-align: center;
}

.engagement-content h2 {

    font-size: 3rem;

    color: #2F2F2F;

    margin-bottom: 35px;
}

.engagement-content p {

    font-size: 1.1rem;

    line-height: 1.9;

    color: #555;

    margin-bottom: 25px;
}


/* GRID */

.engagement-grid {

    margin-top: 80px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}


/* CARD */

.engagement-card {

    background: #F8F5F1;

    padding: 40px 30px;

    border-radius: 24px;

    text-align: center;

    transition: 0.3s;
}

.engagement-card:hover {

    transform: translateY(-5px);
}

.engagement-card h3 {

    margin-bottom: 20px;

    color: #B56E5A;
}

.engagement-card p {

    color: #555;

    line-height: 1.8;
}
/* ICONES ENGAGEMENT */

.engagement-icon {

    width: 80px;
    height: 80px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: rgba(181,110,90,0.10);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2rem;
}

/* RESPONSIVE */

@media(max-width:900px) {

    .engagement-grid {

        grid-template-columns: 1fr;
    }

    .engagement-content h2 {

        font-size: 2.3rem;
    }

}


/* FOOTER */
footer {
    background: #2F2F2F;
    color: white;
    padding: 30px 0;
    text-align: center;
}

/* CONTACT */

.contact-page {
    padding: 50px 0;
}

.contact-page h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #B56E5A;
}

.contact-form {
    max-width: 700px;
    margin: auto;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {

    width: 100%;
    padding: 16px;

    border: 1px solid #ddd;
    border-radius: 12px;

    font-size: 1rem;
    background: white;
}

.contact-form textarea {
    resize: vertical;
}
.hidden-field{
    display: none;
}
.success-message p{
    color:green;
    font-weight:600;
    text-align: center;
    margin:auto;
}
/* =========================
   GOOGLE MAPS
========================= */

.map-section {

    background: #F8F5F1;
}

.map-container {

    margin-top: 50px;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.map-container iframe {

    display: block;
}

/* SERVICES */

.service-section {
    padding: 100px 0;
}

.alt-bg {
    background: #EFE7DE;
}

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

.reverse {
    direction: rtl;
}

.reverse .service-text {
    direction: ltr;
}

.service-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #B56E5A;
}

.service-text p {
    margin-bottom: 25px;
}

.service-text ul {
    padding-left: 20px;
}

.service-text li {
    margin-bottom: 12px;
}

.service-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}


/* TARIFS */

.tarifs {

    padding: 100px 0;

    background: #F8F5F1;
}

.tarifs h2 {

    text-align: center;

    font-size: 3rem;

    color: #B56E5A;

    margin-bottom: 20px;
}

.tarifs-intro {

    max-width: 800px;

    margin: 0 auto 70px;

    text-align: center;

    color: #555;

    line-height: 1.8;
}


/* CATEGORIES */

.tarif-category {

    background: white;

    border-radius: 20px;

    padding: 40px;

    margin-bottom: 40px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.tarif-category h3 {

    color: #B56E5A;

    font-size: 2rem;

    margin-bottom: 30px;

    padding-bottom: 15px;

    border-bottom: 1px solid #E8DDD1;
}


/* TABLE */

.tarif-table {

    display: flex;

    flex-direction: column;

    gap: 18px;
}

.tarif-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding-bottom: 12px;

    border-bottom: 1px dashed #D8CABC;
}

.tarif-row span {

    color: #2F2F2F;
}

.tarif-row strong {

    color: #B56E5A;

    white-space: nowrap;
}


/* RESPONSIVE */

@media(max-width:768px) {

    .tarifs h2 {

        font-size: 2.2rem;
    }

    .tarif-category {

        padding: 25px;
    }

    .tarif-row {

        flex-direction: column;

        align-items: flex-start;
    }

}
/* TELECHARGEMENT TARIFS */

.tarif-download {

    margin-top: 60px;

    text-align: center;
}
.tarif-note {

    margin-top: 25px;

    text-align: center;

    font-size: 0.95rem;

    color: #777;
}

/* RESPONSIVE */

@media(max-width: 900px) {

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

    .reverse {
        direction: ltr;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

}
/* FILTRES */

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 50px;
    margin-top: 5px;
}

.filter-btn {
    background: white;

    border: 1px solid #ddd;

    padding: 12px 24px;

    border-radius: 30px;

    cursor: pointer;

    transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {

    background: #B56E5A;
    color: white;
}


/* GALERIE */

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 25px;
}

.gallery-item {
    overflow: hidden;

    border-radius: 20px;

    cursor: pointer;

    position: relative;
}

.gallery-item img {

    width: 100%;
    height: 320px;

    object-fit: cover;

    transition: transform 0.4s ease;
}

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


/* LIGHTBOX */

.lightbox {

    display: none;

    position: fixed;

    z-index: 9999;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.9);

    justify-content: center;
    align-items: center;
}

.lightbox-content {

    max-width: 90%;
    max-height: 85%;

    border-radius: 12px;
}

.close-lightbox {

    position: absolute;

    top: 30px;
    right: 40px;

    color: white;

    font-size: 3rem;

    cursor: pointer;
}

/* TEXTE GALERIE */

.gallery-text {
    padding: 80px 0 120px;
    text-align: center;
}

.gallery-text h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: #B56E5A;
}

.gallery-text p {
    max-width: 800px;
    margin: auto;
    color: #555;
    line-height: 1.8;
}


/* RESPONSIVE */

@media(max-width: 768px) {

    .gallery-item img {
        height: 250px;
    }

    .gallery-text h2 {
        font-size: 2rem;
    }
    .close-lightbox {
        right: 20px;
    }

}
/* ABOUT */

.about-section {
    padding: 100px 0;
}

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

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

    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.about-text h2 {
    font-size: 2.5rem;
    color: #B56E5A;

    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}


/* VALEURS */

.values-section {
    padding: 100px 0;

    background: #EFE7DE;

    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;

    margin-bottom: 60px;

    color: #B56E5A;
}

.values-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 30px;
}

.value-card {
    background: white;

    padding: 40px 30px;

    border-radius: 20px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.value-card h3 {
    margin-bottom: 20px;

    color: #B56E5A;
}


/* CITATION */

.about-quote {
    padding: 100px 0;

    text-align: center;
}

.about-quote blockquote {
    max-width: 900px;

    margin: auto;

    font-size: 2rem;

    line-height: 1.6;

    color: #7A6A5F;

    font-style: italic;
}


/* RESPONSIVE */

@media(max-width: 900px) {

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

    .about-text h2 {
        font-size: 2rem;
    }

    .about-quote blockquote {
        font-size: 1.5rem;
    }

}
/* AVIS */

.reviews-summary {
    padding: 80px 0 40px;
    text-align: center;
}

.summary-box {
    background: #EFE7DE;
    display: inline-block;

    padding: 40px 60px;

    border-radius: 20px;
}

.summary-box h2 {
    font-size: 3rem;
    color: #B56E5A;
}
/* SECTION Laisser un avis */

.leave-review {
    padding: 80px 0;
    text-align: center;
}

.leave-review h2 {
    font-size: 2.2rem;
    color: #B56E5A;
    margin-bottom: 15px;
}

.leave-review p {
    margin-bottom: 25px;
    color: #555;
}

/* GRID AVIS */

.reviews {
    padding: 80px 0 120px;
}

.reviews-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;
}


/* CARDS */

.review-card {
    background: white;

    padding: 30px;

    border-radius: 20px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.05);

    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card .stars {
    color: #B56E5A;

    margin-bottom: 15px;

    font-size: 1.2rem;
}

.review-card p {
    margin-bottom: 20px;

    line-height: 1.6;
}

.review-card span {
    font-weight: bold;

    color: #7A6A5F;
}
/* =========================
   HISTOIRE ATELIER
========================= */

.atelier-story {

    padding: 110px 0;

    background: #F8F5F1;
}

.atelier-story-content {

    max-width: 850px;

    margin: auto;

    text-align: center;
}

.atelier-story-content h2 {

    font-size: 3rem;

    color: #2F2F2F;

    margin-bottom: 35px;
}

.atelier-story-content p {

    font-size: 1.1rem;

    line-height: 1.9;

    color: #555;

    margin-bottom: 25px;
}


/* SIGNATURE */

.story-signature {

    margin-top: 40px;

    font-style: italic;

    color: #B56E5A;

    font-size: 1.15rem;
}


/* RESPONSIVE */

@media(max-width:768px) {

    .atelier-story {

        padding: 80px 20px;
    }

    .atelier-story-content h2 {

        font-size: 2.2rem;
    }

    .atelier-story-content p {

        font-size: 1rem;
    }

}