/**
 * Fichier : /style.css
 * Description : Feuille de style principale du site Pranadara
 * Design Ayurvédique moderne, chaleureux et épuré
 * Menu mobile perfectionné : icône CSS pure, animation fluide, sous-menus enroulables
 * Largeur du site : Réglable depuis l'admin (full, 1800px, 1400px, 1200px)
 * Rendu du contenu riche : Espacements standards
 * Dernière modification : 13 Janvier 2026
 * 
 * MODIFICATIONS V3.7.1 :
 * - Suppression références Quill (remplacé par TinyMCE)
 * - Footer responsive : 3 colonnes → 2 colonnes (tablette) → 1 colonne (mobile)
 */

/* ====================================
   1. VARIABLES & COULEURS (Ambiance Ayurveda)
   ==================================== */
:root {
    /* Couleurs principales du thème Ayurveda */
    --primary: #92400e;         /* Marron chaud (Terre) - Utilisé pour les titres, boutons principaux */
    --primary-light: #b45309;   /* Marron plus clair pour hover - États interactifs */
    --secondary: #15803d;       /* Vert nature (Plantes) - Accents secondaires */
    
    /* Couleurs de fond */
    --bg-sand: #fffaf0;         /* Sable très clair (fond général) - Fond du site */
    --bg-white: #ffffff;        /* Blanc pur - Cartes et conteneurs */
    
    /* Couleurs de texte */
    --text-dark: #1f2937;       /* Gris très foncé (texte principal) - Contenu principal */
    --text-muted: #4b5563;      /* Gris moyen (sous-titres) - Texte secondaire */
    
    /* Bordures */
    --border: #e5e7eb;          /* Bordures légères - Séparateurs subtils */
    
    /* Couleur du footer (identique au menu) */
    --footer-bg: #2e2e2e;       /* Gris foncé - Fond footer et navigation */
}

/* ====================================
   2. RESET & BASES
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* ====================================
   3. TYPOGRAPHIE
   ==================================== */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* ====================================
   4. WRAPPER PRINCIPAL - LARGEUR RÉGLABLE
   ==================================== */
.site-wrapper-full {
    max-width: 100%;
    margin: 0 auto;
}

.site-wrapper-1800 {
    max-width: 1800px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(0,0,0,0.05);
}

.site-wrapper-1400 {
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(0,0,0,0.05);
}

.site-wrapper-1200 {
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(0,0,0,0.05);
}

/* ====================================
   5. LAYOUT UTILS
   ==================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.section-padding {
    padding: 50px 0;
}

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

.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ====================================
   6. BOUTONS
   ==================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.96);
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff !important;
    border-color: var(--primary);
    box-shadow: 0 4px 6px rgba(146, 64, 14, 0.2);
}

.btn-primary:hover {
    background-color: white;
    color: var(--primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(146, 64, 14, 0.3);
}

/* ====================================
   7. HEADER & NAVIGATION DESKTOP
   ==================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--footer-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    font-weight: 500;
    color: #e5e7eb;
    position: relative;
}

.nav-links li a:hover {
    color: #ffffff;
}

.nav-links li a.active {
    color: #ffffff;
    font-weight: 700;
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
}

/* ====================================
   8. DROPDOWN MENU
   ==================================== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--footer-bg);
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-radius: 0 0 12px 12px;
    padding: 8px 0;
    margin-top: 0;
    z-index: 1000;
}

@media (min-width: 769px) {
    .dropdown:hover > .dropdown-menu {
        display: block;
    }
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #e5e7eb;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.dropdown-menu a.active {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-weight: 600;
}

/* ====================================
   8b. MENU "PLUS" - SOUS-MENUS IMBRIQUÉS (DESKTOP)
   ==================================== */
@media (min-width: 769px) {
    #more-menu > .dropdown-menu {
        min-width: 220px;
    }
    
    #more-menu .dropdown {
        position: relative;
    }
    
    #more-menu .dropdown > .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
        color: #e5e7eb;
        font-size: 0.95rem;
        cursor: pointer;
        transition: all 0.2s;
    }
    
    #more-menu .dropdown > .dropdown-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }
    
    #more-menu .dropdown > .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.2);
        padding: 0;
        margin: 0;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    #more-menu .dropdown.submenu-open > .dropdown-menu {
        display: block;
        max-height: 500px;
    }
    
    #more-menu .dropdown.submenu-open > .dropdown-toggle .chevron-icon {
        transform: rotate(180deg);
    }
    
    #more-menu .dropdown > .dropdown-menu a {
        padding: 10px 20px 10px 35px;
        font-size: 0.9rem;
        color: #d1d5db;
    }
    
    #more-menu .dropdown > .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
    }
    
    #more-menu .dropdown > .dropdown-menu a.active {
        background: rgba(255, 255, 255, 0.15);
        color: #ffffff;
        font-weight: 600;
    }
}

