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

:root {
    --orange: #FF8914;
    --orange-dark: #e67a0f;
    --metal: #d4a574;
    --dark: #2c2c2c;
    --gray: #6b6b6b;
    --light: #fdfcfb;
    --light-2: #f5f1ee;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page {
    display: none;
}

.page.active {
    display: block;
}

/* ==========================================================
   NOUVEAU HEADER (STYLE TEMPLATE)
   ========================================================== */
.header {
    background: white;
    border-bottom: 1px solid #eaeaea;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Bloc Logo + Texte */
.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
    padding: 5px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.6rem;
    color: var(--dark);
    font-weight: 400;   
    font-family: 'Raleway', sans-serif;
    line-height: 1.2;
    margin: 0;
}

.logo-subtitle {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

/* Navigation */
.nav {
    display: flex;
    gap: 25px;
}

.nav-link {
    background: none;
    border: none;
    color: var(--dark);
    font-size: 1rem;
    cursor: pointer;
    padding: 5px 0;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
    text-decoration: none;
}

.nav-link:hover, .nav-link.active {
    color: var(--orange);
    border-bottom: 2px solid var(--orange);
}

/* Langues */
.lang-switcher {
    display: flex;
    gap: 8px;
}

.lang-btn {
    background: none;
    border: 1px solid var(--orange);
    color: var(--orange);
    padding: 2px 10px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.75rem;
    transition: all 0.3s;
}

.lang-btn.active {
    background: var(--orange);
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 38% 80%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(44, 44, 44, 0.3), transparent, rgba(44, 44, 44, 0.7));
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 600px;
    margin-left: 30%;
    color: white;
}

.hero-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    font-family: 'Raleway', sans-serif;
}

