:root {
    --ink: #1a1c1e;
    --gold: #c4a574;
    --gold-dark: #a88b55;
    --cream: #f6f3ee;
    --white: #ffffff;
    --muted: #6b6f76;
    --line: rgba(26, 28, 30, 0.08);
    --radius: 2px;
    --shadow: 0 8px 28px rgba(26, 28, 30, 0.08);
    --font-display: "Playfair Display", Georgia, serif;
    --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--gold); color: #fff; }

/* ---------- Header (Themist-style) ---------- */
.site-header { position: relative; z-index: 1040; }

.main-navbar {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    z-index: 1040;
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
}
.header-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.navbar-brand {
    display: flex;
    align-items: center;
    margin-right: 0;
    padding: 0;
}
.brand-logo {
    display: block;
    width: auto;
    height: 68px;
    object-fit: contain;
}
.brand-logo--footer {
    height: 92px;
}

.main-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--ink);
    margin: 0 0.55rem;
    padding: 0.45rem 0;
    position: relative;
}
.main-nav .nav-link::after { display: none; }
.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--gold);
}

.header-cta {
    margin-left: 0.5rem;
}

/* Home: lightly darkened overlay header */
.page-home .main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.42);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.page-home .main-navbar .main-nav .nav-link { color: #fff; }
.page-home .main-navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
}
.page-home .main-navbar .navbar-toggler-icon { filter: invert(1); }
.page-home .main-navbar .main-nav .nav-link:hover,
.page-home .main-navbar .main-nav .nav-link.active { color: var(--gold); }

