/* Compact & Light Theme - Home Page Styling */

/* Hero Section - Compact */
.hero-section {
    background: #ffffff;
    padding: 50px 0;
    text-align: center;
    position: relative;
}

.page-title {
    font-size: 1.75rem;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    font-family: 'Georgia', 'Times New Roman', serif;
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.hero-description {
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 400;
    text-align: center;
    padding: 0 20px;
}

/* Project Statistics - Compact & Light */
.project-statistics {
    background: #f9fafb;
    padding: 45px 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    text-align: center;
}

.stat-item {
    background: #ffffff;
    padding: 24px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.12);
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--accent-color);
    font-family: 'Georgia', 'Times New Roman', serif;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--secondary-color);
    font-weight: 500;
    line-height: 1.3;
}

/* Responsive - Compact */
@media screen and (max-width: 1024px) {
    .hero-section {
        padding: 45px 0;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 0.92rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .stat-item {
        padding: 22px 12px;
    }

    .stat-number {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-section {
        padding: 35px 0;
    }

    .page-title {
        font-size: 1.4rem;
        letter-spacing: 1.5px;
        margin-bottom: 14px;
    }

    .hero-description {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .project-statistics {
        padding: 35px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-item {
        padding: 18px 10px;
    }

    .stat-number {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.3px;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        padding: 28px 0;
    }

    .page-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .project-statistics {
        padding: 28px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-item {
        padding: 16px 8px;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }
}
