/**
 * Ana sayfa düzeltme CSS dosyası
 * Blog özelliği eklendikten sonra oluşan stil sorunlarını düzeltir
 */

/* Hero Section Düzeltmeleri */
.home .hero-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%) !important;
    padding: 60px 40px !important;
    border-radius: 20px !important;
    margin-bottom: 40px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.home .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe);
    background-size: 300% 100%;
    animation: gradientFlow 5s ease-in-out infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.home .hero-content {
    max-width: 800px !important;
    margin: 0 auto 40px auto !important;
    position: relative !important;
    z-index: 2 !important;
}

.home .hero-title {
    font-size: 2.8em !important;
    color: #2c3e50 !important;
    margin-bottom: 15px !important;
    font-weight: 700 !important;
}

.home .hero-subtitle {
    color: #4a5568 !important;
    font-size: 1.4em !important;
    font-weight: 500 !important;
    margin-bottom: 30px !important;
}

.home .hero-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 20px !important;
    margin-top: 30px !important;
    flex-wrap: wrap !important;
}

.home .hero-btn {
    display: inline-flex !important;
    align-items: center !important;
    padding: 15px 30px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 1.1em !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

.home .hero-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
}

.home .hero-btn.secondary {
    background: white !important;
    color: #2c3e50 !important;
    border: 2px solid #e9ecef !important;
}

.home .hero-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.home .hero-features {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 25px !important;
    margin-top: 50px !important;
    position: relative !important;
    z-index: 2 !important;
}

.home .feature-item {
    background: white !important;
    border-radius: 15px !important;
    padding: 25px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
    border: 1px solid #e9ecef !important;
    text-align: center !important;
}

.home .feature-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.home .feature-icon {
    font-size: 2.5em !important;
    margin-bottom: 15px !important;
    display: inline-block !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    width: 70px !important;
    height: 70px !important;
    line-height: 70px !important;
    border-radius: 50% !important;
    text-align: center !important;
}

.home .feature-item h3 {
    font-size: 1.3em !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    color: #2c3e50 !important;
}

.home .feature-item p {
    font-size: 0.95em !important;
    color: #555 !important;
    line-height: 1.5 !important;
}

/* Section Başlıkları */
.home .section-title {
    font-size: 2.2em !important;
    font-weight: 700 !important;
    margin: 60px 0 30px !important;
    color: #2c3e50 !important;
    text-align: center !important;
    position: relative !important;
    padding-bottom: 15px !important;
}

.home .section-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    width: 100px !important;
    height: 4px !important;
    background: linear-gradient(90deg, #667eea, #764ba2) !important;
    transform: translateX(-50%) !important;
    border-radius: 2px !important;
}

/* Kamp Kartları */
.home .camp-card {
    background: white !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    position: relative !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.home .camp-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15) !important;
    border-color: rgba(102, 126, 234, 0.2) !important;
}

.home .camp-card-content {
    padding: 25px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.home .camp-card-image {
    position: relative !important;
    height: 220px !important;
    overflow: hidden !important;
}

.home .camp-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s ease !important;
}

.home .camp-card-footer {
    text-align: center !important;
    margin-top: auto !important;
    padding-top: 20px !important;
}

.home .view-details-btn {
    display: inline-block !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.95em !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
}

.home .view-details-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
}

/* Özel Bölümler */
.home .featured-camps-section,
.home .satisfaction-camps-section {
    margin: 80px 0 !important;
    padding: 40px !important;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%) !important;
    border-radius: 20px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    position: relative !important;
}

/* Camp Kartları Grid */
.home .camp-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 30px !important;
    margin: 30px 0 !important;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .home .hero-section {
        padding: 30px 20px !important;
    }
    
    .home .hero-title {
        font-size: 2em !important;
    }
    
    .home .hero-subtitle {
        font-size: 1.1em !important;
    }
    
    .home .hero-features {
        grid-template-columns: 1fr !important;
    }
    
    .home .hero-btn {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .home .hero-buttons {
        flex-direction: column !important;
    }
    
    .home .featured-camps-section,
    .home .satisfaction-camps-section {
        padding: 20px !important;
    }
}

