/* ==========================================================================
   STYLE "LUXE & PREMIUM" (Conforme au Brief PDF)
   ========================================================================== */

/* 1. IMPORT DES POLICES (Playfair Display & Poppins) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    /* PALETTE PDF */
    --vert-luxe: #0E4D36;
    /* Vert Majorelle Foncé */
    --terracotta: #B87333;
    /* Terracotta Marrakech */
    --or-premium: #C8A462;
    /* Or Premium */
    --brun-tadelakt: #8A4A31;
    /* Brun Tadelakt */
    --beige-riad: #E6D7C3;
    /* Beige Riad Clair (Fond site) */
    --beige-carte: #F4EEE5;
    /* Fond des cartes */

    --text-main: #0E4D36;
    /* Texte principal en vert foncé pour l'élégance */
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 2. RÈGLES GÉNÉRALES */
body {
    background-color: var(--beige-riad);
    /* Fond Beige Riad */
    font-family: 'Poppins', sans-serif;
    /* Paragraphes en Poppins */
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Titres en Playfair Display */
h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    color: var(--brun-tadelakt);
    /* Titres en Brun par défaut */
    text-transform: none;
    /* On enlève le tout majuscule pour plus de raffinement */
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ==========================================================================
   BOUTONS (CTA)
   ========================================================================== */
/* Bouton Principal (Or) */
.btn-primary {
    display: inline-block;
    background-color: var(--or-premium);
    color: white;
    padding: 15px 35px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 2px;
    border: 1px solid var(--or-premium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #b08d55;
    /* Or un peu plus foncé */
    transform: translateY(-2px);
}

/* Bouton Secondaire (Outline Vert) */
.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--vert-luxe);
    padding: 15px 35px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid var(--vert-luxe);
    /* Bordure verte */
    border-radius: 2px;
    cursor: pointer;
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: var(--vert-luxe);
    color: white;
}

/* Bouton Outline spécifique pour fond vert (Beige/Blanc) */
.btn-outline-light {
    display: inline-block;
    background-color: transparent;
    color: var(--beige-riad);
    padding: 15px 35px;
    border: 1px solid var(--beige-riad);
    border-radius: 2px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    margin-left: 15px;
}

.btn-outline-light:hover {
    background-color: var(--beige-riad);
    color: var(--vert-luxe);
}

/* ==========================================================================
   HERO SECTION (Accueil)
   ========================================================================== */
.hero {
    height: 90vh;
    /* Image : Villa/Riad luxe nuit + Filtre sombre */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/accueil3.webp') center/cover no-repeat fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    /* Collé à la navbar */
}

/* --- CORRECTION MOBILE (Désactive le parallaxe qui bug) --- */
@media (max-width: 768px) {
    .hero {
        /* On passe en 'scroll' normal au lieu de 'fixed' */
        background-attachment: scroll !important;
        background-position: center center;
        background-size: cover;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

/* Petit texte au-dessus : CAN 2025. MAROC (Terracotta) */
.hero-subtitle {
    color: var(--terracotta);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
}

/* Titre H1 (Blanc/Beige clair) */
.hero h1 {
    font-size: 4rem;
    color: #FDFBF7;
    margin-bottom: 25px;
    font-weight: 700;
    /* Playfair Display */
}

.hero p {
    font-size: 1.3rem;
    color: #F0F0F0;
    max-width: 700px;
    margin: 0 auto 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

/* ==========================================================================
   SECTION VALEURS ("Pourquoi nous faire confiance")
   ========================================================================== */
.values-section {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    padding: 0 5%;
    margin-bottom: 80px;
}

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

.value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 4px;
    border: 1px solid rgba(14, 77, 54, 0.1);
    /* Bordure fine verte très légère */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease;
}

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

/* Icônes en Or */
.value-icon {
    font-size: 2rem;
    color: var(--or-premium);
    margin-bottom: 10px;
}

.value-text h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--brun-tadelakt);
    font-family: 'Playfair Display', serif;
}

.value-text p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
}

/* ==========================================================================
   SECTIONS GÉNÉRALES
   ========================================================================== */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--brun-tadelakt);
    /* Brun */
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #666;
    /* Gris/Brun clair */
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   CARTE SERVICES (Nouveau Design Beige Clair)
   ========================================================================== */
.services-section {
    padding: 80px 5%;
}

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