.page-home .main-navbar.is-solid {
    background: rgba(8, 9, 10, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    padding: 12px 0;
}
.page-home .main-navbar.is-solid .main-nav .nav-link { color: #fff; }
.page-home .main-navbar.is-solid .navbar-toggler-icon { filter: invert(1); }

/* Inner pages: sticky darkened bar */
body:not(.page-home) .main-navbar {
    position: sticky;
    top: 0;
    background: rgba(10, 11, 12, 0.96);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}
body:not(.page-home) .main-nav .nav-link { color: #fff; }
body:not(.page-home) .main-nav .nav-link:hover,
body:not(.page-home) .main-nav .nav-link.active { color: var(--gold); }
body:not(.page-home) .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
}
body:not(.page-home) .navbar-toggler-icon { filter: invert(1); }

@media (max-width: 991.98px) {
    .page-home .main-navbar .navbar-collapse {
        background: rgba(18, 20, 22, 0.96);
        margin-top: 14px;
        padding: 18px 16px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        width: 100%;
    }
    .main-nav {
        margin-bottom: 14px;
    }
    .main-nav .nav-link {
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    body:not(.page-home) .main-nav .nav-link {
        border-bottom-color: rgba(255, 255, 255, 0.08);
    }
    .header-cta {
        width: 100%;
        margin-left: 0;
        justify-content: center;
    }
    body:not(.page-home) .main-navbar .navbar-collapse {
        background: rgba(10, 11, 12, 0.98);
        margin-top: 12px;
        padding: 16px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        width: 100%;
    }
}

/* ---------- Buttons ---------- */
.btn-rezervasyon,
.btn-gold,
.btn-gold-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gold);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    text-transform: none;
    padding: 11px 22px;
    border: none;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}
.btn-rezervasyon:hover,
.btn-gold:hover,
.btn-gold-solid:hover {
    background: var(--gold-dark);
    color: #fff !important;
    transform: translateY(-1px);
}
.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    border-radius: var(--radius);
    padding: 12px 26px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.btn-gold-outline {
    display: inline-flex;
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.btn-gold-outline:hover {
    background: var(--gold);
    color: #fff;
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-dark {
    background: var(--ink);
    color: #d5d7da;
}
.section-dark h2,
.section-dark h3,
.section-dark h5 { color: #fff; }

.section-eyebrow,
.section-title .tag {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.section-title { text-align: center; margin-bottom: 56px; }
.section-title.text-start { text-align: left; }
.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 12px;
}
.section-title p {
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto;
}
.section-title.text-start p { margin-left: 0; }
.divider {
    width: 64px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto 0;
}
.section-title.text-start .divider { margin-left: 0; }

/* ---------- Hero (Themist index-2 layout) ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    color: #fff;
    padding: 150px 0 56px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 12, 14, 0.45) 0%, rgba(10, 12, 14, 0.18) 48%, rgba(10, 12, 14, 0.35) 100%),
        linear-gradient(180deg, rgba(10, 12, 14, 0.28) 0%, rgba(10, 12, 14, 0.08) 42%, rgba(10, 12, 14, 0.42) 100%),
        url("../img/hero-bg.jpg") center center / cover no-repeat;
    z-index: 0;
    transform: none;
    filter: none;
    image-rendering: auto;
}
@keyframes heroZoom {
    to { transform: scale(1); }
}
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 8vh, 88px);
}
.hero-copy { max-width: 640px; }
.hero h1 {
    font-size: clamp(1.72rem, 3.52vw, 2.8rem);
    line-height: 1.12;
    color: #fff;
    margin: 0 0 28px;
    max-width: none;
    font-weight: 700;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
}
.hero-call {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(18, 20, 22, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 10px 22px 10px 10px;
    color: #fff;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.hero-call:hover {
    background: rgba(18, 20, 22, 0.95);
    border-color: rgba(196, 165, 116, 0.45);
    color: #fff;
}
.hero-call-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.hero-call-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}
.hero-call-text small {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
}
.hero-call-text strong {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}
.hero-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    line-height: 1.2;
}
.hero-link:hover { color: #e0c089; border-bottom-color: #e0c089; }

.hero-book {
    width: 100%;
    background: rgba(22, 24, 27, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}
.hero-book-form {
    display: grid;
    grid-template-columns: 1.15fr 1.15fr 0.95fr 0.85fr 1.2fr auto;
    gap: 14px 16px;
    align-items: end;
}
.hero-book-form .hero-field {
    margin-bottom: 0;
    min-width: 0;
}
.hero-book .form-label {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 6px;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 0.82rem;
    font-weight: 500;
}
.hero-input { position: relative; }
.hero-input i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.55);
    pointer-events: none;
    font-size: 0.95rem;
}
.hero-book .form-control,
.hero-book .form-select {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    border-radius: 10px;
    padding: 12px 42px 12px 14px;
    min-height: 50px;
    width: 100%;
}
.hero-book .form-select {
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.hero-book .form-control:focus,
.hero-book .form-select:focus {
    background-color: rgba(255, 255, 255, 0.07);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23c4a574' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px 10px;
    border-color: var(--gold);
    box-shadow: none;
    color: #fff;
}
.hero-book .form-control::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.hero-book .form-select option { color: #1a1c1e; }
.hero-field--submit {
    display: flex;
    align-items: flex-end;
}
.btn-hero-submit {
    margin-top: 0;
    min-height: 50px;
    white-space: nowrap;
    padding-inline: 22px;
    font-size: 0.92rem;
    font-weight: 600;
}
.about-phone {
    color: var(--muted);
    font-size: 0.95rem;
}
.about-phone strong a { color: var(--ink); }
.form-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ---------- About ---------- */
.about-media {
    position: relative;
    min-height: 420px;
}
.about-media .img-main {
    width: 78%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius);
}
.about-media .img-accent {
    position: absolute;
    right: 0;
    bottom: 24px;
    width: 52%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 8px solid var(--cream);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ---------- Rooms showcase (homepage) ---------- */
.section-rooms {
    background: #f3f2f0;
}
.rooms-title .divider { display: none; }
.rooms-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 1px solid rgba(26, 28, 30, 0.12);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.rooms-title h2 {
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: -0.03em;
}
.rooms-title h2 span { color: var(--gold); }

.rooms-home-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}
.rooms-home-grid .room-card {
    height: 100%;
    grid-template-rows: 180px auto;
    box-shadow: 0 10px 28px rgba(26, 28, 30, 0.06);
}
.rooms-home-grid .room-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
}
.rooms-home-grid .room-card-body h5 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.rooms-home-grid .room-card-body > p {
    font-size: 0.86rem;
    line-height: 1.5;
    flex-grow: 1;
}
.rooms-home-grid .room-features { margin-bottom: 12px; }
.rooms-home-grid .room-actions { margin-top: auto; }
.room-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.btn-rooms-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: min(420px, 100%);
    padding: 14px 28px;
    border-radius: 999px;
    border: 1px solid rgba(26, 28, 30, 0.14);
    background: #fff;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.95rem;
}
.btn-rooms-all:hover {
    border-color: var(--gold);
    color: var(--ink);
}

/* Listing cards (odalar.php) */
.room-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-rows: 220px auto;
}
.room-card-img {
    position: relative;
    overflow: hidden;
}
.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.06); }
.room-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
}
.room-card-body { padding: 22px; }
.room-card-body h5 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}
.room-meta {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
}
.room-meta i { color: var(--gold); margin-right: 6px; }
.room-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.room-features li {
    font-size: 0.75rem;
    font-weight: 600;
    color: #7a6340;
    background: rgba(196, 165, 116, 0.12);
    padding: 5px 10px;
    border-radius: 999px;
}
.room-price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
    padding-top: 14px;
    margin-top: 4px;
}
.room-price .amount {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--gold-dark);
}
.room-price del {
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
}
.room-price .per { font-size: 0.78rem; color: var(--muted); }

