/* Index CSS - Ana Sayfa Stilleri */

/* Hero Section */
.hero-section {
    color: white;
    padding: 40px 40px 60px 40px;
    text-align: center;
    margin: 0 -20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1em;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    margin: 0 -20px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3em;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    color: #666;
    font-weight: 500;
}

/* Recent Projects */
.recent-projects {
    padding: 20px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 300;
}

.section-header p {
    font-size: 1.1em;
    color: white;
    margin: 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.project-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-icon {
    font-size: 4em;
    margin-bottom: 20px;
    display: block;
}

.project-card h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.project-card p {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 25px;
}

.project-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.project-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 500;
}

.project-card.coming-soon {
    opacity: 0.8;
    border: 2px dashed #dee2e6;
}

.coming-soon-text {
    display: block;
    color: #6c757d;
    font-size: 0.9em;
    font-weight: 500;
    margin-top: 10px;
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 20px;
    border: 1px solid #dee2e6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2em;
    }

    .hero-subtitle {
        font-size: 1.2em;
    }

    .hero-section {
        padding: 25px 20px 40px 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .stats-container {
        padding: 0 20px;
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .recent-projects {
        padding: 20px 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .project-card {
        padding: 20px;
    }

    .project-icon {
        font-size: 3em;
    }

    .section-header h2 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8em;
    }

    .hero-subtitle {
        font-size: 1em;
    }

    .stat-number {
        font-size: 2em;
    }

    .project-card h3 {
        font-size: 1.2em;
    }
}