﻿:root {
    --vio-pink: #e91e63;
    --vio-dark: #0b0d0f;
}

.hero-full {
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0) 90%), url('../images/oto.png');
    background-size: cover;
    background-position: center right; /* Otobüs her zaman sağda odakta kalır */
    background-repeat: no-repeat;
    background-color: #000; /* Resmin bittiği yerde siyah zemin devam eder, şerit oluşmaz */
    height: 350px;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden; /* Taşmaları engeller */
}

/* ANA BAŞLIK DÜZENLEMESİ (1200px Üzeri - Geniş Ekran) */
.hero-main-title {
    color: #ffffff !important;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
}
/* 1399px - 1200px ARASI  */
@media (max-width: 1399px) {
    .hero-main-title {
        /* Yazıyı 2 satıra zorlamak için fontu bir tık çekiyoruz */
        font-size: 3.2rem !important;
        white-space: normal;
    }
}

/* 1199px - 768px ARASI */
@media (max-width: 1199px) and (min-width: 768px) {
    .hero-main-title {
        /* Başlığı 2 satırda tutacak ve butonu yukarı çekecek ideal boyut */
        font-size: 2.8rem !important;
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 1rem;
        margin-top: 10px;
        margin-bottom: 20px; /* Buton kaybolmasın diye arayı daralttık */
    }

    .hero-full {
        height: 400px; /* Butonun nefes alması için yüksekliği bir tık artırdık */
    }
}

/* 767px VE ALTI (Mobil - Başlık Biraz Daha Küçülerek 2 Satır Kalır) */
@media (max-width: 767px) {
    .hero-main-title {
        font-size: 2.2rem !important;
        line-height: 1.1;
    }

    .hero-full {
        height: auto; /* Yazı taşmasın diye yüksekliği serbest bırak */
        padding: 50px 0; /* İçerik kutuya yapışmasın */
        min-height: 380px;
    }

    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
}
/* --- HİZMETLERİMİZ KARTLARI RESPONSIVE DÜZENLEME --- */
@media (max-width: 991px) {
    /* row elementinin flex yapısını yan yana yerine alt alta (column) dönüştürüyoruz */
    .row.g-4.justify-content-center {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .row.g-4.justify-content-center > [class*="col-"] {
            width: 100% !important;
            max-width: 540px; /* Kartların mobilde aşırı yayılmasını önlemek için ideal genişlik sınırı */
        }
}

.hero-desc {
    color: #ffffff !important;
    opacity: 1 !important;
    font-size: 1.1rem;
    max-width: 480px;
}

.pink-text {
    color: var(--vio-pink) !important;
}

/* GÖRSELDEKİ OVAL VE ŞIK PEMBE BUTON */
.btn-vio-pink {
    background-color: var(--vio-pink);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

    .btn-vio-pink:hover {
        background-color: #d81b60;
        color: white;
        transform: scale(1.05);
    }

/* --- ÖZELLİK KARTLARI (GÜNCELLEME) --- */
.feature-card {
    border-radius: 25px !important; /* Daha yumuşak ve yuvarlak köşeler */
    overflow: hidden; /* İçerik köşelerden taşmasın */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Daha akıcı bir zıplama efekti */
    border: 1px solid rgba(0,0,0,0.05) !important; /* Çok hafif bir çerçeve derinlik katar */
}


    .feature-card:hover {
        transform: translateY(-10px); /* Biraz daha yukarı kalksın */
        box-shadow: 0 15px 30px rgba(233, 30, 99, 0.25) !important;
        border-color: rgba(233, 30, 99, 0.3) !important; /* Kenarlık da hafifçe pembeye döner */
    }

    .feature-card i {
        opacity: 0.9;
    }

/* --- VİZYON & MİSYON --- */
.vision-card, .mission-card {
    border-radius: 20px !important;
}

.lh-lg {
    line-height: 1.8;
}

/* Başlık altındaki pembe çizgi stili ve Renk Sabitleme */
.title-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: var(--vio-pink) !important;
}

    .title-underline::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100px;
        height: 3px;
        background-color: var(--vio-pink);
        border-radius: 2px;
    }

.vision-card .title-underline {
    color: var(--vio-dark) !important;
}

.text-center .title-underline::after {
    left: 50%;
    transform: translateX(-50%);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-main-title {
    animation: fadeInUp 1.2s ease-out forwards;
}

.hero-desc {
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.2s forwards;
}

.btn-vio-pink {
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.4s forwards;
}

.feature-card .card-body i {
    color: var(--vio-pink) !important;
    display: inline-block;
}

    .feature-card .card-body i.text-warning {
        color: #ffc107 !important;
    }

    .feature-card .card-body i.text-success {
        color: #198754 !important;
    }
