/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    /* padding: 40px 0; */ /* Bu satırı kaldıralım veya yorum satırına alalım */
}

/* Arka Plan */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4ecfb 100%);
    z-index: -1;
    overflow: hidden;
}

/* SVG Pattern - Basit versiyon için */
.hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.7;
    background-size: 30px 30px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><circle cx="3" cy="3" r="1.5" fill="%234361ee" opacity="0.15"/></svg>');
}

/* Başlık Gradient */
.text-gradient {
    background: linear-gradient(90deg, #4361ee, #3a0ca3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Hero İçerik Animasyonu */
.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-section h1 {
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.15rem;
    font-weight: 400;
}

/* Özellik Listesi */
.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.feature-item {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    backdrop-filter: blur(5px);
}

/* Hero Görsel Container */
.hero-image-container {
    position: relative;
    padding: 20px;
}

/* Görselin arka planındaki blob efekti */
.blob-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(79, 107, 248, 0.15) 0%, rgba(79, 107, 248, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Ana Görsel */
.hero-image {
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.1));
    transition: all 0.3s ease;
    max-width: 90%;
    border-radius: 15px;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25),
                0 18px 36px -18px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.hero-image:hover {
    transform: translateY(-5px);
    transform: scale(1.02);
}

/* Yüzen Elementler */
.floating-element {
    position: absolute;
    border-radius: 10px;
    animation: floatElement 4s ease-in-out infinite alternate;
    z-index: 10;
}

.floating-element-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0.5s;
}

.floating-element-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: 1.5s;
}

/* Icon Box */
.icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Avatar Grup */
.avatar-group {
    display: flex;
}

.avatar-group .avatar {
    width: 35px;
    height: 35px;
    margin-left: -10px;
    border: 2px solid white;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-group .avatar:first-child {
    margin-left: 0;
}

/* Wave Divider - Kaldırıldı */
.wave-divider {
    display: none; /* Dalga efektini gizler */
}

/* Butonlar */
.hero-buttons .btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(90deg, #4361ee, #3a0ca3);
    border: none;
}

/* Sayfa boşluk düzenlemesi */
.py-3rem {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.hero-padding {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes floatElement {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
    /* .hero-section {
        padding-top: 40px; 
        padding-bottom: 40px;
    } */ /* Bu satırları kaldıralım veya yorum satırına alalım */
    
    .floating-element {
        display: none;
    }
    
    .hero-image-container {
        margin-bottom: 30px;
    }
}

@media (max-width: 991.98px) {
    .hero-padding {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .d-flex.flex-wrap {
        flex-direction: column;
        width: 100%;
    }
    
    .avatar-group {
        margin-bottom: 1rem;
    }
}