/*
|--------------------------------------------------------------------------
| Oluşturulma Tarihi : 28.04.2026
| Değişiklik Tarihi  : 28.06.2026
| Versiyon           : v0.3.5
| Yaratan            : Özgür Elibol
| Dokümanın Amacı    : Hodegon Restaurant ana sayfa hero slider bölümünün
|                      genişliğine dokunmadan sadece yüksekliğini yaklaşık
|                      yarı yarıya küçültür.
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Ana Sayfa Slider Yükseklik Düzenlemesi
|--------------------------------------------------------------------------
| Eski yapı tam ekran yüksekliğe yakındı. Bu düzenleme sadece boyu küçültür,
| slider genişliği ve yatay yerleşime müdahale etmez.
|--------------------------------------------------------------------------
*/

.hero-slider {
    height: 48vh;
    min-height: 360px;
    max-height: 520px;
}

/*
|--------------------------------------------------------------------------
| Slider İçerik Oranları
|--------------------------------------------------------------------------
*/

.hero-content h1 {
    font-size: clamp(36px, 5vw, 68px);
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 26px;
}

.hero-small {
    font-size: 15px;
    margin-bottom: 12px;
}

/*
|--------------------------------------------------------------------------
| Tablet Uyum
|--------------------------------------------------------------------------
*/

@media only screen and (max-width: 820px) {
    .hero-slider {
        height: auto !important;
        min-height: unset !important;
        max-height: unset !important;
        aspect-ratio: 16 / 7 !important;
    }
}

/*
|--------------------------------------------------------------------------
| Mobil Uyum
|--------------------------------------------------------------------------
*/

@media only screen and (max-width: 560px) {
    .hero-slider {
        aspect-ratio: 16 / 8 !important;
    }
}