/* ====================================
   9. MENU MOBILE - SLIDER LATÉRAL
   ==================================== */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1002;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.hamburger-line {
    width: 32px;
    height: 4px;
    background: #ffffff;
    border-radius: 4px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-btn.open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-btn.open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 15px;
        right: 0;
        width: 66.666%;
        max-width: 400px;
        height: 100vh;
        background: var(--footer-bg);
        flex-direction: column;
        padding: 20px 0 30px !important;
        gap: 0 !important;
        text-align: left;
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.25);
        transform: translateX(100%);
        opacity: 1;
        visibility: visible;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 1001;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }
    
    body.menu-open::before {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .nav-links > li {
        border: none;
    }
    
    .nav-links > li > a {
        display: block;
        padding: 12px 25px;
        font-size: 1rem;
        font-weight: 500;
        color: #e5e7eb !important;
        transition: all 0.3s;
        position: relative;
    }
    
    .nav-links > li > a:hover {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .nav-links > li > a.active {
        color: #ffffff !important;
        font-weight: 700;
        background: rgba(255, 255, 255, 0.15);
    }
    
    .nav-links > li > a.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 3px;
        background: #ffffff;
        border-radius: 2px;
    }
    
    .dropdown-toggle {
        display: block;
        padding: 12px 25px;
        font-size: 1rem;
        font-weight: 500;
        color: #e5e7eb !important;
        cursor: pointer;
        transition: all 0.3s;
        position: relative;
    }
    
    .dropdown-toggle:hover {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-toggle .chevron-icon {
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.2);
        padding: 0;
        margin: 0;
        border: none;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.submenu-open .dropdown-menu {
        display: block;
        max-height: 500px;
    }
    
    .dropdown-menu li {
        border: none;
    }
    
    .dropdown-menu a {
        display: block !important;
        padding: 10px 25px 10px 45px !important;
        font-size: 0.95rem !important;
        font-weight: 400 !important;
        color: #d1d5db !important;
        background: transparent !important;
        transition: all 0.3s !important;
        position: relative !important;
    }
    
    .dropdown-menu a:hover {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.08) !important;
    }
    
    .dropdown-menu a.active {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.2) !important;
        font-weight: 600 !important;
    }
    
    .dropdown-menu a.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 2px;
        background: #ffffff;
        border-radius: 2px;
    }
}

@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none !important;
    }
    
    .dropdown:hover > .dropdown-menu {
        display: block;
    }
}

/* ====================================
   10. CARTES & GRILLES
   ==================================== */
.grid-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.card, .blog-card, .admin-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(146, 64, 14, 0.05) !important;
    box-shadow: 0 15px 35px -5px rgba(146, 64, 14, 0.06), 
                0 5px 15px -5px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: flex;
    flex-direction: column;
}

.card:hover, .blog-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px -12px rgba(146, 64, 14, 0.12), 
                0 18px 36px -18px rgba(0, 0, 0, 0.08) !important;
}

/* ====================================
   11. FOOTER
   ==================================== */
footer {
    background: var(--footer-bg);
    color: #d1d5db;
    padding: 60px 0 20px;
}

footer h3, footer h4 {
    color: white;
    margin-bottom: 20px;
}

footer a {
    color: #9ca3af;
}

footer a:hover {
    color: white;
}

/* ====================================
   12. FORMULAIRES
   ==================================== */
form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

input[type="text"], 
input[type="email"], 
input[type="tel"], 
input[type="date"], 
input[type="number"],
select, 
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: 0.3s;
    outline: none;
    height: 50px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2392400e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

input[type="number"] {
    background-image: none;
}

textarea {
    height: auto;
    min-height: 120px;
    background-image: none;
}

input:focus, 
select:focus, 
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(146, 64, 14, 0.1);
}

/* ====================================
   13. STYLE DU CONTENU RICHE (TinyMCE)
   ==================================== */
.page-content,
.blog-article-content,
.faq-answer-content {
    line-height: 1.8;
    font-size: 1.05rem;
    color: #374151;
}

/* Titres H2 */
.page-content h2,
.blog-article-content h2,
.faq-answer-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #92400e;
    margin-top: 1.5em;
    margin-bottom: 0.6em;
    font-weight: 700;
}

/* Titres H3 */
.page-content h3,
.blog-article-content h3,
.faq-answer-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #92400e;
    margin-top: 1.3em;
    margin-bottom: 0.5em;
    font-weight: 600;
}