.oda-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.oda-grid .room-card { width: 100%; }

/* ---------- Services ---------- */
.service-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
}
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.service-card .body { padding: 24px; }
.service-card .eyebrow {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
}
.service-card h5 { font-size: 1.35rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ---------- Amenities ---------- */
.amenity-item {
    text-align: center;
    padding: 28px 18px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: var(--radius);
    height: 100%;
}
.amenity-item i {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 14px;
}
.amenity-item h5 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.amenity-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

/* ---------- Stats ---------- */
.stats-band {
    background: var(--ink);
    color: #d5d7da;
    padding: 88px 0;
}
.stats-band h2 { color: #fff; }
.stat-item { text-align: center; }
.stat-item .num {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-item .label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    height: 100%;
}
.testimonial-card .quote {
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.55;
    margin-bottom: 22px;
    color: var(--ink);
}
.testimonial-card .who {
    font-weight: 700;
    margin-bottom: 2px;
}
.testimonial-card .from {
    color: var(--muted);
    font-size: 0.85rem;
}

/* ---------- Gallery ---------- */
.galeri-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
}
.galeri-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: #eceae6;
    cursor: zoom-in;
    text-align: left;
}
.galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.galeri-item:hover img { transform: scale(1.08); }
.galeri-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 28, 30, 0.75), transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 14px;
    color: #fff;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.galeri-item:hover .overlay { opacity: 1; }
.galeri-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.galeri-wrap--page {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    grid-auto-rows: 200px;
}
.galeri-page .galeri-item:nth-child(1),
.galeri-wrap--page .galeri-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 9, 10, 0.92);
}
.lightbox.is-open { display: flex; }
.lightbox-inner {
    position: relative;
    max-width: min(1100px, 100%);
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.lightbox-inner img {
    max-width: 100%;
    max-height: calc(100vh - 120px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.lightbox-caption {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    text-align: center;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.22);
}
.lightbox-close {
    top: 18px;
    right: 18px;
    z-index: 2;
}
.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
body.lightbox-open { overflow: hidden; }

/* ---------- CTA ---------- */
.cta-band {
    position: relative;
    padding: 88px 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(26, 28, 30, 0.78), rgba(26, 28, 30, 0.85)),
        url("../img/odalar/cift-1.jpg") center / cover no-repeat;
    z-index: 0;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.cta-band p { color: rgba(255, 255, 255, 0.8); max-width: 560px; margin: 0 auto 28px; }

/* ---------- Footer ---------- */
.site-footer {
    background: #121416;
    color: #a8adb4;
    padding: 72px 0 0;
}
.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.footer-desc { color: #7f858e; font-size: 0.92rem; max-width: 320px; }
.site-footer h5 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #a8adb4; font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.9rem;
}
.footer-contact i { color: var(--gold); margin-top: 4px; }
.footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #c7cdd3;
    margin-right: 8px;
    border-radius: var(--radius);
    transition: 0.2s;
}
.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}
.footer-bottom {
    margin-top: 56px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    color: #7f858e;
}

