/* Main CSS file - Imports all component styles */
@import url('base.css');
@import url('header.css');
@import url('layout.css');
@import url('sidebar.css');
@import url('chart.css');
@import url('stats.css');
@import url('buttons.css');
@import url('forms.css');
@import url('score.css');
@import url('introduction.css');
@import url('responsive.css');



/* Company Introduction Section */
.company-intro-section {
    width: 100%;
    margin: 10px 0 0 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.company-intro-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.company-intro-text {
    margin-bottom: 25px;
}

.company-intro-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #495057;
    margin-bottom: 10px;
    text-align: justify;
}

.company-intro-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    margin-top: 15px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustments for company intro */
@media (max-width: 768px) {
    .company-intro-section {
        width: 95%;
        padding: 20px;
        margin: 15px auto 0;
    }

    .company-intro-title {
        font-size: 1.2rem;
    }

    .company-intro-text p {
        font-size: 0.9rem;
    }

    .company-intro-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-item {
        flex-direction: row;
        gap: 10px;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-height: 600px) {
    .company-intro-section {
        margin: 10px auto 0;
        padding: 15px;
    }

    .company-intro-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .company-intro-text p {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .company-intro-stats {
        padding: 15px;
        margin-top: 15px;
    }
}

/* 상단 정보 바 */
.stats-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Orbitron', monospace;
}

.stats-bar .stat {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    padding: 4px 0;
}