/* Premier titre sans marge en haut */
.page-content h2:first-child,
.page-content h3:first-child,
.blog-article-content h2:first-child,
.blog-article-content h3:first-child,
.faq-answer-content h2:first-child,
.faq-answer-content h3:first-child {
    margin-top: 0;
}

/* Paragraphes */
.page-content p,
.blog-article-content p,
.faq-answer-content p {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.8;
}

/* Espace entre paragraphes consécutifs */
.page-content p + p,
.blog-article-content p + p,
.faq-answer-content p + p {
    margin-top: 1em;
}

/* Espace avant les titres */
.page-content p + h2,
.page-content p + h3,
.blog-article-content p + h2,
.blog-article-content p + h3,
.faq-answer-content p + h2,
.faq-answer-content p + h3 {
    margin-top: 2em;
}

/* Texte en gras */
.page-content strong,
.blog-article-content strong,
.faq-answer-content strong {
    color: #92400e;
    font-weight: 600;
}

/* Texte en italique */
.page-content em,
.blog-article-content em,
.faq-answer-content em {
    font-style: italic;
}

/* Citations */
.page-content blockquote,
.blog-article-content blockquote,
.faq-answer-content blockquote {
    border-left: 4px solid #92400e;
    padding: 15px 25px;
    background: #fffbf0;
    margin: 1.5em 0;
    font-style: italic;
    color: #1f2937;
    border-radius: 0 8px 8px 0;
}

/* Listes à puces */
.page-content ul,
.blog-article-content ul,
.faq-answer-content ul {
    list-style: disc !important;
    margin: 1em 0 1.5em 0 !important;
    padding-left: 40px !important;
}

/* Listes numérotées */
.page-content ol,
.blog-article-content ol,
.faq-answer-content ol {
    list-style: decimal !important;
    margin: 1em 0 1.5em 0 !important;
    padding-left: 40px !important;
}

/* Items de liste */
.page-content li,
.blog-article-content li,
.faq-answer-content li {
    margin-bottom: 0.5em;
    display: list-item !important;
    line-height: 1.7;
}

/* Images */
.page-content img,
.blog-article-content img,
.faq-answer-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2em auto;
    display: block;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Liens */
.page-content a,
.blog-article-content a,
.faq-answer-content a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.2s;
}

.page-content a:hover,
.blog-article-content a:hover,
.faq-answer-content a:hover {
    color: #7c2d12;
}

/* ====================================
   13b. STYLES WYSIWYG - ALIGNEMENT, LIENS
   ==================================== */

/* Alignement texte */
.page-content [style*="text-align: center"],
.blog-article-content [style*="text-align: center"],
.faq-answer-content [style*="text-align: center"] {
    text-align: center;
}

.page-content [style*="text-align: right"],
.blog-article-content [style*="text-align: right"],
.faq-answer-content [style*="text-align: right"] {
    text-align: right;
}

.page-content [style*="text-align: justify"],
.blog-article-content [style*="text-align: justify"],
.faq-answer-content [style*="text-align: justify"] {
    text-align: justify;
}

/* Liens externes */
.page-content a[target="_blank"]::after,
.blog-article-content a[target="_blank"]::after,
.faq-answer-content a[target="_blank"]::after {
    content: ' ↗';
    font-size: 0.8em;
    opacity: 0.6;
}

/* Pas d'icône pour les liens sur images */
.page-content a[target="_blank"]:has(img)::after,
.blog-article-content a[target="_blank"]:has(img)::after,
.faq-answer-content a[target="_blank"]:has(img)::after {
    content: none;
}

/* ====================================
   14. TRAIT DÉCORATIF AYURVEDA (HR)
   ==================================== */