.text-orange {
    color: var(--orange);
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-cta-wrapper {
    display: flex;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.btn-primary:hover {
    background: var(--orange-dark);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.btn-secondary:hover {
    background: var(--light-2);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-family: 'Raleway', sans-serif;
}

.section-subtitle {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

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

.feature-card {
    background: linear-gradient(135deg, var(--light) 0%, var(--light-2) 100%);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: box-shadow 0.3s;
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(255, 137, 20, 0.3);
}

.feature-icon svg {
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'Raleway', sans-serif;
}

.feature-desc {
    color: var(--gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--orange) 0%, var(--metal) 100%);
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
}

.cta-desc {
    font-size: 1.125rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* Page Container */
.page-container {
    padding: 60px 20px;
}

.page-title {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
}

.page-subtitle {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 15px;
    font-family: 'Raleway', sans-serif;
}

.intro-text {
    font-size: 1.125rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.call-me {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 40px;
}

/* Services Grid - Forcer 2 colonnes */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Le secret est ici pour les 2 colonnes */
    gap: 25px;
    margin: 40px 0;
}

/* Style des images pour qu'elles soient uniformes */
.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service-card {
    background: var(--light);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    color: var(--orange);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.info-box {
    background: var(--light-2);
    padding: 25px;
    border-radius: 15px;
}

.info-box h3 {
    color: var(--orange);
    margin-bottom: 15px;
}

/* Patent Section */
.patent-section {
    background: linear-gradient(135deg, var(--light) 0%, var(--light-2) 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
}

.patent-section h3 {
    color: var(--orange);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.patent-section .note {
    font-style: italic;
    color: var(--gray);
    margin-top: 15px;
}

/* Shipping Box */
.shipping-box {
    background: var(--light-2);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.shipping-box h3 {
    color: var(--orange);
    margin-bottom: 15px;
}

/* About Sections */
.about-section {
    margin: 40px 0;
}

.about-section h3 {
    color: var(--orange);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.about-section p {
    margin-bottom: 15px;
}

.glossary {
    background: var(--light-2);
    padding: 25px;
    border-radius: 15px;
    margin-top: 40px;
}

.glossary h3 {
    color: var(--orange);
    margin-bottom: 15px;
}

.glossary p {
    margin-bottom: 10px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.product-card {
    background: var(--light);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    text-align: center;
}

.product-card h4 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.125rem;
}

.price {
    font-size: 1.5rem;
    color: var(--orange);
    font-weight: bold;
    margin: 15px 0;
}

.eco-note,
.note {
    font-style: italic;
    color: var(--gray);
    margin: 30px 0;
    text-align: center;
}

.additional-info {
    background: var(--light-2);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
}

.additional-info p {
    margin-bottom: 15px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
}

.contact-info h3 {
    color: var(--orange);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.contact-section {
    margin-bottom: 30px;
}

.contact-section h4 {
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-section a {
    color: var(--orange);
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}

.map-container {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
}

.map-container h3 {
    color: var(--orange);
    margin-bottom: 20px;
}

.map-container iframe {
    border-radius: 10px;
}

/* Shipping Page */
.shipping-section {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.shipping-section h3 {
    color: var(--orange);
    margin-bottom: 15px;
}

.cta-box {
    background: linear-gradient(135deg, var(--orange) 0%, var(--metal) 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: white;
    margin: 40px 0;
}

.cta-box h3 {
    color: white;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: var(--orange);
    margin-bottom: 15px;
}

.footer-col a {
    color: white;
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav {
        justify-content: center;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero-text {
        margin-left: 0;
        padding: 20px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
}

@media (min-width: 640px) {
    .hero-image img {
        object-position: center 80%;
    }
    
    .hero-text {
        margin-left: 40%;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-text {
        margin-left: 50%;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
}
/* Style pour le bloc Valve "En Gros" */
.patent-section-large {
    margin: 60px 0;
    width: 100%;
}

.patent-card {
    background: var(--light);
    border-radius: 20px;
    border: 2px solid var(--orange); /* Bordure orange pour souligner le brevet */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.patent-img-large {
    width: 100%;
    height: 450px; /* Image haute et large */
    object-fit: cover;
}

.patent-content {
    padding: 40px;
}

.patent-content h3 {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 20px;
}

.patent-content p {
    font-size: 1.2rem; /* Texte un peu plus gros pour la lecture */
    line-height: 1.8;
    margin-bottom: 20px;
}

.patent-note {
    font-style: italic;
    color: var(--gray);
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
/* --- Bloc Traitement de surface centré --- */
.info-box-centered {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: var(--light, #f9f9f9); /* Utilise ta variable ou un gris clair */
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.info-box-centered h3 {
    margin-top: 0;
    color: var(--orange, #e67e22);
    font-size: 1.5rem;
}
/* Style du bloc Valve côte à côte */
.patent-card {
    background: var(--light);
    border-radius: 20px;
    border: 2px solid var(--orange);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex; /* Aligne image et texte sur la même ligne */
    align-items: center; /* Centre verticalement le contenu */
    flex-wrap: wrap; /* Permet de passer l'un sous l'autre sur mobile */
}

.patent-img-large {
    flex: 1; /* Prend 50% de la largeur */
    min-width: 300px; /* Évite qu'elle soit trop écrasée */
    max-height: 500px;
    width: auto;
    object-fit: contain; /* L'image s'affiche en entier */
    padding: 20px; /* Petit espace pour qu'elle ne touche pas les bords */
}

.patent-content {
    flex: 1; /* Prend les autres 50% de la largeur */
    min-width: 300px;
    padding: 40px;
}
/* Correction de la mise en page Qui je suis */
.about-grid {
    display: flex;
    align-items: flex-start;
    gap: 40px; /* Espace entre la photo et le texte */
    margin-top: 30px;
}

.about-image-container {
    flex: 1; /* Prend 1 part de l'espace */
    min-width: 300px;
}

.about-portrait {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.about-details {
    flex: 2; /* Prend 2 parts de l'espace (plus large que la photo) */
    min-width: 300px;
}

/* Version mobile : on empile au lieu d'être côte à côte */
@media (max-width: 768px) {
    .about-grid {
        flex-direction: column;
    }
    
    .about-image-container {
        width: 100%;
    }
}
/* --- Mise en page globale du "Qui je suis" --- */
.about-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap; /* Permet de passer l'un sous l'autre sur mobile */
    margin-top: 30px;
}

.about-image-container {
    flex: 1;
    min-width: 300px;
}

.about-portrait {
    width: 100%;
    height: auto;
    border-radius: 20px; /* Arrondi de la photo */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-details {
    flex: 1.5;
    min-width: 300px;
}

/* --- Style des Cartes Blanches (comme sur ta capture) --- */
.about-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Légère ombre pour le relief */
}

/* --- Les cercles oranges pour les icônes --- */
.about-icon-circle {
    background-color: #ff851b; /* Ton orange */
    width: 48px;
    height: 48px;
    min-width: 48px; /* Évite que le rond s'écrase */
    border-radius: 12px; /* Carré très arrondi */
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon-circle svg {
    width: 24px;
    height: 24px;
}

/* --- Textes à l'intérieur des cartes --- */
.about-text h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.25rem;
    color: #333;
}

.about-text p {
    margin: 0;
    color: #555;
    line-height: 1.5;
}

/* Glossaire en bas */
.glossary {
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid #eee;
}
/* Centrage du titre principal */
.text-center {
    text-align: center;
    margin-bottom: 40px;
}

/* Espacement pour le nom au-dessus de la photo */
.about-header {
    margin-bottom: 25px;
}

/* Styles du glossaire (Keynotes oranges) */
.glossary-list {
    list-style: none; /* On enlève les points noirs par défaut */
    padding-left: 0;
}

.glossary-list li {
    position: relative;
    padding-left: 25px; /* Espace pour le point orange */
    margin-bottom: 10px;
}

.glossary-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px; /* Ajuste la hauteur du point */
    width: 8px;
    height: 8px;
    background-color: #ff851b; /* Ton orange */
    border-radius: 50%;
}
/* --- Bloc Album Photo (Atelier) --- */
.album-cta-container {
    background-color: #f8f6f4; /* Le fond légèrement beige/gris */
    border: 1px solid #ebebeb; /* Bordure très discrète */
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    margin: 60px auto 40px auto;
    max-width: 800px;
}

.album-cta-container h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 400;
}

.album-cta-container p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 25px;
}

/* Le bouton Orange */
.btn-orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #f28b32; /* L'orange de ta maquette */
    color: white;
    padding: 12px 28px;
    border-radius: 50px; /* Forme de pilule */
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-orange:hover {
    background-color: #d97828;
    color: white;
    transform: translateY(-2px); /* Petit effet de soulèvement au survol */
}

.btn-orange svg {
    margin-top: -2px; /* Pour aligner parfaitement l'icône avec le texte */
}
.text-center {
    text-align: center;
}

.intro-box-orange {
    background-color: #f18c34;
    color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    margin: 20px auto 40px auto;
    max-width: 900px;
    text-align: center;
}

.intro-box-orange p {
    margin-bottom: 10px;
}

.call-me-white {
    font-weight: bold;
}
.text-center {
    text-align: center;
}
/* Style pour la box photo de la page Vente */
.shop-highlight-section {
    max-width: 600px; /* On limite la largeur pour que la photo ne soit pas géante */
    margin: 30px auto; /* Centre la box et donne de l'air */
}

.shop-image-container {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 0; /* Pas de padding pour que la photo touche les bords du haut/gauche/droite */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Même ombre que l'atelier */
    transition: transform 0.3s ease;
}

.shop-custom-img {
    width: 100%;
    height: auto;
    display: block; /* Supprime l'espace vide sous l'image */
}

.shop-custom-text {
    padding: 20px;
    text-align: left; /* Aligné à gauche comme tes services */
    border-top: 1px solid #eee; /* Petite ligne de séparation */
}

.shop-custom-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
}

/* Effet au survol comme sur tes autres cartes */
.shop-image-container:hover {
    transform: translateY(-5px);
}
@media (max-width: 768px) {
    .contact-card {
        flex: 1 1 100% !important;
    }
}
@media (max-width: 768px) {
    /* On force les colonnes à prendre toute la largeur sur mobile */
    .services-grid, .atelier-grid { 
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .service-card, .atelier-box {
        width: 100% !important;
        margin-bottom: 10px;
    }
}

