html,
body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}


.overlay {
    /* background-color: red; */
    position: fixed;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    opacity: 0.32;
    background: #D8BFAA;
}

/* ========================================
    HOMEPAGE HEADER — BEGIN
======================================== */
a.hp-place-card {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 170px;
    flex-shrink: 0;
}

.hp-header {
    padding-top: 16px;
}

.hp-header .container-fluid {
    position: relative;
    min-height: 70px;
    display: flex;
    align-items: flex-start;
}

.hp-hamburger-wrapper {
    /* padding: 16px; */
}

.hp-hamburger-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: transparent;
    backdrop-filter: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-logo-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hp-logo-image {
    display: flex;
    width: 242px;
    /* height: 72px; */
    padding: 12px 36.3px;
    justify-content: center;
    align-items: center;
    /* background: #6F5091; */
    box-sizing: border-box;
}

.hp-logo-image img {
    width: 156.164px;
    height: 47.95px;
    flex-shrink: 0;
    object-fit: contain;
    aspect-ratio: 156.16 / 47.95;
    display: block;
}

.hp-contact-wrapper {
    /* padding-right: 16px; */
}

.hp-contact-btn {
    border: none;
    padding: 13px 43px;
    border-radius: 8px;
    background: rgba(111, 80, 145, 0.20);
    backdrop-filter: blur(7px);
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

/* HOMEPAGE HEADER — END */
/* ========================================
    HOMEPAGE BACKGROUND VIDEO — BEGIN
======================================== */
.hp-bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;


}

/* HOMEPAGE BACKGROUND VIDEO — END */



/* ========================================
    HOMEPAGE MIDDLE SECTION — BEGIN
======================================== */
.hp-middle-section {
    flex: 1;
    display: flex;
    position: relative;
    z-index: 1;
    /* border: 1px solid black; */
    align-items: center;
}

/* HOMEPAGE LEFT CONTENT — BEGIN */
.hp-left-content {
    width: 50%;
    padding-left: 66px;
    display: flex;
    align-items: center;
}

.hp-main-title {
    color: #FFFFFF;
    font-family: "Sweet Sans Pro", sans-serif;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 62px;
    letter-spacing: -6.48px;
    text-transform: uppercase;
    margin: 0;
}

/* HOMEPAGE LEFT CONTENT — END */

/* HOMEPAGE RIGHT CONTENT — BEGIN */
/* Slider Kapalı Durumu */
/* Slider Kapalı Durumu */
.hp-right-content {
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

.hp-right-content.hp-is-closed {
    /* Slider'ı sağa iterken;
    Konteyner genişliğinden, görünmesini istediğin alanı çıkarıyoruz.
    170px (Kart) + 10px (İkon marjı) + 24px (İkon genişliği) + biraz boşluk ≈ 220px
    */
    transform: translateX(calc(100% - 220px)) !important;
}

/* Kapalıyken kartların üzerine tıklanmasını engellemek istersen (isteğe bağlı) */
.hp-right-content.hp-is-closed .hp-slider-container {
    pointer-events: none;
}

/* İkonun yönünü çevir (opsiyonel) */
.hp-right-content.hp-is-closed #hp-expand-icon svg {
    transform: rotate(180deg);
}

.hp-expand-icon {
    width: 48px;
    height: 48px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    cursor: grab;
    margin-right: 10px;
}

.hp-expand-icon:active {
    cursor: grabbing;
}

/* HOMEPAGE RIGHT CONTENT — END */
/* HOMEPAGE MIDDLE SECTION — END */

/* ========================================
    HOMEPAGE SLIDER — BEGIN
======================================== */
.hp-slider-container {
    display: flex;
    flex-wrap: nowrap;
    /* Kartların alt alta binmesini engeller */
    gap: 20px;
    /* Gruplar arası mesafe */
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: auto;
    /* Manuel kaydırma için 'auto' olmalı */
    scrollbar-width: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    /* Yatayda JS ile biz yöneteceğiz */
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}

.hp-slider-container::-webkit-scrollbar {
    display: none;
}

.hp-slider-container:active {
    cursor: grabbing;
}

.hp-swipe-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 21px;
    width: 100%;
}

/* Esneme animasyonu — geri yerine gelme */
@keyframes hp-slider-snap-back {
    0% {
        transform: translateX(var(--hp-stretch-x));
    }

    60% {
        transform: translateX(calc(var(--hp-stretch-x) * -0.15));
    }

    80% {
        transform: translateX(calc(var(--hp-stretch-x) * 0.05));
    }

    100% {
        transform: translateX(0);
    }
}