hr {
    border: none;
    height: 3px;
    width: 160px;
    background: linear-gradient(90deg, #92400e, #78350f);
    border-radius: 2px;
    margin: 40px auto;
    opacity: 1;
}

.page-content hr,
.blog-article-content hr,
.faq-answer-content hr {
    border: none;
    height: 3px;
    width: 160px;
    background: linear-gradient(90deg, #92400e, #78350f);
    border-radius: 2px;
    margin: 40px auto;
    opacity: 1;
}

hr.left {
    margin-left: 0;
    margin-right: auto;
}

hr.right {
    margin-left: auto;
    margin-right: 0;
}

/* Code inline */
.page-content code,
.blog-article-content code,
.faq-answer-content code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: #92400e;
}

/* Bloc de code */
.page-content pre,
.blog-article-content pre,
.faq-answer-content pre {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    overflow-x: auto;
    margin: 1.5em 0;
}

.page-content pre code,
.blog-article-content pre code,
.faq-answer-content pre code {
    background: none;
    padding: 0;
}

/* ====================================
   15. RESPONSIVE (Tablette & Mobile)
   ==================================== */

/* Tablettes */
@media (max-width: 1024px) {
    .container { 
        padding: 0 40px;
    }
    
    .section-padding { 
        padding: 40px 0;
    }
    
    h1 { 
        font-size: 2.8rem;
    }
    
    .page-content,
    .blog-article-content,
    .faq-answer-content {
        font-size: 1rem;
    }
    
    .page-content h2,
    .blog-article-content h2,
    .faq-answer-content h2 {
        font-size: 1.5rem;
    }
    
    .page-content h3,
    .blog-article-content h3,
    .faq-answer-content h3 {
        font-size: 1.3rem;
    }
}

/* Smartphones */
@media (max-width: 768px) {
    .container { 
        padding: 0 20px;
    }
    
    .section-padding { 
        padding: 30px 0;
    }
    
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .card, .blog-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .grid-pricing {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ====================================
   16. SCROLLBAR PERSONNALISÉE
   ==================================== */
::-webkit-scrollbar { 
    width: 8px;
}

::-webkit-scrollbar-track { 
    background: var(--bg-sand);
}

::-webkit-scrollbar-thumb { 
    background: #d1d5db;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover { 
    background: var(--primary-light);
}

/* ====================================
   17. LOOK "GALET" ORGANIQUE
   ==================================== */
.img-organic {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: border-radius 1s ease-in-out;
    object-fit: cover;
}

.img-organic:hover {
    border-radius: 50%;
}

/* ====================================
   18. CTA BOXES - DESIGN UNIFIÉ
   ==================================== */
.cta-box {
    max-width: 750px;
    margin: 60px auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(146, 64, 14, 0.1);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}

.cta-icon-round {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(146, 64, 14, 0.15);
}

.cta-icon-round i {
    color: var(--primary) !important;
}

.cta-text {
    flex: 1;
}

.cta-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 0 10px 0;
    font-weight: 700;
    line-height: 1.3;
}

.cta-text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #92400e 0%, #78350f 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(146, 64, 14, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(146, 64, 14, 0.4);
}

/* ====================================
   19. RESPONSIVE CTA MOBILE
   ==================================== */
@media (max-width: 768px) {
    .cta-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .cta-icon-round {
        margin: 0 auto;
    }
    
    .cta-text h3 {
        font-size: 1.3rem;
    }
    
    .cta-text p {
        font-size: 0.95rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        padding: 12px 24px;
    }
}

/* ====================================
   20. HERO - SECTION D'ACCUEIL
   ==================================== */
.hero-home {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-home:not(.hero-with-image) {
    background: linear-gradient(rgba(255,250,240,0.8), rgba(255,255,255,1));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(146, 64, 14, 0.65) 0%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-title-light {
    color: white;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.hero-subtitle-light {
    color: white;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
}

.hero-cta {
    margin-top: 2rem;
}

.hero-btn-shadow {
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-cta .btn i {
    margin-right: 10px;
}

@media (max-width: 768px) {
    .hero-home {
        min-height: 400px;
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-home.hero-parallax {
        background-position: center center !important;
    }
}

/* ====================================
   21. FOOTER - DESIGN MODERNE
   ==================================== */
.footer-container {
    max-width: var(--site-width, 1400px);
    margin: 0 auto;
    padding: 0 60px;
}

/* Grille 3 colonnes (desktop) */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #4b5563;
    margin-bottom: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.check-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    color: #9ca3af;
    transition: color 0.3s;
}

.social-link:hover {
    color: #ffffff;
}

.footer-title {
    color: #ffffff;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-subtitle {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.footer-form {
    display: flex;
    gap: 8px;
}

.footer-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #4b5563;
    border-radius: 10px;
    background: #374151;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
    height: auto;
    background-image: none;
}

.footer-input:focus {
    border-color: var(--primary);
}

.footer-input::placeholder {
    color: #9ca3af;
}

.footer-button {
    padding: 12px 20px;
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-button:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.footer-message {
    font-size: 0.9rem;
    margin: 0 0 10px 0;
    padding: 8px 12px;
    border-radius: 6px;
}

.footer-message-success {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.footer-message-warning {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.footer-message-error {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.footer-admin-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-admin-link:hover {
    color: var(--primary);
}

/* ====================================
   22. FOOTER RESPONSIVE - 3 → 2 → 1 COLONNES
   ==================================== */

/* Tablettes : 2 colonnes */
@media (max-width: 1024px) {
    .footer-container {
        padding: 0 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    /* Première colonne (logo) prend toute la largeur en haut */
    .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

/* Mobiles : 1 colonne */
@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column:first-child {
        grid-column: auto;
    }
}