/* Statistics Module Styles */
/* CSS Variables are loaded dynamically from database via ViewComponent */

.statistics-module {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.statistics-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.statistics-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.statistics-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.statistics-header {
    margin-bottom: 3rem;
}

.statistics-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary, #333);
    margin: 0 0 1rem 0;
}

.statistics-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary, #666);
    margin: 0;
}

.statistics-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.statistics-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    background: var(--bg-secondary, #f8f9fa);
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    min-width: 200px;
    flex: 0 0 auto;
}

.statistics-item:hover {
    transform: translateY(-5px);
    background: var(--bg-primary, #ffffff);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color, #007bff);
}

.statistics-icon {
    font-size: 2.5rem;
    color: var(--primary-color, #007bff);
    margin-bottom: 1rem;
}

.statistics-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary, #333);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.statistics-label {
    font-size: 1rem;
    color: var(--text-secondary, #666);
    text-align: center;
    font-weight: 500;
}

/* Responsive tasarım */
@media (max-width: 1200px) {
    .statistics-grid {
        gap: 1.5rem;
    }

    .statistics-title {
        font-size: 2rem;
    }

    .statistics-number {
        font-size: 3rem;
    }

    .statistics-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .statistics-container {
        padding: 3rem 1rem;
    }

    .statistics-grid {
        gap: 1rem;
    }

    .statistics-item {
        min-width: 180px;
    }

    .statistics-title {
        font-size: 1.8rem;
    }

    .statistics-subtitle {
        font-size: 1rem;
    }

    .statistics-number {
        font-size: 2.5rem;
    }

    .statistics-icon {
        font-size: 2rem;
    }

    .statistics-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .statistics-grid {
        gap: 0.8rem;
    }

    .statistics-item {
        min-width: 150px;
    }

    .statistics-item {
        padding: 1.5rem 0.8rem;
    }

    .statistics-title {
        font-size: 1.5rem;
    }

    .statistics-number {
        font-size: 2rem;
    }

    .statistics-icon {
        font-size: 1.8rem;
    }
}