/* ============================================================
   Landing Page — Main Site (Light Theme)
   ============================================================ */

:root {
    --olive: #556b2f;
    --olive-light: #6b8e23;
    --beige: #f9f6f0;
    --beige-dark: #e8e4d9;
    --text-dark: #2c3e20;
}

body {
    background-color: var(--beige);
    color: var(--text-dark);
}

/* Override global dark styles */
.text-gold {
    color: var(--olive) !important;
}
.border-gold {
    border-color: var(--olive) !important;
}
.bg-gold {
    background-color: var(--olive) !important;
}
.section-title-line::before,
.section-title-line::after {
    background: linear-gradient(to right, transparent, var(--olive), transparent) !important;
}

/* Navbar */
.navbar .text-light {
    color: var(--text-dark) !important;
}
.navbar .text-secondary {
    color: #555 !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(249, 246, 240, 0.85), rgba(249, 246, 240, 0.92)),
        url('../images/miguel_arroyo_c.jpg') no-repeat center center !important;
    background-size: cover !important;
}
.hero h1, .hero h3 {
    color: var(--text-dark);
}

/* Buttons */
.btn-cta {
    background-color: var(--olive);
    color: var(--beige);
    border: 1px solid var(--olive);
}
.btn-cta:hover {
    background-color: var(--beige);
    color: var(--olive);
    border-color: var(--olive);
}

/* Topics Pill */
.topic-pill {
    background: rgba(85, 107, 47, 0.1);
    border: 1px solid var(--olive);
    color: var(--text-dark);
}
.topic-pill:hover {
    background: var(--olive);
    color: var(--beige);
}

/* Bio Section */
.bio-section {
    background: linear-gradient(180deg, var(--beige) 0%, var(--beige-dark) 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(85,107,47,0.2);
}
.bio-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}
.justificacion-block {
    background: rgba(255, 255, 255, 0.5) !important;
    border-left: 4px solid var(--olive) !important;
}

/* Cursos Section */
#cursos {
    background-color: var(--beige) !important;
    border-top: 1px solid rgba(85,107,47,0.2);
}
.course-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(85,107,47,0.3);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: var(--text-dark);
}
.course-card:hover {
    background: rgba(85,107,47,0.05);
    border-color: var(--olive);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(85,107,47,0.15);
    color: var(--text-dark);
}
.course-card .text-secondary {
    color: #444 !important;
}

/* Footer */
footer {
    background-color: var(--beige-dark) !important;
    color: var(--text-dark);
    border-top: 1px solid rgba(85,107,47,0.2);
}
footer .text-secondary {
    color: #555 !important;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--olive);
    color: var(--beige);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 15px rgba(85, 107, 47, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid var(--beige);
}
.whatsapp-float:hover {
    background-color: var(--beige);
    color: var(--olive);
    border-color: var(--olive);
    transform: translateY(-5px);
    box-shadow: 0px 6px 20px rgba(85, 107, 47, 0.6);
}
