/* Home Page Styles - Technopolis Theme */

.hero-section {
    background: linear-gradient(135deg, var(--red) 0%, var(--brown) 100%);
    color: white;
    padding: 80px 0;
    margin: -24px -16px 40px -16px;
    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 xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta {
    display: inline-flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.stat-card {
    background: white;
    border: 1px solid var(--lightGray);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--red);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--textGray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-actions {
    background: white;
    border: 1px solid var(--lightGray);
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
}

.quick-actions-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--textColor);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--grayBg);
    border: 1px solid var(--lightGray);
    border-radius: 12px;
    text-decoration: none;
    color: var(--textColor);
    transition: all 0.3s ease;
    font-weight: 500;
}

.action-btn:hover {
    background: var(--lightRose);
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
}

.action-btn.primary {
    background: var(--red);
    color: white;
    border-color: var(--red);
}

.action-btn.primary:hover {
    background: var(--brown);
    color: white;
}

.features-section {
    margin: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    border: 1px solid var(--lightGray);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--red);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--lightRose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--red);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--textColor);
    margin-bottom: 15px;
}

.feature-description {
    color: var(--textGray);
    line-height: 1.6;
}

.welcome-section {
    background: var(--grayBg);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 40px 0;
}

.welcome-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--textColor);
    margin-bottom: 15px;
}

.welcome-text {
    font-size: 1.1rem;
    color: var(--textGray);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
}
