/* Hero Section Genel Ayarlar */
.hero {
    width: 100%;
    min-height: 100vh;
    /* ekranı kapla */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d0d0d, #1a1a40, #004aad, #00c9a7);
    background-size: 300% 300%;
    animation: gradientBG 12s ease infinite;
    padding: 5rem 2rem;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    color: #fff;
}

/* Gradient animasyonu */
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* İç container */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    width: 100%;
}

/* Yazı kısmı */
.hero-text {
    text-align: left;
}

.hero-text-title img {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 12px rgba(0, 255, 200, 0.7));
}

.hero-text-paragraf {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
}

/* CTA Buton */
.hero-text .cta-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(45deg, #00c9a7, #0061ff);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.hero-text .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 193, 255, 0.4);
}

/* Görsel kısmı */
.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 480px;
    width: 100%;
    height: auto;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 255, 200, 0.5));
}

/* Görsel animasyonu */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text-title img {
        margin: 0 auto;
    }

    .hero-image {
        margin-top: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3.5rem 1.5rem;
    }

    .hero-text-paragraf {
        font-size: 1rem;
    }

    .hero-text .cta-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }

    .hero-image img {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2.5rem 1rem;
    }

    .hero-text-paragraf {
        font-size: 0.95rem;
    }

    .hero-text-title img {
        max-width: 220px;
    }

    .hero-image img {
        max-width: 260px;
    }
}