/* ==========================================================================
   Présidence RDC - Custom Styles
   ========================================================================== */

/* ---------- Typography ---------- */
body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
}

/* ---------- Brand Colors ---------- */
.bg-gold { background-color: #C5A059; }
.text-gold { color: #C5A059; }
.border-gold { border-color: #C5A059; }

/* ---------- Glass Effects ---------- */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-nav {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

/* ---------- Gradients ---------- */
.hero-gradient {
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.8) 70%, rgba(15, 23, 42, 1) 100%);
}

/* ---------- Animations ---------- */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    display: flex;
    width: fit-content;
    animation: marquee 30s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.animate-gradient {
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

/* ---------- Article Content ---------- */
.article-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #cbd5e1;
    font-family: 'Inter', sans-serif;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.article-content h3 {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content blockquote {
    border-left: 4px solid #C5A059;
    padding-left: 1.5rem;
    font-style: italic;
    font-size: 1.25rem;
    color: #e2e8f0;
    margin: 2.5rem 0;
}

.article-content img {
    border-radius: 1rem;
    margin: 2rem 0;
}

/* ---------- Sidebar ---------- */
.sticky-sidebar {
    position: sticky;
    top: 100px;
}

/* ---------- Utility ---------- */
.card-shadow {
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
}

.bg-slate-soft {
    background-color: #F8FAFC;
}

[x-cloak] {
    display: none !important;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tab-active {
    color: #C5A059;
    border-bottom: 2px solid #C5A059;
}

/* ---------- WordPress Alignments ---------- */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.alignwide {
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.alignfull {
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

/* ---------- WordPress Navigation ---------- */
.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
    padding: 0.5rem 1rem;
}

/* ---------- Elementor Overrides ---------- */
.elementor-page .entry-content {
    width: 100%;
}

.elementor-page .site-content {
    padding: 0;
}

/* Ensure Elementor sections use full width */
body.elementor-default .site-main,
body.elementor-template-full-width .site-main {
    max-width: 100%;
    padding: 0;
}
