/* =========================================
   GENEL GÜNCELLEMELER VE KLASİK INPUTLAR
   ========================================= */

.classic-input {
    background-color: transparent;
    border-bottom: 1px solid #c5a059;
    color: white;
    padding: 0.5rem 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.classic-input:focus {
    outline: none;
    border-bottom-color: white;
}

::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

::-webkit-calendar-picker-indicator:hover {
    opacity: 0.7;
}

/* Number Input Oklarını Gizleme */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

/* =========================================
   REZERVASYON AÇ/KAPA ANİMASYONU
   ========================================= */
.reservation-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.reservation-wrapper.open {
    grid-template-rows: 1fr;
}

.reservation-inner {
    min-height: 0;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.reservation-wrapper.open .reservation-inner {
    opacity: 1;
}

/* =========================================
   ÖZEL İMZA BUTON ANİMASYONU (Perde Efekti)
   ========================================= */
.btn-curtain {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-curtain::before,
.btn-curtain::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #c5a059;
    /* hotel-gold */
    z-index: -1;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-curtain::before {
    top: 0;
}

.btn-curtain::after {
    bottom: 0;
}

.btn-curtain:hover::before,
.btn-curtain:hover::after {
    height: 50%;
}

.btn-curtain:hover {
    color: #000000 !important;
}

/* =========================================
   SIKÇA SORULAN SORULAR (FAQ) AKORDEON
   ========================================= */
/* Aktif olduğunda ikonun dönmesi için */
/* İkon ve Metin Animasyonları */
.faq-item.active .faq-icon {
    transform: rotate(45deg) scale(1.1);
    color: #c5a059;
}

.faq-item.active .faq-title {
    color: #c5a059;
}

/* Tıklandığında Sol Köşede Zarifçe Büyüyen Altın Çizgi Vurgusu */
.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #c5a059;
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    /* Çizgi ortadan başlayıp yukarı/aşağı uzar */
}

.faq-item.active::before {
    transform: scaleY(1);
}

/* Soru açıldığında çok hafif bir zemin aydınlatması ile sınırları hissettir */
.faq-item.active {
    background-color: rgba(255, 255, 255, 0.015);
}


/* Aktif olduğunda çerçevenin altın rengi parlaması için */
.faq-item.active {
    border-color: rgba(197, 160, 89, 0.6);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.15);
}


/* 1. YAZI ALANININ ARKA PLANINI SİYAH YAPMA */
/* Bu sınıf GLightbox'ın metin kapsayıcısıdır */
.gdesc-inner {
    background-color: #000000 !important;
    /* Tam Siyah */
    padding: 20px !important;
    /* Biraz nefes alma alanı */
    border-top: 1px border-hotel-gold/20;
    /* Üste ince bir altın çizgi (isteğe bağlı) */
}

.font-serif{font-family: "Roboto", sans-serif;}

/* 2. BAŞLIK (TITLE) AYARLARI (Altın Rengi ve Net) */
.gslide-title {
    font-family: "Roboto", sans-serif;
    color: #c5a059 !important;
    /* Altın Rengimiz */
    font-size: 1.6rem !important;
    /* Biraz daha büyük ve net */
    font-weight: 600 !important;
    margin-bottom: 0 !important;
    /* Alttaki boşluğu sıfırla */
    text-align: center;
    /* Ortala */
}

/* 3. ALT YAZIYI (DESCRIPTION) TAMAMEN KALDIRMA */
.gslide-desc {
    display: none !important;
}

/* Galeri Hover Efekti (Ana sayfadaki yumuşatma) */
.glightbox.group:hover .relative span {
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.group .h-\[2px\] {
    box-shadow: 0 0 8px rgba(197, 160, 89, 0.4);
}
/* =========================================
   HERO SLIDER THUMBNAILS (Premium Dock Efekti)
   ========================================= */
   .thumb {
    position: relative;
    width: 140px;
    height: 80px;
    opacity: 0.5;
    filter: grayscale(80%);
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    /* Yanlarındaki diğer kutuları itmesi için temel margin */
    margin: 0 5px; 
    transform-origin: bottom center;
    /* Akıcı, yaylanan animasyon (Bu çok önemli!) */
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); 
}

.thumb:hover {
    opacity: 0.9;
    filter: grayscale(20%);
    transform: translateY(-8px) scale(1.1); 
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.thumb.active-thumb {
    opacity: 1;
    filter: grayscale(0%);
    border-color: #c5a059;
    /* Margin 20px'e çıkarak yandakileri fiziksel olarak iter */
    margin: 0 20px; 
    transform: translateY(-15px) scale(1.3); 
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 15px rgba(197, 160, 89, 0.25);
}

/* İçerideki resmin de yumuşakça zumlanması */
.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.thumb:hover img, 
.thumb.active-thumb img {
    transform: scale(1.1);
}
/* =========================================
   DOLU BUTONLAR İÇİN TERS PERDE ANİMASYONU 
   ========================================= */
.btn-curtain-reverse {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-curtain-reverse::before,
.btn-curtain-reverse::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #101010;
    /* Otele uygun koyu arka plan rengi */
    z-index: -1;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-curtain-reverse::before {
    top: 0;
}

.btn-curtain-reverse::after {
    bottom: 0;
}

.btn-curtain-reverse:hover::before,
.btn-curtain-reverse:hover::after {
    height: 50%;
}

.btn-curtain-reverse:hover {
    color: #c5a059 !important;
    /* Üzerine gelince ikon ve yazı altın rengi parlasın */
}

/* Sadece belirli perde butonlarında yazının koyu renge dönmesi için ezici sınıf */
.btn-curtain-hover-dark:hover {
    color: #1c1c1c !important;
    /* Otel temasına uygun koyu siyah/antrasit */
}

/* =========================================
   HERO SLIDER THUMBNAILS (Premium Dock Efekti)
   ========================================= */
.thumb {
    position: relative;
    width: 140px;
    height: 80px;
    opacity: 0.5;
    filter: grayscale(80%);
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    /* Margin kaldırıldı, boşlukları kapsayıcıdaki 'gap-5' yönetecek. Zıplama engellendi. */
    transform-origin: bottom center;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); /* Çok daha yumuşak ve akıcı bir ivme */
}

/* İçteki resim için yavaş ve zarif bir zoom efekti */
.thumb img {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.thumb:hover {
    opacity: 0.9;
    filter: grayscale(20%);
    /* Sadece büyümek yerine hafifçe yukarı kalkarak büyüsün */
    transform: translateY(-4px) scale(1.05); 
    border-color: rgba(197, 160, 89, 0.4); /* Hoverda hafif altın çerçeve */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.thumb:hover img {
    transform: scale(1.08); /* İçerideki resim hover durumunda hafifçe büyüsün */
}

.thumb.active-thumb {
    opacity: 1;
    filter: grayscale(0%);
    border-color: #c5a059; /* hotel-gold tam renk */
    /* Seçili olan daha belirgin şekilde yukarı çıkar ve büyür */
    transform: translateY(-8px) scale(1.15); 
    z-index: 10;
    /* Hem siyah derinlik gölgesi hem de hafif altın rengi parlama efekti */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 15px rgba(197, 160, 89, 0.25);
}

.thumb.active-thumb img {
    transform: scale(1.12); /* Aktif resim içerde zumlanmış kalsın */
}