/**
 * Program Overview Component - Ultra Dark Mode Edition
 */

/* ============================================
   Section Background
   ============================================ */
.landing-section--overview {
    background: linear-gradient(135deg, rgba(12, 35, 64, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.landing-section--overview::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(12, 35, 64, 0.08) 0%, transparent 55%);
    opacity: 0.6;
    pointer-events: none;
}

/* Ultra Dark Mode Section */
[data-theme="dark"] .landing-section--overview {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(20, 30, 50, 0.9) 100%);
}

[data-theme="dark"] .landing-section--overview::before {
    background-image:
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 55%);
}

/* ============================================
   Grid Layout
   ============================================ */
.overview-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
}

@media (max-width: 900px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ============================================
   Content Area
   ============================================ */
.overview-content {
    text-align: left;
}

.overview-content .section-title {
    margin-top: 0.75rem;
}

.overview-highlights {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: #1a1d20;
    font-size: 1.05rem;
}

[data-theme="dark"] .highlight-item {
    color: #e2e8f0;
}

.highlight-item i {
    color: #d4af37;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ============================================
   Stats Panels Grid
   ============================================ */
.overview-panels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 480px) {
    .overview-panels {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Stat Cards
   ============================================ */
.overview-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.overview-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 0 20px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Card accent line */
.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0c2340, #d4af37);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.overview-card:hover::before {
    transform: scaleX(1);
}

/* ============================================
   Ultra Dark Mode - Cards
   ============================================ */
[data-theme="dark"] .overview-card {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .overview-card:hover {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.1);
}

/* ============================================
   Card Content
   ============================================ */
.overview-card__label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .overview-card__label {
    color: rgba(255, 255, 255, 0.5);
}

.overview-card__value {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #0c2340;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

[data-theme="dark"] .overview-card__value {
    color: #d4af37;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.overview-card__note {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

[data-theme="dark"] .overview-card__note {
    color: rgba(255, 255, 255, 0.6);
}
