/* ========================================
   VARIABLES & BASE
======================================== */

:root {
    --gold: #c9a84c;
    --gold-light: #e0c068;
}

/* ========================================
   BREADCRUMB MOBILE
======================================== */

.info-breadcrumb-mobile {
    display: none;
    background: #0d0d0d;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0.65rem 0;
    margin-top: 10px;
}

.info-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.info-breadcrumb a {
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-breadcrumb a:hover { color: #c9a84c; }

.info-breadcrumb span:last-child {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    font-weight: 500;
}

.info-breadcrumb-sep {
    color: rgba(255,255,255,0.15);
    font-size: 0.8rem;
}

.desktop-only { display: flex; }

@media (max-width: 767px) {
    .info-breadcrumb-mobile { display: block; }
    .desktop-only { display: none !important; }
}

/* ========================================
   HERO
======================================== */

.infod-hero {
    padding: 3rem 0;
    background: #111111;
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

.infod-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Image gauche */
.infod-hero-left { position: relative; }

.infod-hero-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid rgba(201,168,76,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

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

/* Infos droite */
.infod-hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.infod-hero-breadcrumb {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Titre */
.infod-hero-title-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.infod-hero-title-bar {
    width: 4px;
    background: linear-gradient(to bottom, #c9a84c, transparent);
    border-radius: 4px;
    flex-shrink: 0;
    align-self: stretch;
}

.infod-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

/* Meta */
.infod-hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.infod-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.infod-hero-meta-item i { color: #c9a84c; font-size: 0.72rem; }
.infod-hero-meta-sep { color: rgba(255,255,255,0.2); font-size: 0.7rem; }

/* Description */
.infod-hero-description {
    font-size: 0.9rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-style: italic;
    padding: 1rem 1.25rem;
    background: rgba(0,0,0,0.2);
    border-left: 3px solid rgba(201,168,76,0.4);
    border-radius: 0 8px 8px 0;
}

/* CTA adoption */
.infod-hero-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.infod-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #c9a84c, #e0c068);
    color: #000;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.infod-cta-btn-primary:hover {
    opacity: 0.9;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

.infod-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.infod-cta-btn-secondary:hover {
    border-color: rgba(201,168,76,0.35);
    color: #c9a84c;
    background: rgba(201,168,76,0.06);
}

/* Partage */
.infod-hero-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: auto;
}

.infod-hero-share-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.infod-share-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

.infod-share-btn:hover { transform: translateY(-2px); }
.infod-share-btn.facebook:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.infod-share-btn.twitter:hover { background: #000; border-color: #000; color: #fff; }
.infod-share-btn.whatsapp:hover { background: #25d366; border-color: #25d366; color: #fff; }

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1199px) {
    .infod-hero-grid { gap: 2.5rem; }
    .infod-hero-title { font-size: 1.8rem; }
}

@media (max-width: 991px) {
    .infod-hero { padding: 2rem 0; }
    .infod-hero-grid { gap: 2rem; }
    .infod-hero-title { font-size: 1.6rem; }
    .info-breadcrumb a {font-size: 0.78rem;}
    .info-breadcrumb span:last-child {font-size: 0.78rem;}
}

@media (max-width: 767px) {
    .infod-hero { padding: 1.5rem 0; }
    .infod-hero-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .infod-hero-image { aspect-ratio: 16 / 9; }
    .infod-hero-title { font-size: 1.5rem; }
    .infod-hero-right { gap: 1.25rem; }
    .info-breadcrumb a {font-size: 0.75rem;}
    .info-breadcrumb span:last-child {font-size: 0.75rem;}
}

@media (max-width: 575px) {
    .infod-hero { padding: 1.25rem 0; }
    .infod-hero-title { font-size: 1.3rem; }
    .infod-hero-title-block { gap: 0.75rem; }
    .infod-hero-meta { gap: 0.35rem; }
    .infod-hero-meta-item { font-size: 0.7rem; }
    .infod-hero-description { font-size: 0.82rem; padding: 0.85rem 1rem; }
    .infod-cta-btn-primary,
    .infod-cta-btn-secondary { width: 100%; justify-content: center; }
    .info-breadcrumb a {font-size: 0.7rem;}
    .info-breadcrumb span:last-child {font-size: 0.7rem;}
}

/* ========================================
   SECTION CONTENU
======================================== */

.infod-content-section {
    padding: 4rem 0;
    background: #0d0d0d;
}

.infod-content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

/* ========================================
   COLONNE PRINCIPALE
======================================== */

.infod-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Paragraphes */
.infod-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.infod-paragraph {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.infod-paragraph-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    position: relative;
}

.infod-paragraph-title::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #c9a84c;
    border-radius: 2px;
}

.infod-paragraph-content {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    line-height: 1.9;
    white-space: pre-line;
}

.infod-paragraph-content p { margin-bottom: 1rem; }
.infod-paragraph-content p:last-child { margin-bottom: 0; }
.infod-paragraph-content strong { color: #ffffff; font-weight: 700; }
.infod-paragraph-content em { color: rgba(255,255,255,0.8); }
.infod-paragraph-content a { color: #c9a84c; text-decoration: underline; }
.infod-paragraph-content a:hover { color: #e0c068; }
.infod-paragraph-content ul, .infod-paragraph-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.infod-paragraph-content li { margin-bottom: 0.5rem; }
.infod-paragraph-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

/* CTA Adoption */
.infod-adopt-cta {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #111111;
    border: 1px solid rgba(201,168,76,0.2);
    border-top: 3px solid #c9a84c;
    border-radius: 14px;
}

.infod-adopt-cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.infod-adopt-cta-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.infod-adopt-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.infod-adopt-cta-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin: 0;
}

.infod-adopt-cta-btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.25rem;
}

/* ========================================
   SIDEBAR
======================================== */

.infod-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 90px;
}

.infod-sidebar-widget {
    background: #111111;
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.infod-sidebar-widget-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.infod-sidebar-bar {
    width: 4px;
    height: 22px;
    background: linear-gradient(to bottom, #c9a84c, transparent);
    border-radius: 4px;
    flex-shrink: 0;
}

.infod-sidebar-widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* Liens sidebar */
.infod-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.infod-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.85rem;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.infod-sidebar-link:hover {
    background: rgba(201,168,76,0.08);
    border-color: rgba(201,168,76,0.25);
    transform: translateX(4px);
}

.infod-sidebar-link-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

.infod-sidebar-link-left i { color: #c9a84c; font-size: 0.75rem; }
.infod-sidebar-link:hover .infod-sidebar-link-left { color: #c9a84c; }

.infod-sidebar-link > .fa-chevron-right {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.2);
    transition: color 0.25s ease;
}

.infod-sidebar-link:hover > .fa-chevron-right { color: #c9a84c; }

/* CTA Sidebar */
.infod-sidebar-cta {
    border: 1px solid rgba(201,168,76,0.2);
    border-top: 3px solid #c9a84c;
    text-align: center;
    align-items: center;
}

.infod-sidebar-cta-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-size: 1.2rem;
}

.infod-sidebar-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.infod-sidebar-cta-text {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin: 0;
}

.infod-sidebar-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #c9a84c, #e0c068);
    color: #000;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.infod-sidebar-cta-btn:hover {
    opacity: 0.9;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

.infod-sidebar-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1.25rem;
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.infod-sidebar-cta-btn-secondary:hover {
    border-color: rgba(201,168,76,0.35);
    color: #c9a84c;
    background: rgba(201,168,76,0.06);
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1199px) {
    .infod-content-grid { grid-template-columns: 1fr 300px; gap: 2.5rem; }
}

@media (max-width: 991px) {
    .infod-content-section { padding: 3rem 0; }
    .infod-content-grid { grid-template-columns: 1fr 280px; gap: 2rem; }
    .infod-sidebar { position: static; }
    .infod-paragraph-title { font-size: 1.3rem; }
}

@media (max-width: 767px) {
    .infod-content-section { padding: 2rem 0; }
    .infod-content-grid { grid-template-columns: 1fr; }
    .infod-sidebar { position: static; }
    .infod-main { gap: 2rem; }
    .infod-adopt-cta { flex-direction: column; gap: 1.25rem; padding: 1.5rem; }
}

@media (max-width: 575px) {
    .infod-content-section { padding: 1.5rem 0; }
    .infod-paragraph-title { font-size: 1.15rem; }
    .infod-paragraph-content { font-size: 0.85rem; }
    .infod-adopt-cta { padding: 1.25rem; }
    .infod-adopt-cta-btns { flex-direction: column; }
    .infod-cta-btn-primary,
    .infod-cta-btn-secondary { width: 100%; justify-content: center; }
}