/* ---------- WhatsApp ---------- */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    z-index: 999;
}
.whatsapp-float:hover { transform: scale(1.06); color: #fff; }

/* ---------- Page header ---------- */
.page-header {
    background:
        linear-gradient(rgba(26, 28, 30, 0.78), rgba(26, 28, 30, 0.85)),
        url("../img/hero-bg.jpg") center / cover no-repeat;
    color: #fff;
    padding: 120px 0 72px;
    text-align: center;
}
.page-header h1 {
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-bottom: 10px;
}
.breadcrumb-custom {
    color: #c5c8cc;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}
.breadcrumb-custom a { color: var(--gold); }
.breadcrumb-custom .sep { margin: 0 10px; opacity: 0.6; }

/* ---------- Detail / forms ---------- */
.detay-galeri-main {
    border-radius: 12px;
    overflow: hidden;
    height: 460px;
    border: 1px solid var(--line);
    background: #eceae6;
}
.detay-galeri-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease;
}
.detay-galeri-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
}
.detay-thumb {
    display: block;
    width: 100%;
    height: 88px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    background: #eceae6;
    cursor: pointer;
    transition: border-color 0.2s ease, opacity 0.2s ease;
}
.detay-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.detay-thumb:hover { opacity: 0.9; }
.detay-thumb.is-active {
    border-color: var(--gold);
}
.detay-thumb:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}
.detay-fiyat-kutu {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    position: sticky;
    top: 100px;
}
.detay-fiyat-kutu .fiyat {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-dark);
}
.detay-fiyat-kutu del { color: var(--muted); font-size: 0.9rem; }

.form-control,
.form-select {
    border: 1px solid #ddd6cb;
    border-radius: var(--radius);
    padding: 12px 14px;
    font-size: 0.94rem;
    background: var(--white);
}
.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.15rem rgba(196, 165, 116, 0.2);
    outline: none;
}
.alert-gold {
    background: rgba(196, 165, 116, 0.12);
    border: 1px solid rgba(196, 165, 116, 0.35);
    color: #7a6340;
    border-radius: var(--radius);
}
.iletisim-kart,
.feature-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    height: 100%;
    text-align: center;
}
.feature-card { text-align: left; display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border: 1px solid rgba(196, 165, 116, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    border-radius: var(--radius);
    margin: 0 auto 14px;
}
.feature-card .feature-icon { margin: 0; }
.harita-wrap {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    min-height: 420px;
    background: #eceae6;
}
.harita-wrap iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}
.harita-actions {
    margin-top: 14px;
}
.harita-actions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-weight: 600;
}
.harita-actions a:hover { color: var(--gold); }
.rezervasyon-kutusu {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}
.content-prose {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px;
}

