/* ============================================
   AIBE Prep - Home Page Specific Styles
   Location: assets/css/home.css
   ============================================
   Styles ONLY used on the home page
   Follows the principle: page-specific CSS
   ============================================ */

/* ============================================
   CRITICAL STATS ALERT BOX (Home Only)
   ============================================ */
.stats-alert {
    background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2);
}

.stats-alert h5 {
    color: #d68910;
    font-weight: 700;
    font-size: 1.25rem;
}

.stat-highlight {
    background: var(--color-background-white);
    padding: 1rem;
    border-radius: 8px;
    margin: 0.5rem 0;
    border-left: 3px solid var(--color-danger);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stat-highlight strong {
    color: var(--color-danger);
    font-size: 1.3rem;
    font-weight: 700;
}

.stat-highlight i {
    display: block;
    margin-bottom: 0.5rem;
}

/* Smart Choice message */
.stats-alert p {
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ============================================
   HOME HERO SECTION CUSTOMIZATION
   ============================================ */
.hero-section {
    background: var(--gradient-primary);
    color: var(--color-text-light);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 10l5 15h16l-13 9 5 15-13-9-13 9 5-15-13-9h16z" fill="rgba(212,175,55,0.1)"/></svg>');
    opacity: 0.1;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.hero-section .btn {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    padding: 0.875rem 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* ============================================
   FEATURES SECTION (Home Specific)
   ============================================ */
section.py-5.bg-light {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%) !important;
}

/* Feature cards on home have special styling */
.feature-card {
    padding: 2rem;
    border-radius: 15px;
    background: var(--color-background-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--color-secondary);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h5 {
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ============================================
   CALL TO ACTION SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn {
    font-size: 1.15rem;
    padding: 1rem 3rem;
}

/* ============================================
   RESPONSIVE DESIGN (Home Specific)
   ============================================ */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .hero-section .btn {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        display: block;
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    .hero-section .btn.me-3 {
        margin-right: 0 !important;
    }
    
    .stats-alert {
        padding: 1rem;
    }
    
    .stats-alert h5 {
        font-size: 1rem;
    }
    
    .stat-highlight {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
    
    .stat-highlight strong {
        font-size: 1.1rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section .lead {
        font-size: 0.95rem;
    }
    
    .stats-alert p {
        font-size: 0.9rem;
    }
    
    .stat-highlight strong {
        font-size: 1rem;
    }
    
    .feature-card h5 {
        font-size: 1.1rem;
    }
}

/* ============================================
   TESTIMONIALS SECTION (If Added Later)
   ============================================ */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin: 1rem 0;
}

.testimonial-card .quote {
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--color-primary);
}

/* ============================================
   STATISTICS COUNTER (If Added Later)
   ============================================ */
.stats-counter {
    text-align: center;
    padding: 3rem 0;
    background: var(--color-bg-light);
}

.counter-item {
    padding: 1rem;
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
}

.counter-label {
    font-size: 1rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}