/* ========================================
   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
======================================== */

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

.info-hero-breadcrumb {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.info-hero-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-hero-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    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.6rem;
    flex-shrink: 0;
}

.info-hero-text {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.info-hero-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #c9a84c;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

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

.info-hero-subtitle {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
    line-height: 1.6;
    max-width: 600px;
}

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

@media (max-width: 991px) {
    .info-hero { padding: 2rem 0 1.75rem; }
    .info-hero-title { font-size: 1.9rem; }
    .info-hero-icon { width: 56px; height: 56px; font-size: 1.4rem; }
    .info-breadcrumb a {font-size: 0.78rem;}
    .info-breadcrumb span:last-child {font-size: 0.78rem;}
}

@media (max-width: 767px) {
    .info-hero { padding: 1.5rem 0; }
    .info-hero-content { gap: 1.1rem; }
    .info-hero-title { font-size: 1.6rem; }
    .info-hero-icon { width: 50px; height: 50px; font-size: 1.2rem; border-radius: 12px; }
    .info-hero-subtitle { font-size: 0.82rem; }
    .info-breadcrumb a {font-size: 0.75rem;}
    .info-breadcrumb span:last-child {font-size: 0.75rem;}
}

@media (max-width: 575px) {
    .info-hero { padding: 1.25rem 0; }
    .info-hero-title { font-size: 1.4rem; }
    .info-hero-icon { width: 44px; height: 44px; font-size: 1.1rem; border-radius: 10px; }
    .info-breadcrumb a {font-size: 0.7rem;}
    .info-breadcrumb span:last-child {font-size: 0.7rem;}
}

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

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

/* ========================================
   GRILLE
======================================== */

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

/* ========================================
   CARD
======================================== */

.info-card {
    background: #111111;
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201,168,76,0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* Image */
.info-card-image-wrap {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    flex-shrink: 0;
}

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

.info-card:hover .info-card-image-wrap img { transform: scale(1.06); }

.info-card-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover .info-card-image-overlay { opacity: 1; }

.info-card-read-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #c9a84c;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transform: translateY(8px);
    transition: transform 0.3s ease;
}

.info-card:hover .info-card-read-btn { transform: translateY(0); }

/* Body */
.info-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
}

/* Meta */
.info-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.info-card-meta-item i { color: #c9a84c; font-size: 0.65rem; }

/* Titre */
.info-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.info-card-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Description */
.info-card-description {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* Lien */
.info-card-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: #c9a84c;
    text-decoration: none;
    gap: 0.35rem;
    transition: gap 0.25s ease;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.info-card-link:hover { color: #e0c068; gap: 0.6rem; }

/* ========================================
   ÉTAT VIDE
======================================== */

.info-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 5rem 0;
    text-align: center;
}

.info-empty-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(201,168,76,0.07);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-size: 1.8rem;
}

.info-empty-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.info-empty-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.info-empty-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    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;
}

.info-empty-btn:hover {
    opacity: 0.9;
    color: #000;
    transform: translateY(-2px);
}

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

@media (max-width: 1199px) {
    .info-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

@media (max-width: 991px) {
    .info-content-section { padding: 3rem 0; }
    .info-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

@media (max-width: 767px) {
    .info-content-section { padding: 2rem 0; }
    .info-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .info-card-title { font-size: 0.95rem; }
    .info-card-description { font-size: 0.78rem; }
}

@media (max-width: 575px) {
    .info-content-section { padding: 1.5rem 0; }
    .info-grid { grid-template-columns: 1fr; }
    .info-card-body { padding: 1rem; }
}

/* ========================================
   SECTION CTA
======================================== */

.info-cta-section {
    padding: 0 0 4rem;
    background: #0d0d0d;
}

.info-cta-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: #111111;
    border: 1px solid rgba(201,168,76,0.15);
    border-top: 3px solid #c9a84c;
    border-radius: 14px;
}

.info-cta-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    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.5rem;
    flex-shrink: 0;
}

.info-cta-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

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

.info-cta-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin: 0;
}

.info-cta-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.info-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 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;
}

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

.info-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 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;
}

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

.info-cta-btn-legal {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    background: transparent;
    color: rgba(255,255,255,0.35);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-cta-btn-legal:hover {
    border-color: rgba(201,168,76,0.2);
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.03);
}

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

@media (max-width: 991px) {
    .info-cta-card { gap: 1.5rem; padding: 2rem; }
    .info-cta-title { font-size: 1.15rem; }
}

@media (max-width: 767px) {
    .info-cta-section { padding: 0 0 2rem; }
    .info-cta-card { flex-direction: column; gap: 1.25rem; padding: 1.5rem; }
    .info-cta-icon { width: 50px; height: 50px; font-size: 1.3rem; border-radius: 12px; }
}

@media (max-width: 575px) {
    .info-cta-card { padding: 1.25rem; }
    .info-cta-btn-primary,
    .info-cta-btn-secondary,
    .info-cta-btn-legal { width: 100%; justify-content: center; }
}