/* Variables globales */
:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --text-color: #333;
    --background-color: #FFF;
    --accent-color: #DEB887;
    --menu-height: 60px;
    --section-padding: 5rem;
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    padding-top: var(--menu-height);
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
}

/* Header et Navigation */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: var(--menu-height);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-color);
    padding: 0.5rem 1rem;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Sections principales */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* Séparations progressives entre sections */
section:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 30%, 
        rgba(255, 255, 255, 0.7) 70%, 
        rgba(255, 255, 255, 1) 100%);
    z-index: 1;
}

/* Section pattern avec séparation améliorée */
.section-pattern {
    background-color: #f9f5f0;
    position: relative;
}

.section-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, 
        rgba(249, 245, 240, 0) 0%, 
        rgba(249, 245, 240, 0.5) 50%, 
        rgba(249, 245, 240, 1) 100%);
    z-index: 1;
}

/* Séparation spéciale pour la section hero vers about */
.hero + .about-section::before {
    background: linear-gradient(to bottom, 
        rgba(249, 245, 240, 0.8) 0%, 
        rgba(249, 245, 240, 0.9) 30%, 
        rgba(249, 245, 240, 1) 100%);
}

/* Séparation pour about vers créations */
.about-section + #creations::before {
    background: linear-gradient(to bottom, 
        rgba(249, 245, 240, 0.8) 0%, 
        rgba(255, 255, 255, 0.9) 50%, 
        rgba(255, 255, 255, 1) 100%);
}

/* Séparation pour créations vers avis clients */
#creations + #avis-clients::before {
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(249, 245, 240, 0.9) 50%, 
        rgba(249, 245, 240, 1) 100%);
}

/* Séparation pour avis clients vers FAQ */
#avis-clients + #faq::before {
    background: linear-gradient(to bottom, 
        rgba(249, 245, 240, 0.8) 0%, 
        rgba(255, 255, 255, 0.9) 50%, 
        rgba(255, 255, 255, 1) 100%);
}

/* Séparation pour FAQ vers processus */
#faq + #processus::before {
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(249, 245, 240, 0.9) 50%, 
        rgba(249, 245, 240, 1) 100%);
}

/* Séparation pour processus vers contact */
#processus + #contact::before {
    background: linear-gradient(to bottom, 
        rgba(249, 245, 240, 0.8) 0%, 
        rgba(255, 255, 255, 0.9) 50%, 
        rgba(255, 255, 255, 1) 100%);
}

/* Hero Section - Modern Design */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: calc(-1 * var(--menu-height));
}

/* Séparation spéciale pour la section hero */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, 
        rgba(139, 69, 19, 0.3) 0%, 
        rgba(160, 82, 45, 0.2) 20%, 
        rgba(210, 180, 140, 0.3) 40%, 
        rgba(245, 222, 179, 0.5) 60%, 
        rgba(249, 245, 240, 0.7) 80%, 
        rgba(249, 245, 240, 1) 100%);
    z-index: 3;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.8) 0%, rgba(160, 82, 45, 0.6) 100%);
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 50px 50px;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3%;
}

/* Assurer que le contenu des sections apparaît au-dessus des séparations */
.container {
    position: relative;
    z-index: 2;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-text-content {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e6b17a 100%);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(230, 177, 122, 0.3);
}