.hp-slider-container.hp-is-stretching {
    animation: hp-slider-snap-back 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* HOMEPAGE SLIDER — END */

/* ========================================
    HOMEPAGE CATEGORY GROUP — BEGIN
======================================== */
.hp-category-group {
    flex: 0 0 auto;
}

.hp-category-header {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
}

.hp-category-icon {
    width: 20px;
    height: 19px;
    flex-shrink: 0;
}

.hp-group-title {
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0;
    text-transform: uppercase;
}

.hp-cards-row {
    display: flex;
    gap: 16px;
}

/* HOMEPAGE CATEGORY GROUP — END */

/* ========================================
    HOMEPAGE PLACE CARD — BEGIN
======================================== */
.hp-place-card {
    width: 170px;
    flex-shrink: 0;
}

.hp-card-img {
    height: 222px;
    align-self: stretch;
    background-color: lightgray;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 8px;
}

.hp-card-city {
    align-self: stretch;
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
}

.hp-card-name {
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    text-transform: uppercase;
}

.hp-card-desc {
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 2px;
}

/* HOMEPAGE PLACE CARD — END */

/* ========================================
    HOMEPAGE BOTTOM SECTION — BEGIN
======================================== */
.hp-bottom-section {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.hp-social-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 16px;
    margin-bottom: 16px;
    padding: 6px 7px;
}

.hp-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-social-icon svg {
    width: 22px;
    height: 22px;
}

.hp-right-content {
    width: 50%;
    display: flex;
    align-items: center;
    overflow: visible;
    will-change: transform;
}

/* HOMEPAGE BOTTOM SECTION — END */

/* ========================================
    HOMEPAGE RESPONSIVE — BEGIN
======================================== */
@media (max-width: 992px) {
    .hp-middle-section {
        flex-direction: column;
    }

    .hp-left-content,
    .hp-right-content {
        width: 100%;
    }

    .hp-left-content {
        padding-left: 24px;
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .hp-right-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hp-main-title {
        font-size: 42px;
        line-height: 40px;
        letter-spacing: -2px;
    }
}

@media (max-width: 576px) {
    .hp-contact-btn {
        padding: 10px 15px;
    }

    .hp-contact-btn span {
        margin: 0 !important;
    }
}

/* HOMEPAGE RESPONSIVE — END */

/* ========================================
    CONTACT PAGE — BEGIN
======================================== */

/* ── Hero ── */
.contact-hero {
    background-color: #f6f3ee;
    padding: 7rem 2rem 4rem;
    text-align: center;
}

@media (min-width: 768px) {
    .contact-hero {
        padding: 9rem 6rem 5rem;
    }
}

/* ── Hotel / Restaurant Cards ── */
.hotel-card {
    background: #fff;
    border: 1px solid rgba(209, 197, 180, .2);
    border-radius: .5rem;
    padding: 2rem;
    transition: transform .3s;
    box-shadow: 0 2px 12px rgba(28, 28, 25, .04);
}

.hotel-card:hover {
    transform: translateY(-4px);
}

.hotel-card a {
    color: #4e4639;
    text-decoration: none;
    font-size: .85rem;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.hotel-card a:hover {
    color: #775a19;
}

.map-link {
    display: inline-flex !important;
    align-items: center;
    gap: .25rem;
    font-size: .75rem !important;
    font-weight: 600;
    color: #775a19 !important;
    border-bottom: 1px solid transparent;
    transition: border-color .2s !important;
    padding-top: .5rem;
}

.map-link:hover {
    border-bottom-color: #775a19 !important;
}

/* ── HQ Banner ── */
.hq-banner {
    background-color: #ebe8e3;
    border-radius: .5rem;
    padding: 3rem;
}

@media (min-width: 768px) {
    .hq-banner {
        padding: 4rem;
    }
}

/* ── Info icon circles ── */
.info-icon-wrap {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: rgba(119, 90, 25, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #775a19;
    flex-shrink: 0;
}

/* ── Inquiry Form Card ── */
.inquiry-card {
    background-color: #f6f3ee;
    border-radius: .75rem;
    padding: 2.5rem;
}

@media (min-width: 768px) {
    .inquiry-card {
        padding: 3.5rem;
    }
}

.form-label-sm {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-weight: 600;
    color: #4e4639;
    display: block;
    margin-bottom: .4rem;
}

.form-field {
    width: 100%;
    background: #fff;
    border: none;
    border-bottom: 1px solid rgba(209, 197, 180, .4);
    padding: .85rem 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #1c1c19;
    transition: border-color .2s;
}

.form-field::placeholder {
    color: rgba(78, 70, 57, .35);
}

.form-field:focus {
    outline: none;
    border-bottom-color: #775a19 !important;
    box-shadow: none;
}

textarea.form-field {
    resize: none;
}

select.form-field {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.contact-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #775a19 0%, #c5a059 100%);
    color: #fff;
    border: none;
    border-radius: .5rem;
    padding: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(119, 90, 25, .2);
    transition: opacity .2s;
    margin-top: 1rem;
}

.contact-submit-btn:hover {
    opacity: .9;
}

/* ── Map ── */
.map-wrap {
    border-radius: .75rem;
    overflow: hidden;
    height: 500px;
    position: relative;
    border: 1px solid rgba(209, 197, 180, .2);
    filter: grayscale(1) contrast(1.1);
    opacity: .8;
}

.map-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-pin {
    position: absolute;
    color: #775a19;
}

.map-pin .material-symbols-outlined {
    font-size: 2rem;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ── Socials Footer ── */
.contact-socials-footer {
    border-top: 1px solid rgba(209, 197, 180, .1);
    padding: 3rem 0;
}

/* ── Section & page spacing ── */
.contact-section-gap {
    margin-bottom: 5rem;
}

.contact-page-wrap {
    padding-bottom: 4rem;
}

/* ── Scroll fix (overrides style.css overflow:hidden for this page) ── */
body.contact-page,
body.contact-page html {
    height: auto !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

/* Bu kural style.css'deki genel kuralı ezecektir */
html,
body.contact-page {
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    /* Kaydırmayı zorla açıyoruz */
    position: relative !important;
}

/* Sayfa sarmalayıcısının yüksekliğini kısıtlamadığından emin olalım */
.contact-page-wrap {
    height: auto !important;
    overflow: visible !important;
}

/* CONTACT PAGE — END */