/* === VARIABLES COULEUR (Palette NAYAN) === */
:root {
    --creme: #FDF6F0;       /* Fond doux et chaleureux */
    --terre: #B7A99A;        /* Ton neutre pour les textes secondaires */
    --terracotta: #C17B5E;    /* Accent chaud, comme un fil de couleur */
    --vert-sauge: #9CAF88;    /* Touche de nature, de douceur */
    --texte-fonce: #3E3D3B;   /* Brun-gris très foncé pour les textes */
    --blanc-pur: #FFFFFF;
    --gris-clair: #F0EAE4;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background-color: var(--creme);
    color: var(--texte-fonce);
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-weight: 300;
    letter-spacing: 1px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--terracotta);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--terracotta);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === LOGO STYLES === */
.logo-container {
    text-align: center;
    padding: 1.5rem 0 0.5rem 0;
    background-color: var(--creme);
}

.logo-image {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* === HEADER (Navigation sticky) === */
header {
    position: sticky;
    top: 0;
    background-color: var(--creme);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 100;
    padding: 1rem 0;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2.5rem;
    flex-wrap: wrap;
}

nav a {
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
    color: var(--texte-fonce);
}

nav a:hover {
    border-bottom-color: var(--terracotta);
}

/* === STYLES DU CAROUSEL (SECTION ACCUEIL) === */
.hero-carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-top: 1rem;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 80%;
    max-width: 800px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-content .sous-titre {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.3rem;
    color: white;
    font-style: italic;
    max-width: 700px;
    margin: 1rem auto 0;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--texte-fonce);
    font-size: 1.5rem;
}

.hero-arrow:hover {
    background-color: white;
}

.hero-carousel-container:hover .hero-arrow {
    opacity: 1;
}

.hero-arrow.left {
    left: 20px;
}

.hero-arrow.right {
    right: 20px;
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-dot.active {
    background-color: white;
}

/* === SECTIONS === */
section {
    padding: 5rem 0;
}

/* Boutons */
.btn {
    display: inline-block;
    background-color: var(--terracotta);
    color: var(--blanc-pur);
    padding: 0.8rem 2rem;
    border-radius: 40px;
    font-weight: 500;
    margin-top: 2rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(193, 123, 94, 0.3);
}

.btn:hover {
    background-color: #a86548;
    transform: translateY(-2px);
}

/* Grille produits */
.produits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.produit-card {
    background: var(--blanc-pur);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--gris-clair);
}

.produit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.produit-img {
    height: 280px;
    background-size: cover;
    background-position: center;
}

.produit-info {
    padding: 1.5rem;
}

.produit-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.produit-prix {
    font-weight: 600;
    color: var(--terracotta);
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.btn-commander {
    background: var(--terracotta);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.btn-commander:hover {
    background-color: #a86548;
    transform: translateY(-2px);
}

/* SECTION ATELIER */
.atelier-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.atelier-image {
    flex: 1;
    min-width: 280px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

.atelier-texte {
    flex: 1;
    min-width: 280px;
}

/* Étapes */
.etapes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.etape {
    padding: 2rem 1rem;
    background: var(--blanc-pur);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.etape-numero {
    width: 50px;
    height: 50px;
    background: var(--vert-sauge);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 auto 1rem;
}

/* Témoignages */
.temoignage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.temoignage-card {
    background: var(--blanc-pur);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-left: 4px solid var(--vert-sauge);
    font-style: italic;
}

.temoignage-card p {
    margin-bottom: 1rem;
}

.client {
    font-weight: 600;
    color: var(--terracotta);
    font-style: normal;
}

/* FAQ */
.faq-item {
    background: var(--blanc-pur);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid var(--gris-clair);
}

.faq-question {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--texte-fonce);
    margin-bottom: 0.5rem;
}

.faq-reponse {
    color: var(--terre);
}

/* Social Icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--blanc-pur);
    color: var(--terracotta);
    font-size: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.social-icon:hover {
    transform: translateY(-5px);
    background-color: var(--terracotta);
    color: var(--blanc-pur);
}

.whatsapp-icon {
    background-color: #25D366;
    color: white;
}

.whatsapp-icon:hover {
    background-color: #128C7E;
    color: white;
}

/* Contact Section */
.contact-section {
    background: var(--vert-sauge);
    color: white;
    text-align: center;
    border-radius: 40px 40px 0 0;
    margin-top: 2rem;
    padding: 4rem 2rem;
}

.contact-section .btn {
    background: var(--blanc-pur);
    color: var(--texte-fonce);
    box-shadow: none;
}

.contact-section .btn:hover {
    background: var(--gris-clair);
}

footer {
    text-align: center;
    padding: 2rem;
    background: var(--texte-fonce);
    color: var(--creme);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    nav ul { gap: 1rem; }
    nav a { font-size: 0.9rem; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content .sous-titre { font-size: 1.4rem; }
    .hero-content p { font-size: 1.1rem; }
    .hero-carousel-container { height: 400px; }
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .logo-image {
        max-width: 180px;
    }
}