.hero-title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    color: white;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.hero-title-sub {
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: white;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.3));
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e6b17a 100%);
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(230, 177, 122, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 177, 122, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-main-image {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem;
}

.hero-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.3rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e6b17a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Valeurs */
.valeurs {
    background-color: rgba(255,255,255,0.9);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.valeur-item {
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.valeur-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* About Section - Modern Design */
.about-section {
    background: linear-gradient(135deg, #f9f5f0 0%, #f0e6d2 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom right, transparent 49%, #f9f5f0 50%);
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 3;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e6b17a 100%);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(230, 177, 122, 0.3);
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-top: 1rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.about-visual {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image-container:hover .about-image {
    transform: scale(1.05);
}

.about-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    z-index: 1;
}

.decoration-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e6b17a 100%);
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.8;
}

.decoration-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
    position: absolute;
    bottom: 20px;
    right: 0;
    border-radius: 2px;
}

.about-credentials {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.credential-item:hover {
    transform: translateX(10px);
}

.credential-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.credential-item span {
    font-weight: 600;
    color: var(--primary-color);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-intro h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.about-mission h4, .about-skills h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-mission p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.skills-grid {
    display: grid;
    gap: 1.5rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

.skill-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.skill-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e6b17a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.skill-content h5 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.skill-content p {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
}

.about-cta {
    margin-top: 1rem;
}

/* Créations Section */
.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.categorie {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    min-width: 0;
}

.categorie h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.categorie h3 i {
    color: var(--primary-color);
}

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

.produit {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.produit-image {
    position: relative;
    overflow: hidden;
}

.produit-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.produit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(139, 69, 19, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.produit:hover .produit-overlay {
    opacity: 1;
}

.produit-overlay p {
    color: white;
    font-weight: 500;
    transform: translateY(20px);
    transition: var(--transition);
}

.produit:hover .produit-overlay p {
    transform: translateY(0);
}

.produit p {
    padding: 1rem;
    text-align: center;
}

.produit-sizes {
    display: none;
}

/* Modal pour les détails des produits */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: var(--border-radius);
    width: 95%;
    max-width: 1000px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.product-details {
    margin-top: 1rem;
}

.product-details h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.product-details .description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.product-details .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    background-color: #f9f5f0;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.product-details .pricing {
    background-color: var(--accent-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.pricing h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.pricing ul {
    list-style: none;
    padding: 0;
}

.pricing li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(139, 69, 19, 0.2);
}

.pricing li:last-child {
    border-bottom: none;
}

.product-details .sizes {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--accent-color);
}

.sizes h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.size-item {
    background-color: #f9f5f0;
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.size-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.size-item p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
}

/* Galerie photos des produits */
.product-gallery {
    margin-bottom: 2rem;
}

.product-gallery h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.gallery-item {
    text-align: center;
    background-color: #f9f5f0;
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--accent-color);
}

.gallery-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: calc(var(--border-radius) - 2px);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

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

.gallery-item p {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

/* Processus Section */
.processus-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.processus-intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.processus-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.processus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.processus-etape {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    position: relative;
    min-height: 400px;
    min-width: 350px;
    display: flex;
    flex-direction: column;
}



/* Grille pour les étapes 4 et 5 centrées */
.processus-etapes-centre {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.processus-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 3;
}

.processus-content {
    padding: 2.5rem 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.processus-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    text-align: center;
}

.processus-subtitle {
    color: var(--secondary-color);
    font-style: italic;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.processus-details {
    text-align: left;
    flex: 1;
}

.processus-details p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.processus-details ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.processus-details li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.processus-objectif {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 3px solid var(--primary-color);
    font-size: 0.9rem;
}

.processus-warning {
    background-color: #fff8e1;
    border: 1px solid #ffecb3;
    color: #8d6e63;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 3px solid #ff9800;
    font-size: 0.9rem;
}

.fabrication-steps h4,
.processus-difference h4 {
    color: var(--primary-color);
    margin: 1.2rem 0 0.8rem;
    font-size: 1rem;
}

.processus-resume {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.processus-resume h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.resume-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.resume-item {
    background-color: #f8f9fa;
    padding: 1.2rem;
    border-radius: 8px;
    font-weight: 500;
    color: var(--primary-color);
    border: 1px solid #e9ecef;
}

.processus-temps {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e9ecef;
}

.processus-temps h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.processus-temps p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.processus-etapes-detaillees {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
    margin-top: 1.5rem;
    border: 1px solid #e9ecef;
}

.processus-etapes-detaillees h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.processus-etapes-detaillees ol {
    padding-left: 1.5rem;
}

.processus-etapes-detaillees li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    margin: 0;
    color: var(--text-color);
    font-size: 1rem;
}

.social-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.9rem;
}

.social-link.facebook {
    background-color: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-advice {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--accent-color);
    border-radius: 8px;
}

.contact-advice h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-advice ul {
    margin: 0;
    padding-left: 1.2rem;
}

.contact-advice li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-form-section {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

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

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

input, textarea, select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background-color: white;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

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

select {
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

button {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Galerie de contact */
.contact-gallery {
    margin-top: 4rem;
    text-align: center;
}

.contact-gallery h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-gallery .gallery-item {
    background-color: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: var(--transition);
}

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

.contact-gallery .gallery-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.contact-gallery .gallery-item p {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
    font-size: 0.9rem;
}

/* Avis Clients Section */
#avis-clients {
    background-color: #f9f5f0;
    padding: var(--section-padding) 0;
    position: relative;
}

#avis-clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom right, transparent 49%, #f9f5f0 50%);
}

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

.testimonial {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonial-content {
    padding: 2rem;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.client-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.client-location {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin: 0;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.rating i {
    color: #FFD700;
    font-size: 1rem;
}

blockquote {
    font-style: italic;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
    position: relative;
    padding-left: 1.5rem;
}

blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

/* FAQ Section */
.faq-container {
    margin-top: 2rem;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    background-color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.faq-question:hover {
    background-color: #f9f5f0;
}

.faq-question.active {
    background-color: var(--accent-color);
    border-bottom-color: var(--primary-color);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 1rem;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f9f5f0;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    line-height: 1.6;
    color: var(--text-color);
}

.faq-advice {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 2rem;
}

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

.faq-advice ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-advice li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.faq-advice strong {
    color: var(--primary-color);
}

.faq-contact {
    background-color: var(--accent-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 500;
    color: var(--primary-color);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6b3410 100%);
    color: white;
    padding: 0;
}

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

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social-link:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--accent-color);
    width: 16px;
}

.footer-legal-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-legal-info i {
    color: var(--accent-color);
    width: 16px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin: 0 -3%;
    padding-left: 3%;
    padding-right: 3%;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-legal-link:hover {
    color: var(--accent-color);
}

.separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* Pages légales (CGV et Politique de confidentialité) */
.hero-small {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero-small h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-small p {
    font-size: 1.2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cgv-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #8B4513 100%);
    border-radius: 15px;
    color: white;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.company-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.company-info p {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cgv-content {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FAFAFA 0%, #F0F0F0 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: inset 0 0 30px rgba(139, 69, 19, 0.1);
}

.cgv-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cgv-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.cgv-section h3 {
    color: #8B4513;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.cgv-section p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #2C2C2C;
    font-size: 1.05rem;
}

.cgv-section ul {
    margin: 1.2rem 0;
    padding-left: 1.8rem;
}

.cgv-section li {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #2C2C2C;
    font-size: 1.05rem;
}

.cgv-section strong {
    color: #8B4513;
    font-weight: 700;
}

.cgv-section ul li::marker {
    color: var(--accent-color);
    font-weight: bold;
}

.cgv-section ul li strong {
    background: linear-gradient(120deg, #F0E68C 0%, transparent 100%);
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 5px;
}

.cgv-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #F5F5DC 0%, #F0E68C 100%);
    border-radius: 10px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.2);
}

.cgv-footer p {
    font-size: 1.1rem;
    color: #8B4513;
    margin: 0;
    font-weight: 600;
}

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

    .nav-menu {
        position: fixed;
        top: var(--menu-height);
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu li a {
        padding: 1rem;
        display: block;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .footer-section:nth-child(5) {
        grid-column: span 2;
        text-align: center;
    }
    
    .hero-small h1 {
        font-size: 2rem;
    }
    
    .hero-small p {
        font-size: 1rem;
    }
    
    .hero-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-title-sub {
        font-size: 1.4rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-image {
        height: 400px;
    }
    
    .about-credentials {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .skill-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cgv-header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .company-info h2 {
        font-size: 1.5rem;
    }
    
    .cgv-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .cgv-section h3 {
        font-size: 1.2rem;
    }
    
    .cgv-content {
        padding: 1.5rem;
    }
    
    .cgv-header {
        padding: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        padding-top: calc(var(--menu-height) + 2rem);
    }

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

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

    .processus-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .processus-etapes-centre {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }
    
    .processus-etape {
        min-height: auto;
    }
    
    .processus-intro h2 {
        font-size: 1.6rem;
    }
    
    .processus-content {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .resume-grid {
        grid-template-columns: 1fr;
    }
    
    .processus-resume {
        padding: 2rem 1.5rem;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    section {
        padding: 3rem 0;
    }
}

/* Animation du menu hamburger */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
