/*
|--------------------------------------------------------------------------
| Ormanya Bungalows özel stilleri
|--------------------------------------------------------------------------
*/

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
}

/* Yatay kaydırma çubuğunu gizler */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Sabit üst menü arka planı */
.glass-header {
    background: rgba(20, 46, 33, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* Aktif oda filtresi */
.filter-btn.active {
    background-color: #142e21 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(20, 46, 33, 0.15);
}

/* Tarih alanlarının yazı tipi */
input[type="date"] {
    font-family: inherit;
}

/* Form elemanlarındaki varsayılan görünüm */
input,
select,
textarea,
button {
    font: inherit;
}

/* Görsellerin sayfa dışına taşmasını engeller */
img {
    max-width: 100%;
}

/* Klavye ile kullanım sırasında odak görünümü */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #c89355;
    outline-offset: 3px;
}

/* Rezervasyon penceresinin kaydırma çubuğu */
#booking-modal form::-webkit-scrollbar {
    width: 6px;
}

#booking-modal form::-webkit-scrollbar-track {
    background: #f3f4f6;
}

#booking-modal form::-webkit-scrollbar-thumb {
    background: #c89355;
    border-radius: 999px;
}

/* Mobil ekran düzenlemeleri */
@media (max-width: 640px) {
    #mobile-bottom-dock {
        padding-bottom: calc(0.625rem + env(safe-area-inset-bottom));
    }

    #booking-modal {
        align-items: flex-start;
    }

    #booking-modal-box {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}