/* Legacy class aliases used in PHP */
.oda-kart { /* unused after rename; keep empty */ }
.oda-ozellikler {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.oda-ozellik {
    font-size: 0.78rem;
    font-weight: 600;
    color: #7a6340;
    background: rgba(196, 165, 116, 0.12);
    padding: 6px 12px;
    border-radius: var(--radius);
}
.oda-ozellik i { margin-right: 6px; color: var(--gold); }
.bg-white-soft { background: var(--white); }

/* ---------- Themist homepage extras ---------- */
.text-gold { color: var(--gold); }
.section-title h2 { font-family: var(--font-body); font-weight: 700; }
.section-about .about-heading {
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0 0 18px;
    line-height: 1.2;
}
.section-about .about-heading span { color: var(--gold); }
.about-lead { font-size: 1.05rem; color: var(--ink); margin-bottom: 14px; }
.about-text { color: var(--muted); margin-bottom: 24px; }
.about-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
.about-call {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
    box-shadow: var(--shadow);
}
.about-call .hero-call-text small { color: var(--muted); }
.about-call .hero-call-text strong { color: var(--ink); }

.marquee-band {
    overflow: hidden;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.82);
    padding: 18px 0;
}
.marquee-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: marquee 32s linear infinite;
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.marquee-track .dot { color: var(--gold); }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.section-services { background: #fff; }
.service-card-lg {
    border: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(26, 28, 30, 0.07);
}
.service-card-lg .service-img {
    height: 230px;
    overflow: hidden;
}
.service-card-lg .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.service-card-lg:hover .service-img img { transform: scale(1.06); }
.service-card-lg .body { padding: 26px 24px 28px; }

.services-cta {
    position: relative;
    padding: 72px 0;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(rgba(18, 20, 22, 0.72), rgba(18, 20, 22, 0.78)),
        url("../img/hero-bg.jpg") center / cover no-repeat;
}
.services-cta h2 {
    color: #fff;
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 22px;
}

.amenity-item-lg {
    border-radius: 18px;
    padding: 32px 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.amenity-item-lg:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.stats-band-split {
    background: #121416;
    padding: 96px 0;
}
.stats-band-split .section-eyebrow { color: var(--gold); }
.stats-band-split p { color: #b7bcc3; }
.stats-lead { color: #d7dbe0; }
.stats-photo {
    border-radius: 24px;
    overflow: hidden;
    min-height: 360px;
}
.stats-photo img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}
.stats-band-split .stat-item .num { color: var(--gold); }
.stats-band-split .stat-item .label { color: rgba(255, 255, 255, 0.7); }
.stats-band-split h2 { color: #fff; font-family: var(--font-body); }

.section-experience {
    background: #121416;
    padding: 96px 0;
}
.experience-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 48px;
    align-items: stretch;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    min-height: 0;
}
.experience-photo {
    position: relative;
    min-height: 460px;
    border-radius: 28px;
    overflow: hidden;
}
.experience-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 0;
}
.experience-body {
    padding: 12px 8px 12px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
    color: #b7bcc3;
}
.experience-body .section-eyebrow { color: var(--gold); margin-bottom: 12px; }
.experience-body h2 {
    color: #fff;
    font-family: var(--font-body);
    font-size: clamp(1.7rem, 2.8vw, 2.35rem);
    margin: 0 0 16px;
    line-height: 1.25;
}
.experience-body .stats-lead { color: #d7dbe0; margin-bottom: 12px; }
.experience-body p { margin-bottom: 10px; max-width: 36em; }
.experience-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 8px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.experience-stats .stat-item { text-align: left; }
.experience-stats .stat-item .num {
    color: var(--gold);
    font-size: clamp(2rem, 3vw, 2.75rem);
}
.experience-stats .stat-item .label {
    color: rgba(255, 255, 255, 0.65);
}

.section-testimonials { background: #f3f2f0; }
.testimonial-card-lg {
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(26, 28, 30, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.testimonial-card-lg .stars {
    color: var(--gold);
    font-size: 0.78rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.quote-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px !important;
}
.quote-more {
    position: relative;
    z-index: 2;
    display: inline-block;
    color: var(--gold-dark);
    font-size: 0.86rem;
    font-weight: 600;
    margin-bottom: 14px;
    padding: 6px 0;
    align-self: flex-start;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}
.quote-more:hover { color: var(--gold); }

/* Mobile offcanvas menu */
.mobile-menu {
    background: #0d0e10;
    color: #fff;
    width: min(360px, 92vw);
}
.mobile-menu .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 20px;
}
.mobile-menu-logo img {
    height: 56px;
    width: auto;
}
.mobile-menu-nav {
    gap: 2px;
    margin-bottom: 28px;
}
.mobile-menu-nav .nav-link {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-menu-nav .nav-link:hover,
.mobile-menu-nav .nav-link.active { color: var(--gold); }
.mobile-menu-info {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    color: #a8adb4;
    font-size: 0.9rem;
}
.mobile-menu-info a { color: #fff; }
.mobile-menu-info p { margin-bottom: 8px; }
.mobile-menu-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
}
.btn-wa,
.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.88rem;
    color: #fff;
}
.btn-wa { background: #25d366; }
.btn-call { background: var(--gold); }
.btn-wa:hover,
.btn-call:hover { color: #fff; filter: brightness(1.05); }

.plan-stay { display: none; }

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-bg { animation: none; }
    .marquee-track { animation: none; }
    .room-card-img img,
    .galeri-item img,
    .service-card-lg .service-img img { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
    .rooms-home-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .brand-logo { height: 52px; }
    .brand-logo--footer { height: 72px; }

    .hero {
        min-height: 100svh;
        min-height: 100dvh;
        height: 100svh;
        height: 100dvh;
        padding: 96px 0 28px;
        align-items: stretch;
        box-sizing: border-box;
    }
    .hero-inner {
        flex: 1;
        height: 100%;
        gap: 18px;
        width: 100%;
        max-width: 100%;
        justify-content: flex-end;
    }
    .hero-copy {
        max-width: none;
        width: 100%;
        padding-right: 0;
    }
    .hero h1 {
        max-width: none;
        font-size: clamp(1.55rem, 6vw, 2.1rem);
        margin-bottom: 14px;
    }
    .hero-actions {
        width: auto;
        max-width: 100%;
        flex-direction: row;
        align-items: flex-start;
        align-self: flex-start;
        gap: 14px;
    }
    .hero-call {
        width: auto;
        max-width: 100%;
        box-sizing: border-box;
        align-self: flex-start;
    }
    /* Print House–style mobile booking card */
    .hero-book {
        width: 100%;
        max-width: 100%;
        overflow: visible;
        padding: 4px 14px 14px;
        background: rgba(18, 18, 18, 0.94);
        border: 1px solid rgba(197, 146, 94, 0.55);
        border-radius: 18px;
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }
    .hero-book-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        width: 100%;
        min-width: 0;
        align-items: stretch;
    }
    .hero-field--cocuk {
        display: none;
    }
    .hero-field--giris,
    .hero-field--cikis,
    .hero-field--yetiskin,
    .hero-field--room {
        min-width: 0;
        padding: 14px 12px 14px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .hero-field--giris,
    .hero-field--yetiskin {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
        padding-right: 14px;
    }
    .hero-field--cikis,
    .hero-field--room {
        padding-left: 14px;
    }
    .hero-field--submit {
        grid-column: 1 / -1;
        padding: 16px 0 0;
        display: block;
    }
    .hero-book .form-label {
        color: #c5925e;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        margin-bottom: 8px;
    }
    .hero-book .form-control,
    .hero-book .form-select {
        background: transparent;
        border: 0;
        border-radius: 0;
        color: #fff;
        font-size: 0.98rem;
        font-weight: 600;
        min-height: 28px;
        padding: 0 28px 0 0;
        box-shadow: none;
    }
    .hero-book .form-control:focus,
    .hero-book .form-select:focus {
        background: transparent;
        border: 0;
        box-shadow: none;
        color: #fff;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 0 center;
        background-size: 12px 8px;
    }
    .hero-book .form-select {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 0 center;
        background-size: 12px 8px;
        padding-right: 22px;
    }
    .hero-input i {
        right: 2px;
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.9rem;
    }
    .btn-hero-submit {
        width: 100%;
        min-width: 0;
        min-height: 48px;
        border-radius: 999px;
        background: #c5925e;
        border-color: #c5925e;
        color: #fff;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        justify-content: center;
        padding-inline: 18px;
        white-space: nowrap;
    }
    .btn-hero-submit:hover {
        background: #b4824f;
        border-color: #b4824f;
        color: #fff;
    }

    .experience-card {
        grid-template-columns: 1fr;
        gap: 0;
        background: #16181b;
        border-radius: 22px;
        overflow: hidden;
    }
    .section-experience {
        padding: 48px 0;
        background: var(--cream);
    }
    .experience-photo {
        aspect-ratio: 16 / 9;
        min-height: 0;
        max-height: 220px;
        border-radius: 0;
    }
    .experience-photo img {
        position: absolute;
        inset: 0;
        min-height: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .experience-body {
        padding: 24px 20px 28px;
        gap: 20px;
        justify-content: flex-start;
    }
    .experience-stats {
        padding-top: 18px;
        margin-top: 0;
    }

    .about-media {
        min-height: 0;
        margin-bottom: 8px;
        width: 100%;
    }
    .about-media .img-main {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 4 / 3;
        height: auto;
    }
    .about-media .img-accent { display: none; }
    .about-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .about-actions .btn,
    .about-actions .hero-call {
        width: 100%;
        justify-content: flex-start;
    }

    .rooms-home-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .galeri-wrap {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }
    .galeri-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
    .detay-galeri-main { height: 280px; }
    .section { padding: 64px 0; }
    .section-title h2 { font-size: clamp(1.45rem, 5vw, 1.9rem); }
    .page-header { padding: 100px 0 48px; }
    .harita-wrap { min-height: 280px; }
    .harita-wrap iframe { height: 280px; }
    .footer-bottom .container {
        text-align: center;
    }
    .oda-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .lightbox { padding: 12px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-close { top: 10px; right: 10px; }
    .lightbox-inner img { max-height: calc(100vh - 100px); }

    .brand-logo { height: 44px; }
    .main-navbar { padding: 12px 0; }
    .page-home .main-navbar { padding: 12px 0; }
    .page-home .main-navbar.is-solid { padding: 10px 0; }

    .hero {
        min-height: 100svh;
        min-height: 100dvh;
        height: 100svh;
        height: 100dvh;
        padding: 88px 0 24px;
    }
    .hero h1 { font-size: 1.45rem; line-height: 1.2; }
    .hero-book { padding: 2px 12px 12px; border-radius: 16px; }
    .hero-field--giris,
    .hero-field--cikis,
    .hero-field--yetiskin,
    .hero-field--room {
        padding-top: 12px;
        padding-bottom: 12px;
    }
    .hero-book .form-control,
    .hero-book .form-select {
        font-size: 0.9rem;
        min-height: 26px;
    }
    .btn-hero-submit {
        min-height: 46px;
        font-size: 0.74rem;
        padding-inline: 16px;
    }

    .rooms-home-grid { grid-template-columns: 1fr; }
    .btn-rooms-all { min-width: 100%; width: 100%; }

    .testimonials-row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    .testimonial-card-lg { padding: 20px 16px; }
    .quote-clamp { font-size: 0.9rem; }

    .experience-stats { gap: 10px; }
    .experience-stats .stat-item .num { font-size: 1.5rem; }

    .amenity-item-lg { padding: 18px 14px; }
    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 52px;
        height: 52px;
    }

    .detay-galeri-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .detay-fiyat-kutu { position: static; }

    .header-bar {
        flex-wrap: nowrap;
        width: 100%;
    }
    .navbar-brand { max-width: calc(100% - 56px); }
    .brand-logo { max-width: 100%; height: auto; max-height: 44px; }
}