.service-card {
    background-color: var(--beige-carte);
    /* #F4EEE5 */
    padding: 40px;
    border: 1px solid var(--or-premium);
    /* Bordure fine or */
    border-radius: 10px;
    /* Coins arrondis */
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

/* Hover Terracotta léger */
.service-card:hover {
    background-color: #F0E5D8;
    /* Légère teinte plus chaude */
    box-shadow: 0 15px 30px rgba(184, 115, 51, 0.15);
    /* Ombre douce terracotta */
    transform: translateY(-5px);
}

.icon-box {
    font-size: 2rem;
    color: var(--or-premium);
    /* Icône Or */
    margin-bottom: 20px;
}

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

/* Bouton dans la carte (Or) */
.btn-card {
    display: inline-block;
    color: var(--or-premium);
    font-weight: 600;
    margin-top: auto;
    /* Pousse le bouton en bas */
    align-self: center;
    border-bottom: 1px solid var(--or-premium);
    padding-bottom: 2px;
    padding-top: 10px;
}

/* ==========================================================================
   SECTION "À PROPOS" (About)
   ========================================================================== */
.about-section {
    padding: 50px 5% 100px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.section-label {
    color: var(--terracotta);
    /* Terracotta */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

/* ==========================================================================
   SECTION "PRÊT À ORGANISER" (Nouveau CTA Vert)
   ========================================================================== */
.cta-green-section {
    background-color: var(--vert-luxe);
    /* Fond Vert */
    padding: 80px 5%;
    text-align: center;
    color: white;
    margin-top: 40px;
    margin-bottom: -1px;
}

.cta-green-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-green-section p {
    color: #E0E0E0;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* ==========================================================================
   PAGE HEADERS (INTERNES)
   ========================================================================== */
.page-header {
    min-height: 400px;
    background: var(--or-premium);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    color: white;
    padding: 0 20px;
}

.page-header h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
}

.breadcrumb {
    font-size: 0.9rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb span {
    color: var(--or-premium);
    margin: 0 5px;
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-block {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-block.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .btn-outline,
    .btn-primary,
    .btn-outline-light {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .values-section {
        margin-top: -40px;
        padding: 0 20px;
    }

    .about-section {
        flex-direction: column;
        gap: 40px;
    }
}

/* ==========================================================================
   STYLES MANQUANTS : LISTINGS & FAQ
   (À ajouter à la fin de style.css)
   ========================================================================== */

/* --- GRILLE DES ITEMS (Voitures, Villas, Blog) --- */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* --- CARTE PRODUIT (Design Premium) --- */
.item-card {
    background-color: white;
    border: 1px solid rgba(14, 77, 54, 0.1);
    /* Bordure très légère vert luxe */
    border-radius: 4px;
    overflow: hidden;
    /* Pour couper l'image qui dépasse */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    /* Ombre douce */
}

/* Image */
.item-image {
    height: 240px;
    /* Hauteur fixe pour l'harmonie */
    width: 100%;
    overflow: hidden;
    position: relative;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.item-card:hover .item-image img {
    transform: scale(1.05);
    /* Zoom lent au survol */
}

/* Contenu Texte */
.item-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.item-category {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.item-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--brun-tadelakt);
    margin-bottom: 15px;
    line-height: 1.3;
}

.item-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Bouton aligné en bas (réutilise le style existant .btn-card ou .link-arrow) */
.item-content .btn-card,
.item-content .link-arrow {
    margin-top: auto;
    align-self: flex-start;
    color: var(--or-premium);
    font-weight: 600;
    border-bottom: 1px solid var(--or-premium);
    padding-bottom: 2px;
}

/* --- STYLE SPÉCIFIQUE FAQ (Page Voiture) --- */
/* Pour que le HTML actuel s'affiche joliment */
.content-section h4 {
    color: var(--brun-tadelakt);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
    margin-top: 0;
}

.content-section p {
    margin-bottom: 20px;
    color: var(--text-main);
}

/* ==========================================================================
   STYLE GÉNÉRIQUE : SECTIONS DE CONTENU
   (Manquant pour la FAQ et les pages internes)
   ========================================================================== */

.content-section {
    padding: 80px 5%;
    /* Espace confortable en haut, bas, gauche, droite */
    position: relative;
    background-color: transparent;
    /* On garde le fond beige du site */
}

/* Si on veut réduire l'espace sur mobile */
@media (max-width: 968px) {
    .content-section {
        padding: 50px 5%;
    }
}

/* ==========================================================================
   STYLE FAQ PREMIUM (ACCORDÉON RAFFINÉ)
   ========================================================================== */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Le bloc global (Fermé) */
.faq-item {
    background-color: var(--beige-carte);
    /* #F4EEE5 */
    border: 1px solid rgba(200, 164, 98, 0.3);
    /* Bordure Or fine */
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Le bouton (Question) */
.faq-question {
    width: 100%;
    text-align: left;
    padding: 25px 30px;
    /* Un peu plus d'espace */
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* Typo Question */
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--brun-tadelakt);
    font-weight: 600;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.4);
    /* Eclaircissement au survol */
}

/* L'icône (+ / -) */
.faq-icon {
    color: var(--or-premium);
    font-size: 1rem;
    transition: transform 0.4s ease;
    /* Rotation fluide */
}

/* La Réponse (Conteneur caché) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Animation très fluide */
    background-color: #FDFBF7;
    /* Beige très très clair (Luxe) */
}

/* Le Texte de la réponse (Intérieur design) */
.faq-answer p {
    margin: 0;
    padding: 25px 30px 35px 30px;
    /* Espace confortable */

    /* Typographie soignée */
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    /* Vert foncé très lisible */
    font-size: 0.95rem;
    line-height: 1.8;
    /* Aéré pour faire premium */

    /* Ligne de séparation élégante en haut de la réponse */
    border-top: 1px solid rgba(200, 164, 98, 0.15);

    /* Animation du texte lui-même */
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

/* --- ÉTAT ACTIF (QUAND OUVERT) --- */
.faq-item.active {
    border-color: var(--or-premium);
    /* La bordure extérieure devient plus dorée */
    box-shadow: 0 10px 25px rgba(14, 77, 54, 0.08);
    /* Ombre douce verte */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    /* Le + devient une croix */
}

.faq-item.active .faq-answer p {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   PAGE CONTACT (Réintégration & Adaptation Luxe)
========================================================================== */
.contact-hero {
    background: linear-gradient(rgba(230, 215, 195, 0.9), rgba(230, 215, 195, 0.6)), url('../images/hero-contact.webp') center/cover no-repeat fixed;
}

.blog-hero {
    background: linear-gradient(rgba(200, 164, 98, 0.4), rgba(200, 164, 98, 0.4)), url('../images/hero-blog.webp') center/cover no-repeat;
}

.voitures-hero {
    background: linear-gradient(rgba(200, 164, 98, 0.4), rgba(200, 164, 98, 0.4)), url('../images/hero-voitures.webp') center/cover no-repeat fixed;
}

.villas-hero {
    background: linear-gradient(rgba(200, 164, 98, 0.4), rgba(200, 164, 98, 0.4)), url('../images/hero-villas.webp') center/cover no-repeat fixed;
}

.conciergeries-hero {
    background: linear-gradient(rgba(200, 164, 98, 0.4), rgba(200, 164, 98, 0.4)), url('../images/hero-conciergeries.webp') center/cover no-repeat fixed;
}

.immo-hero {
    background: linear-gradient(rgba(200, 164, 98, 0.4), rgba(200, 164, 98, 0.4)), url('../images/hero-immo.webp') center/cover no-repeat fixed;
}

@media (max-width: 768px) {

    .contact-hero,
    .blog-hero,
    .voitures-hero,
    .villas-hero,
    .conciergeries-hero,
    .immo-hero {
        /* On passe en 'scroll' normal au lieu de 'fixed' */
        background-attachment: scroll !important;
        background-position: center center;
        background-size: cover;
    }
}

/* Conteneur principal */
.contact-section {
    padding: 80px 5%;
    background-color: var(--beige-riad);
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
    /* Pour passer au-dessus d'éventuels éléments */
}

/* La Carte Unifiée (Info + Formulaire) */
.contact-wrapper {
    display: flex;
    max-width: 1100px;
    width: 100%;
    background: white;
    box-shadow: 0 20px 50px rgba(14, 77, 54, 0.15);
    /* Ombre verte profonde */
    border-radius: 4px;
    overflow: hidden;
}

/* --- COLONNE GAUCHE (INFOS) --- */
.contact-info-side {
    flex: 1;
    background-color: var(--vert-luxe);
    /* Vert Majorelle Foncé */
    color: white;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
}

.contact-info-side h3 {
    color: var(--or-premium);
    /* Titre en Or */
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info-side p {
    color: #E6D7C3;
    /* Beige clair */
    margin-bottom: 40px;
    font-size: 1rem;
}

/* Liens de contact (Téléphone, Email...) */
.info-details a.info-row-link {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.info-details a:hover {
    transform: translateX(10px);
}

.info-icon-circle {
    width: 45px;
    height: 45px;
    border: 1px solid var(--or-premium);
    /* Cercle Or */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--or-premium);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-text-block h4 {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.info-text-block p {
    color: #E6D7C3;
    font-size: 0.95rem;
    margin: 0;
}

/* Bouton WhatsApp spécifique (Outline Blanc sur fond vert) */
.btn-whatsapp-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: 0.3s;
    margin-bottom: 30px;
}

.btn-whatsapp-contact:hover {
    background: white;
    color: var(--vert-luxe);
}


/* --- COLONNE DROITE (FORMULAIRE) --- */
.contact-form-side {
    flex: 1.5;
    background-color: white;
    padding: 60px 50px;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--brun-tadelakt);
    margin-bottom: 30px;
}

/* Champs de saisie (Inputs) */
.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-label-styled {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #333;
    border: none;
    border-bottom: 1px solid #E6D7C3;
    /* Ligne beige */
    background: transparent;
    transition: 0.3s;
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--or-premium);
    /* Ligne devient Or au clic */
}

/* Bouton Envoyer (Or) */
.btn-submit {
    background-color: var(--or-premium);
    color: white;
    border: none;
    padding: 15px 40px;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #b08d55;
    transform: translateY(-2px);
}

/* Responsive Mobile */
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info-side,
    .contact-form-side {
        padding: 40px 20px;
    }
}

/* ==========================================================================
   STYLE MANQUANT : PAGES ARTICLES DE BLOG
   (À ajouter à la fin de style.css)
   ========================================================================== */

/* Structure globale de la page article */
.blog-layout {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 5%;
    animation: fadeInUp 1s ease-out;
}

.blog-content {
    flex: 2;
}

.blog-sidebar {
    flex: 1;
}

/* Typographie du texte de l'article */
.blog-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-main);
    /* Vert foncé / Noir */
    line-height: 1.8;
    /* Lecture confortable */
    text-align: justify;
}

/* Titres H3 dans l'article */
.blog-text h3 {
    font-family: 'Playfair Display', serif;
    color: var(--brun-tadelakt);
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--beige-riad);
    padding-bottom: 10px;
}

/* Paragraphes */
.blog-text p {
    margin-bottom: 20px;
}

/* Listes à puces */
.blog-text ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.blog-text li {
    list-style: disc;
    /* Puces rondes classiques */
    margin-bottom: 10px;
    color: var(--text-main);
}

/* Citations (Blockquote) */
blockquote {
    background-color: var(--beige-carte);
    border-left: 4px solid var(--terracotta);
    padding: 25px;
    margin: 30px 0;
    font-style: italic;
    color: var(--vert-luxe);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    border-radius: 0 4px 4px 0;
}

/* --- SIDEBAR (Barre latérale droite) --- */
.sidebar-widget {
    background-color: var(--beige-carte);
    /* Fond beige clair */
    border: 1px solid var(--or-premium);
    /* Bordure Or */
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    color: var(--brun-tadelakt);
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(200, 164, 98, 0.3);
    padding-bottom: 10px;
}

.sidebar-link {
    display: block;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(200, 164, 98, 0.3);
    color: var(--text-main);
    font-size: 0.95rem;
    transition: 0.3s;
}

.sidebar-link:hover {
    color: var(--or-premium);
    padding-left: 5px;
}

/* Responsive : Colonne unique sur mobile */
@media (max-width: 968px) {
    .blog-layout {
        flex-direction: column;
    }
}

/* --- PREMIUM INSIGHT BLOCK --- */
.premium-insight-block {
    margin: 45px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
    padding: 35px;
    border: 1px solid rgba(200, 164, 98, 0.2);
    border-left: 5px solid var(--or-premium);
    border-radius: 4px;
    position: relative;
    box-shadow: 0 10px 30px rgba(14, 77, 54, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    /* Assure l'alignement à gauche */
}

.premium-insight-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(14, 77, 54, 0.1);
}

.premium-insight-block::before {
    content: '\f0eb';
    /* Font Awesome lightbulb */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -18px;
    right: 25px;
    background: var(--or-premium);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(200, 164, 98, 0.4);
}

.insight-title {
    color: var(--brun-tadelakt);
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    display: block;
    font-weight: 600;
}

.insight-content {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 0 !important;
}