/* Home Page Specific Styles */

/* Hero Section */
.hero {
    background: none;
    color: white;
    text-align: center;
    padding: 120px 20px 80px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

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

.hero-flyer {
    margin-top: -2.5rem;
    text-align: center;
}

.hero-flyer img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c3e50;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-content p {
    font-size: 1.2rem;
    color: #2c3e50;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Company Section */
.company-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.company-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.company-logo .company-icon {
    font-size: 3rem;
    margin-right: 1rem;
}

.company-logo h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin: 0;
}

.company-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

/* ChatGPT Section */
.chatgpt-section {
    background: white;
    padding: 80px 0;
}

.chatgpt-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.chatgpt-intro h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.chatgpt-intro p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Application Section */
.application-section {
    background: #f8f9fa;
}

.application-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.application-content h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.application-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Home Page Responsive */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-background img {
        opacity: 0.9;
    }
    
    .hero-flyer img {
        max-width: 90%;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .company-logo h3 {
        font-size: 2rem;
    }
    
    .company-logo .company-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 15px 60px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}
