/* Hero Section Düzeltmeleri - assets/hero-fix.css */

/* Ana hero container */
.homepage-slides {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Alternatif gradient seçenekleri */
.hero-gradient-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.hero-gradient-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.hero-gradient-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.hero-gradient-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }

/* Animasyonlu arka plan pattern */
.homepage-slides::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Hero content */
.single-slide-item {
    width: 100%;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.hero-area-content {
    text-align: center;
    position: relative;
    z-index: 3;
}

/* Başlık stilleri */
.hero-area-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.2;
    animation: slideInUp 1s ease-out;
}

.hero-area-content h2 {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-area-content h2 b {
    font-weight: 700;
    color: #ffffff;
    background: rgba(255,255,255,0.1);
    padding: 5px 15px;
    border-radius: 25px;
    display: inline-block;
    margin-top: 10px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-area-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    animation: slideInUp 1s ease-out 0.4s both;
}

/* Ana buton */
.main-btn {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    animation: slideInUp 1s ease-out 0.6s both;
}

.main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.main-btn:hover::before {
    left: 100%;
}

.main-btn:hover {
    background: linear-gradient(45deg, #218838, #1ea574);
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
}

.main-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

/* Animasyonlar */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .homepage-slides {
        min-height: 500px;
    }
    
    .single-slide-item {
        padding: 20px 0;
    }
    
    .hero-area-content h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-area-content h2 {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .hero-area-content p {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .main-btn {
        padding: 16px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-area-content h1 {
        font-size: 2rem;
    }
    
    .hero-area-content h2 {
        font-size: 1.2rem;
    }
    
    .hero-area-content h2 b {
        display: block;
        margin-top: 15px;
    }
    
    .main-btn {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
}