/* ===== HERO SECTION - TAM CSS KODU ===== */
/* TEMEL YAPILANDIRMA */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: rgba(0,0,0 0.5);
    overflow: hidden;
    padding: 0 20px;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(26, 37, 47, 0.8) 100%); */
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* İÇERİK ALANI */
.hero-content {
    flex: 1;
    color: #fff;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: #3498db;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

/* GÖRSEL ALANI */
.hero-image {
    flex: 1;
    animation: fadeIn 1s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(100px);
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    max-width: 300px; /* Maximum size for large screens */
    max-height: 300px; /* Maximum size for large screens */
    object-fit: cover; /* Ensures the image covers the area without distortion */
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    filter: brightness(0.95) contrast(1.05);
}
/* BUTONLAR - GELİŞMİŞ STİLLER */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transform-style: preserve-3d;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    transition: all 0.3s ease;
    z-index: -1;
}

/* PRİMARY BUTON */
.btn-primary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(52, 152, 219, 0.35);
}

.btn-primary:active {
    transform: translateY(1px) scale(0.98);
}

.btn-primary::after {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    opacity: 0;
}

.btn-primary:hover::after {
    opacity: 1;
}

/* SECONDARY BUTON */
.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.15);
    border-color: #3498db;
    color: #3498db;
    background: rgba(255, 255, 255, 0.05);
}

.btn-secondary:active {
    transform: translateY(1px);
}

/* BUTON İKONLARI */
.btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

/* ANİMASYONLAR */
@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE TASARIM */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        padding: 120px 0 60px;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        margin-bottom: 0;
    }
    
    .hero-title span {
        display: inline;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 80%;
        margin: 0 auto;
    }
    .hero-image img {
        width: 100%;
        max-width: 80%; /* Smaller size on small screens */
        height: auto; /* Smaller size on small screens */
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        padding: 12px 24px;
    }
    
    .hero-image {
        max-width: 100%;
    }
}

/* PERFORMANS İYİLEŞTİRMELERİ */
@media (prefers-reduced-motion: reduce) {
    .hero-content, 
    .hero-image, 
    .hero-buttons {
        animation: none !important;
        opacity: 1 !important;
    }
    
    .btn:hover {
        transform: none !important;
    }
}