/* ============================================================
   URFATARIH.COM — Sıcak Anadolu Teması
   Palet: Krem · Terracotta · Bal Sarısı · Sıcak Ahşap
   ============================================================ */

:root {
    /* Zeminler */
    --cream:       #FAF5EA;
    --paper:       #FFFFFF;
    --paper-warm:  #FDF8EC;
    --section-2:   #F2E9D5;

    /* Sınırlar */
    --border:      #E6D9BD;
    --border-dk:   #D4C49E;

    /* Terracotta — birincil sıcak vurgu */
    --terra:       #B85838;
    --terra-lt:    #CF6E4C;
    --terra-dk:    #934327;
    --terra-soft:  #F5DCCC;

    /* Bal sarısı */
    --gold:        #D4A04A;
    --gold-lt:     #E5B560;
    --gold-dk:     #AC8030;

    /* Yumuşak yeşil (ikincil aksesuar) */
    --sage:        #5E7E78;

    /* Metin */
    --ink:         #2A1810;
    --ink-2:       #5A4530;
    --ink-3:       #8E755A;
    --muted:       #A89A82;

    /* Koyu panel — sıcak ahşap kahve */
    --wood:        #2D1E14;
    --wood-lt:     #3D2E22;
    --wood-2:      #4F3D2D;
    --wood-gold:   rgba(212,160,74,0.25);

    --sidebar-width: 275px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Roboto', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ============================================================
   SPLASH EKRANI
   ============================================================ */
.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--wood);
    background-image:
        radial-gradient(circle at 50% 35%, rgba(212,160,74,0.10) 0%, transparent 55%),
        radial-gradient(circle at 50% 100%, rgba(184,88,56,0.12) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.splash-screen.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-pillar {
    width: 78px;
    color: var(--gold);
    opacity: 0;
    transform: translateY(20px);
    animation: splashRise 1s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.15s;
    margin-bottom: 30px;
    filter: drop-shadow(0 8px 20px rgba(212,160,74,0.2));
}

.splash-pillar svg { width: 100%; height: auto; display: block; }

@keyframes splashRise {
    to { opacity: 1; transform: translateY(0); }
}

.splash-brand {
    font-family: 'Roboto', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    opacity: 0;
    animation: splashFadeUp 0.7s ease forwards 0.95s;
    margin-bottom: 6px;
    text-transform: lowercase;
}

.splash-brand em {
    font-style: normal;
    color: var(--gold);
}

.splash-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
    opacity: 0;
    animation: splashFadeUp 0.7s ease forwards 1.3s;
    margin-bottom: 42px;
    text-align: center;
    padding: 0 24px;
}

.splash-progress {
    width: 140px;
    height: 2px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
    animation: splashFadeUp 0.4s ease forwards 0.6s;
}

.splash-progress-inner {
    height: 100%;
    background: linear-gradient(to right, var(--gold-dk), var(--gold), var(--gold-lt));
    width: 0;
    animation: splashBar 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.6s;
}

@keyframes splashFadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes splashBar {
    to { width: 100%; }
}

/* ============================================================
   MOBİL MENÜ OVERLAY
   ============================================================ */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: var(--wood);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-overlay.open { transform: translateX(0); }

.mob-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}

.mob-menu-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mob-menu-logo img {
    height: 36px;
    width: auto;
}

.mob-menu-logo .brand-name {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    text-transform: lowercase;
}

.mob-menu-logo .brand-name em {
    font-style: normal;
    color: var(--gold);
}

.mob-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: none;
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.mob-close-btn:hover { background: rgba(255,255,255,0.15); }

.mob-nav-list {
    list-style: none;
    padding: 1.5rem 0;
    flex-grow: 1;
}

.mob-nav-list li { border-bottom: 1px solid rgba(255,255,255,0.05); }

.mob-nav-list a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 22px;
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
}

.mob-nav-list a i {
    width: 20px;
    text-align: center;
    color: var(--gold);
    font-size: 0.9rem;
}

.mob-nav-list a:hover { color: #fff; background: rgba(255,255,255,0.04); }
.mob-nav-list a.active { color: var(--gold); }

.mob-menu-footer {
    padding: 20px 22px;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mob-lang a {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.35);
    padding: 0 6px;
    transition: color 0.2s;
}

.mob-lang a.active { color: var(--gold); }

.mob-social a {
    color: rgba(255,255,255,0.35);
    font-size: 1rem;
    margin-left: 14px;
    transition: color 0.2s;
}

.mob-social a:hover { color: var(--gold); }

/* ============================================================
   MOBİL ALT NAVİGASYON
   ============================================================ */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--wood);
    border-top: 1px solid rgba(212,160,74,0.18);
    z-index: 1050;
    align-items: stretch;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.bot-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: rgba(255,255,255,0.45);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
    padding: 6px 4px;
    position: relative;
}

.bot-nav-item i { font-size: 1.1rem; }

.bot-nav-item.active { color: var(--gold); }
.bot-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0; left: 22%; right: 22%;
    height: 2px;
    background: var(--gold);
    border-radius: 0 0 2px 2px;
}

.bot-nav-item:hover { color: rgba(255,255,255,0.78); }

/* ============================================================
   SOL MENÜ — MASAÜSTÜ
   ============================================================ */
.main-sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--wood);
    background-image: linear-gradient(180deg, var(--wood) 0%, #261810 100%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-right: 1px solid rgba(212,160,74,0.18);
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem 1.75rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.brand-logo img {
    height: 72px;
    width: auto;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 12px rgba(212,160,74,0.15));
}

.brand-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    color: #fff;
    text-transform: lowercase;
}

.brand-text span { color: var(--gold); }

.side-menu {
    list-style: none;
    padding: 1.25rem 0;
    margin: 0;
    flex-grow: 1;
}

.side-menu li { margin: 0; }

.side-menu .nav-link {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 11px 24px;
    color: rgba(255,255,255,0.82);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    border-left: 2px solid transparent;
}

.side-menu .nav-link i {
    width: 16px;
    text-align: center;
    font-size: 0.78rem;
    flex-shrink: 0;
    color: rgba(255,255,255,0.55);
    transition: color 0.25s;
}

.side-menu .nav-link:hover {
    color: rgba(255,255,255,0.95);
    background: rgba(255,255,255,0.05);
    border-left-color: rgba(212,160,74,0.5);
}

.side-menu .nav-link:hover i { color: var(--gold); }

.side-menu .nav-link.active {
    color: var(--gold);
    border-left-color: var(--gold);
    background: rgba(212,160,74,0.08);
}

.side-menu .nav-link.active i { color: var(--gold); }

.sidebar-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 0 1.5rem 1.5rem;
    flex-shrink: 0;
}

.sidebar-quote {
    padding: 0 1.5rem 1.5rem;
    flex-shrink: 0;
}

.sidebar-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    margin: 0;
    padding-left: 12px;
    border-left: 2px solid rgba(212,160,74,0.55);
}

.sidebar-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.lang-toggle {
    display: flex;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.lang-toggle a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.lang-toggle a.active { color: var(--gold); }
.lang-toggle a:hover { color: rgba(255,255,255,0.75); }
.lang-toggle span { color: rgba(255,255,255,0.15); }

.social-links { display: flex; gap: 14px; }
.social-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    transition: color 0.2s;
}
.social-links a:hover { color: var(--gold); }

/* ============================================================
   WRAPPER & MOBİL ÜST NAV
   ============================================================ */
.main-wrapper { margin-left: var(--sidebar-width); }

.mobile-top-nav {
    display: none;
    background: var(--paper-warm);
    padding: 0 18px;
    height: 58px;
    position: sticky;
    top: 0;
    z-index: 1051;
    border-bottom: 1px solid rgba(212,160,74,0.2);
    align-items: center;
    justify-content: space-between;
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-brand img {
    height: 36px;
    width: auto;
}

.mobile-brand .brand-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    text-transform: lowercase;
    letter-spacing: 0.3px;
}

.mobile-brand .brand-name em {
    font-style: normal;
    color: var(--gold);
}

.mobile-menu-btn {
    background: transparent;
    border: 1px solid rgba(45,30,20,0.15);
    color: var(--wood);                  /* ikonu koyuya çevir */
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: 0.2s;
}
.mobile-menu-btn:hover {
    background: rgba(45,30,20,0.05);
    border-color: var(--gold);
    color: var(--gold-dk);
}

@media (max-width: 991px) {
    .main-sidebar { display: none; }
    .main-wrapper { margin-left: 0; padding-bottom: 64px; }
    .mobile-top-nav { display: flex; }
    .mobile-bottom-nav { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
    background:
        linear-gradient(
            105deg,
            rgba(45,30,20,0.78) 0%,
            rgba(45,30,20,0.40) 55%,
            rgba(45,30,20,0.10) 100%
        ),
        url('/assets/frontend/img/hero-gobeklitepe.webp')
        center / cover no-repeat;
    min-height: 540px;
    display: flex;
    align-items: center;
    padding: 5rem 0 4rem;
    position: relative;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,160,74,0.2);
    border: 1px solid rgba(212,160,74,0.45);
    color: var(--gold-lt);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 1.4rem;
}

.hero-eyebrow i { font-size: 0.5rem; }

.hero-title {
    font-size: clamp(2.7rem, 5.8vw, 4.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1.1rem;
    letter-spacing: -0.5px;
}

.hero-title em {
    font-style: normal;
    color: var(--gold-lt);
}

.hero-sub {
    font-size: 0.98rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    margin-bottom: 0.4rem;
    max-width: 440px;
    font-weight: 300;
}

.hero-sub-en {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.42);
    letter-spacing: 0.3px;
    margin-bottom: 2rem;
    max-width: 440px;
    font-style: italic;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--terra);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 6px 20px rgba(184,88,56,0.35);
}

.btn-gold:hover {
    background: var(--terra-lt);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(184,88,56,0.45);
}

.btn-outline-light-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,0.85);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Roboto', sans-serif;
}

.btn-outline-light-hero:hover {
    color: #fff;
    border-color: var(--gold);
    background: rgba(212,160,74,0.1);
}

.hero-quick-tags {
    display: flex;
    gap: 8px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-quick-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.72);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.hero-quick-tag:hover {
    background: rgba(212,160,74,0.22);
    border-color: rgba(212,160,74,0.5);
    color: var(--gold-lt);
}

.hero-quick-tag i { font-size: 0.7rem; color: var(--gold-lt); }

/* ============================================================
   LANDMARK STRIP
   ============================================================ */
.landmark-strip {
    background: var(--wood-lt);
    border-bottom: 1px solid rgba(212,160,74,0.15);
}

.landmark-inner {
    display: flex;
    align-items: center;
    height: 48px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.landmark-inner::-webkit-scrollbar { display: none; }

.lm-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    padding-right: 16px;
    border-right: 1px solid rgba(255,255,255,0.1);
    margin-right: 4px;
    flex-shrink: 0;
}

.lm-list {
    display: flex;
    align-items: center;
}

.lm-item {
    display: flex;
    align-items: center;
    height: 48px;
    padding: 0 15px;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    white-space: nowrap;
    letter-spacing: 0.3px;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s;
    flex-shrink: 0;
}

.lm-item:last-child { border-right: none; }
.lm-item:hover { color: var(--gold-lt); }

/* ============================================================
   KATEGORİ KARTLARI
   ============================================================ */
.cats-section {
    background: var(--paper);
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}

.cats-scroll-wrap {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.cats-scroll-wrap::-webkit-scrollbar { display: none; }

.cat-col {
    flex: 0 0 calc(33.333% - 12px);
    scroll-snap-align: start;
    min-width: 240px;
}

@media (max-width: 767px) {
    .cat-col { flex: 0 0 78vw; }
}

.cat-card {
    position: relative;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    box-shadow: 0 4px 18px rgba(45,30,20,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(45,30,20,0.18);
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    filter: brightness(0.78) saturate(1.05);
}

.cat-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.88) saturate(1.1);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(45,30,20,0.92) 0%,
        rgba(45,30,20,0.15) 55%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px 20px;
    color: #fff;
}

.cat-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(212,160,74,0.25);
    border: 1px solid rgba(212,160,74,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    color: var(--gold-lt);
    margin-bottom: 10px;
    transition: all 0.3s;
}

.cat-card:hover .cat-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: scale(1.08);
}

.cat-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
    line-height: 1.15;
}

.cat-overlay small {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.62);
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* ============================================================
   İSTATİSTİK ÇUBUĞU — TERRACOTTA
   ============================================================ */
.stats-bar {
    background: var(--terra);
    background-image: linear-gradient(135deg, var(--terra-dk) 0%, var(--terra) 50%, var(--terra-lt) 100%);
    padding: 2.25rem 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.stat-block {
    text-align: center;
    padding: 0.5rem;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold-lt);
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.stat-lbl {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
}

/* ============================================================
   BÖLÜM BAŞLIKLARI
   ============================================================ */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 14px;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.section-title-link {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--terra);
    white-space: nowrap;
    transition: color 0.2s;
    flex-shrink: 0;
}

.section-title-link:hover { color: var(--terra-lt); }

/* ============================================================
   MEKAN KARTLARI
   ============================================================ */
.place-card {
    background: var(--paper);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(45,30,20,0.04);
}

.place-card:hover {
    box-shadow: 0 14px 38px rgba(45,30,20,0.12);
    border-color: rgba(212,160,74,0.45);
    transform: translateY(-5px);
}

.card-img-box {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.place-card:hover .card-img-box img { transform: scale(1.06); }

.card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--terra);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(184,88,56,0.35);
}

.bookmark-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.95);
    color: var(--ink-2);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.bookmark-btn:hover { background: var(--terra); color: #fff; }

.card-body-custom {
    padding: 16px 18px 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.floating-stats { display: none; }

.card-title-custom {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.32;
}

.card-loc {
    font-size: 0.72rem;
    color: var(--ink-3);
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-loc i { color: var(--terra); font-size: 0.7rem; }

.card-stats {
    display: flex;
    gap: 14px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--ink-3);
}

.card-stats i { margin-right: 3px; }
.stat-hot { color: var(--terra); }

.watermark-number {
    position: absolute;
    bottom: -12px;
    right: 6px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.8rem;
    font-weight: 700;
    color: rgba(184,88,56,0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    transition: 0.3s ease;
}

.place-card:hover .watermark-number { color: rgba(212,160,74,0.12); }

/* ============================================================
   BLOG KARTLARI
   ============================================================ */
.blog-card {
    background: var(--paper);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(45,30,20,0.04);
}

.blog-card:hover {
    box-shadow: 0 14px 38px rgba(45,30,20,0.12);
    border-color: rgba(212,160,74,0.45);
    transform: translateY(-5px);
}

.blog-img-box {
    height: 185px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.blog-card:hover .blog-img-box img { transform: scale(1.06); }

.blog-body {
    padding: 16px 18px 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 8px;
}

.blog-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ink);
    line-height: 1.4;
    flex-grow: 1;
    margin-bottom: 0;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--ink-3);
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.blog-author img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

/* ============================================================
   REKLAM ALANLARI
   ============================================================ */
.ad-banner {
    background: var(--section-2);
    border: 1px dashed var(--border-dk);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--ink-3);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    gap: 4px;
}

.ad-horizontal { height: 95px; width: 100%; }
.ad-vertical   { height: 580px; width: 100%; margin-bottom: 20px; }

/* ============================================================
   BİLGİ WİDGETI
   ============================================================ */
.fact-widget {
    background: var(--wood);
    background-image: linear-gradient(160deg, var(--wood-lt) 0%, var(--wood) 100%);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 22px;
    border: 1px solid rgba(212,160,74,0.18);
}

.fact-widget-head {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
}

.fact-widget-head i { color: var(--gold-lt); }

.fact-widget-body { padding: 16px 18px 18px; }

.fact-widget-body p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 14px;
}

.fact-link {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-lt);
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.fact-link:hover { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-teal {
    background: var(--wood);
    background-image: linear-gradient(180deg, var(--wood) 0%, #1F140C 100%);
    color: rgba(255,255,255,0.88);
    padding: 56px 0 28px;
    margin-top: 64px;
    border-top: 2px solid rgba(212,160,74,0.3);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-brand img {
    height: 44px;
    width: auto;
}

.footer-brand .brand-name {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    text-transform: lowercase;
}

.footer-brand .brand-name em {
    font-style: normal;
    color: var(--gold);
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.38);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.footer-contact li {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.78);
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-contact i { color: var(--gold); font-size: 0.72rem; width: 13px; flex-shrink: 0; }

.footer-social a {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    margin-right: 14px;
    transition: color 0.2s;
}

.footer-social a:hover { color: var(--gold); }

.footer-heading {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.78); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-lt); }

.footer-about {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.78;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 22px;
    margin-top: 42px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
}

.footer-bottom a { color: var(--gold); font-weight: 700; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold-lt); }

/* ============================================================
   MEKAN DETAY SAYFASI
   ============================================================ */

/* --- 360° / Panorama Hero --- */
.hero-360-section {
    position: relative;
    width: 100%;
    height: 62vh;
    min-height: 440px;
    max-height: 680px;
    background: var(--wood);
    overflow: hidden;
}

.hero-360-scroll {
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.hero-360-scroll.dragging { cursor: grabbing; }

.hero-360-scroll img {
    height: 100%;
    width: auto;
    max-width: none;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.hero-360-scroll::-webkit-scrollbar { height: 8px; }
.hero-360-scroll::-webkit-scrollbar-track { background: rgba(0,0,0,0.4); }
.hero-360-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

.hero-360-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.hero-360-fallback {
    background-size: cover;
    background-position: center;
}

.hero-360-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45,30,20,0.55), rgba(45,30,20,0.08));
    pointer-events: none;
}

.hero-360-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    background: rgba(45,30,20,0.82);
    color: var(--gold-lt);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212,160,74,0.35);
    z-index: 5;
}

.hero-360-hint {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(45,30,20,0.78);
    color: rgba(255,255,255,0.88);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    animation: hintPulse 2.5s ease-in-out infinite;
    z-index: 5;
}

@keyframes hintPulse {
    0%, 100% { opacity: 0.85; transform: translateX(-50%) translateY(0); }
    50%      { opacity: 1;    transform: translateX(-50%) translateY(-3px); }
}

.hero-360-tour-btn {
    position: absolute;
    bottom: 22px;
    right: 22px;
    background: var(--terra);
    color: #fff !important;
    padding: 11px 20px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(184,88,56,0.5);
    transition: all 0.22s;
    z-index: 5;
}

.hero-360-tour-btn:hover {
    transform: translateY(-2px);
    background: var(--terra-lt);
    box-shadow: 0 10px 26px rgba(184,88,56,0.6);
}

@media (max-width: 767px) {
    .hero-360-section { height: 48vh; min-height: 320px; }
    .hero-360-badge   { top: 14px; left: 14px; font-size: 0.62rem; padding: 6px 11px; }
    .hero-360-hint    { font-size: 0.62rem; padding: 6px 12px; bottom: 14px; }
    .hero-360-tour-btn{ bottom: 14px; right: 14px; padding: 9px 14px; font-size: 0.62rem; }
}

/* --- Başlık + Öner/Önermem Bölümü --- */
.place-info-section {
    background: var(--cream);
    padding: 24px 0 30px;
    border-bottom: 1px solid var(--border);
}

.place-breadcrumb-inline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    font-size: 0.75rem;
    color: var(--ink-3);
    margin-bottom: 18px;
}

.place-breadcrumb-inline a {
    color: var(--ink-3);
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.place-breadcrumb-inline a:hover { color: var(--terra); }
.place-breadcrumb-inline .sep { color: var(--border-dk); }
.place-breadcrumb-inline .active { color: var(--ink); font-weight: 600; }

.place-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}

.place-title-col { flex: 1 1 360px; min-width: 0; }
.place-recommend-col { flex: 0 1 420px; }

@media (max-width: 991px) {
    .place-recommend-col { flex: 1 1 100%; }
}

.place-info-tag {
    display: inline-block;
    background: var(--terra-soft);
    color: var(--terra-dk);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.place-info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.1;
    margin: 0 0 12px;
    letter-spacing: -0.3px;
}

.place-info-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--ink-2);
}

.place-info-meta i { color: var(--terra); margin-right: 4px; }
.place-info-meta .meta-sep { color: var(--border-dk); }

/* --- Öner/Önermem Widget --- */
.recommend-widget {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 4px 18px rgba(45,30,20,0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.recommend-stat {
    display: flex;
    align-items: center;
    gap: 14px;
}

.recommend-percent {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--terra);
    line-height: 1;
    display: flex;
    align-items: baseline;
}

.recommend-percent small {
    font-size: 1.1rem;
    color: var(--terra-lt);
    margin-left: 2px;
}

.recommend-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
}

.recommend-label small {
    display: block;
    font-weight: 500;
    color: var(--ink-3);
    font-size: 0.7rem;
    margin-top: 2px;
}

.recommend-bar-wrap { padding: 0 2px; }

.recommend-bar {
    height: 6px;
    background: var(--paper-warm);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.recommend-bar-fill {
    height: 100%;
    background: linear-gradient(to right, var(--gold-dk), var(--gold), var(--terra));
    border-radius: 3px;
    transition: width 0.6s ease;
}

.recommend-buttons {
    display: flex;
    gap: 10px;
}

.rec-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    background: var(--paper);
    border-radius: 9px;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink-2);
    transition: all 0.2s;
    font-family: 'Roboto', sans-serif;
}

.rec-btn i { font-size: 0.95rem; }

.rec-yes:hover {
    background: #EDF7E6;
    border-color: #7DAB3F;
    color: #4F7A22;
}
.rec-yes.active {
    background: #7DAB3F;
    border-color: #7DAB3F;
    color: #fff;
}

.rec-no:hover {
    background: var(--terra-soft);
    border-color: var(--terra);
    color: var(--terra-dk);
}
.rec-no.active {
    background: var(--terra);
    border-color: var(--terra);
    color: #fff;
}

/* --- Aksiyon Çubuğu --- */
.place-action-bar {
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 18px rgba(45,30,20,0.05);
}
@media (max-width: 991px) {
    .place-action-bar { top: 58px; }
}

.action-bar-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 58px;
}

.action-tabs {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-grow: 1;
    overflow-x: auto;
    scrollbar-width: none;
}
.action-tabs::-webkit-scrollbar { display: none; }

.action-tabs a {
    color: var(--ink-2);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.2s;
    position: relative;
}

.action-tabs a:hover { background: var(--paper-warm); color: var(--terra); }
.action-tabs a.active { color: var(--terra); }

.action-tabs a.active::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 14px; right: 14px;
    height: 2px;
    background: var(--terra);
    border-radius: 2px 2px 0 0;
}

.action-buttons { display: flex; gap: 8px; flex-shrink: 0; }

.act-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--paper-warm);
    color: var(--ink-2);
    border: 1px solid var(--border);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 9px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    white-space: nowrap;
}

.act-btn:hover {
    background: var(--terra-soft);
    border-color: var(--terra);
    color: var(--terra-dk);
}

.act-btn-primary { background: var(--terra); border-color: var(--terra); color: #fff; }
.act-btn-primary:hover { background: var(--terra-lt); border-color: var(--terra-lt); color: #fff; }

@media (max-width: 575px) {
    .action-buttons .act-btn span { display: none; }
    .action-buttons .act-btn { width: 38px; height: 38px; padding: 0; justify-content: center; }
}

/* --- Quick Facts --- */
.quick-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 2.5rem;
    padding: 20px;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 14px;
}
@media (max-width: 767px) { .quick-facts { grid-template-columns: repeat(2, 1fr); } }

.qf-item { display: flex; align-items: center; gap: 12px; }
.qf-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: var(--terra-soft);
    color: var(--terra);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.qf-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 2px;
}
.qf-value { font-size: 0.88rem; font-weight: 700; color: var(--ink); line-height: 1.2; }
.qf-value small { font-weight: 500; color: var(--ink-3); font-size: 0.72rem; }

/* --- Bölüm --- */
.place-section { margin-bottom: 2.8rem; scroll-margin-top: 80px; }

.section-title .title-en {
    font-family: 'Roboto', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--terra);
    margin-left: 8px;
    align-self: flex-end;
    padding-bottom: 5px;
}

.place-description { font-size: 0.98rem; line-height: 1.85; color: var(--ink-2); }
.place-description p { margin-bottom: 1.1em; }
.place-description h2, .place-description h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--ink);
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}
.place-description a { color: var(--terra); border-bottom: 1px dotted var(--terra); }
.place-description blockquote {
    border-left: 3px solid var(--gold);
    padding: 0.5em 1.2em;
    margin: 1.4em 0;
    font-style: italic;
    color: var(--ink-2);
    background: var(--paper-warm);
    border-radius: 0 8px 8px 0;
}

/* --- Video --- */
.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--wood);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(45,30,20,0.15);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* --- Bento Galeri --- */
/* ============================================================
   GALERİ — Bento yerine eşit grid (4:3 her hücre)
   ============================================================ */
.gallery-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (max-width: 991px) {
    .gallery-bento { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 575px) {
    .gallery-bento { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

.gb-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    background: var(--paper-warm);
    box-shadow: 0 4px 14px rgba(45,30,20,0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gb-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(45,30,20,0.18);
    z-index: 2;
}
.gb-item:hover img { transform: scale(1.07); }

.gb-caption {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45,30,20,0.92), rgba(45,30,20,0) 55%);
    display: flex;
    align-items: flex-end;
    padding: 14px;
    opacity: 0;
    transition: opacity 0.3s;
}
.gb-item:hover .gb-caption { opacity: 1; }
.gb-caption span {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.45;
}

.gb-zoom {
    position: absolute;
    top: 12px; right: 12px;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: var(--terra);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.25s, transform 0.25s;
}
.gb-item:hover .gb-zoom { opacity: 1; transform: scale(1); }

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20,12,8,0.96);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px 80px;
    animation: lbFade 0.25s ease;
    /* Mobil swipe için touch davranışını kontrol et */
    touch-action: pan-y;
}
.lightbox.open { display: flex; }

@keyframes lbFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.lb-content {
    max-width: 95vw;
    max-height: 92vh;
    text-align: center;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}

.lb-content img {
    max-width: 100%;
    max-height: 78vh;
    width: auto;       /* ← EKLE */
    height: auto;      /* ← EKLE */
    display: block;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
    object-fit: contain;   /* ← EKLE */
    pointer-events: none;
    -webkit-user-drag: none;
}

.lb-info { margin-top: 16px; }

.lb-count {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.lb-caption {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.88);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.55;
}

.lb-close, .lb-nav {
    position: absolute;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    backdrop-filter: blur(6px);
}

.lb-close { top: 24px; right: 24px; }
.lb-prev  { left: 28px;  top: 50%; transform: translateY(-50%); }
.lb-next  { right: 28px; top: 50%; transform: translateY(-50%); }

.lb-close:hover { background: rgba(255,255,255,0.18); transform: rotate(90deg); }
.lb-prev:hover,
.lb-next:hover  { background: var(--terra); border-color: var(--terra); }
.lb-prev:hover  { transform: translateY(-50%) translateX(-3px); }
.lb-next:hover  { transform: translateY(-50%) translateX(3px);  }

@media (max-width: 767px) {
    .lightbox {
        padding: 8px;
    }

    .lb-content {
        max-width: 100%;
    }

    .lb-content img {
        max-height: 70vh;
    }

    .lb-caption {
        font-size: 0.9rem;
    }

    .lb-info {
        margin-top: 10px;
    }

    /* Close butonu — sağ üst köşe */
    .lb-close {
        top: 14px;
        right: 14px;
        width: 42px;
        height: 42px;
        z-index: 100;
        background: rgba(0,0,0,0.55);
        border-color: rgba(255,255,255,0.4);
    }

    /* Önceki/sonraki — görselin üzerinde, dikey ortada,
       koyu arka plan + backdrop blur ile her zaman görünür */
    .lb-prev,
    .lb-next {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        z-index: 100;
        background: rgba(0,0,0,0.55);
        border: 1px solid rgba(255,255,255,0.4);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        font-size: 0.95rem;
        box-shadow: 0 4px 14px rgba(0,0,0,0.5);
    }
    .lb-prev { left: 10px; }
    .lb-next { right: 10px; }

    /* Mobilde hover yok — translate animasyonu sıfırla */
    .lb-prev:hover,
    .lb-next:hover {
        background: var(--terra);
        transform: translateY(-50%);
    }

    /* Aktif (basıldığı) anda küçük animasyon */
    .lb-prev:active,
    .lb-next:active {
        transform: translateY(-50%) scale(0.92);
    }
}

/* z-index hiyerarşisini tüm boyutlar için sabitle */
.lb-content { z-index: 1; }
.lb-close,
.lb-prev,
.lb-next { z-index: 100; }

/* Swipe sırasında görsel kayma efekti */
.lb-content.swiping img {
    transition: transform 0.05s linear;
}

/* --- Sidebar Bilgi Kartı (aynı) --- */
.place-sidebar { display: flex; flex-direction: column; gap: 18px; }

.info-card {
    background: var(--paper);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(45,30,20,0.05);
}

.info-card-map { height: 180px; background: var(--paper-warm); position: relative; }
.info-card-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.info-card-map-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--border-dk);
    font-size: 2.5rem;
}

.info-card-body { padding: 18px; }
.info-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.info-card-title small {
    font-family: 'Roboto', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--terra);
}

.info-card-text {
    font-size: 0.82rem;
    color: var(--ink-2);
    line-height: 1.55;
    margin-bottom: 14px;
    display: flex;
    gap: 8px;
}
.info-card-text i { color: var(--terra); flex-shrink: 0; margin-top: 3px; }

.tips-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tips-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 0.83rem;
    color: var(--ink-2);
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--border);
}
.tips-list li:last-child { border-bottom: none; padding-bottom: 0; }
.tips-list li i { color: var(--terra); width: 16px; text-align: center; flex-shrink: 0; }
.tips-list li strong { color: var(--ink); font-weight: 600; }

/* --- Benzer Mekanlar --- */
.related-section {
    background: var(--paper-warm);
    padding: 3.5rem 0 3rem;
    border-top: 1px solid var(--border);
    margin-top: 2rem;
}

/* ===========================================
   LAYER (Z-INDEX) HİYERARŞİSİ — Referans
   splash:       99999  (oturumun ilk yüklemesi)
   lightbox:      9999  (galeri büyüt)
   mobile menu:   9998  (hamburger overlay)
   sidebar:       1000  (desktop sol menü)
   mobile-top-nav: 999  (sticky üst bar)
   mobile-bottom-nav: 997
   action-bar:     100  (sticky kategori sekme bar)
   =========================================== */

/* Splash'i flicker'sız kapat — header'daki script html.splash-seen ekliyor */
html.splash-seen .splash-screen { display: none !important; }

/* Galeri ile Benzer Mekanlar arası yatay reklam */
.ad-strip-section {
    padding: 0 0 48px 0;
}
.ad-banner.ad-horizontal-wide {
    width: 100%;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(212,160,74,0.04),
            rgba(212,160,74,0.04) 12px,
            rgba(212,160,74,0.08) 12px,
            rgba(212,160,74,0.08) 24px
        ),
        var(--paper);
    border: 1px dashed rgba(212,160,74,0.4);
    border-radius: 10px;
    color: var(--gold-dk);
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.ad-banner.ad-horizontal-wide small {
    font-size: 0.65rem;
    opacity: 0.6;
    letter-spacing: 0.08em;
}
@media (max-width: 768px) {
    .ad-strip-section { padding-bottom: 32px; }
    .ad-banner.ad-horizontal-wide { min-height: 90px; font-size: 0.7rem; }
}

/* Sticky sidebar mobilde sıkıntı yaratmasın — sadece desktop'ta sticky */
@media (max-width: 991px) {
    .place-sidebar.sticky-top {
        position: static !important;
        top: auto !important;
    }
}

/* ============================================================
   BLOG DETAY — Tipografi odaklı okuma sayfası
   ============================================================ */

/* Hero */
.blog-hero {
    position: relative;
    width: 100%;
    height: 56vh;
    min-height: 360px;
    overflow: hidden;
    background: var(--wood);
    color: #fff;
}
.blog-hero-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}
.blog-hero-shade {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(45,30,20,0.35) 0%,
        rgba(45,30,20,0.65) 60%,
        rgba(45,30,20,0.92) 100%);
}
.blog-hero-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px 36px;
    max-width: 1200px;
    margin: 0 auto;
}
.blog-breadcrumb {
    font-size: 0.78rem;
    opacity: 0.85;
    margin-bottom: 18px;
}
.blog-breadcrumb a {
    color: var(--gold-lt);
    text-decoration: none;
}
.blog-breadcrumb .sep { margin: 0 8px; opacity: 0.5; }
.blog-breadcrumb .active { color: #fff; }

.blog-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 900px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.blog-hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.15rem;
    opacity: 0.92;
    max-width: 720px;
    margin-bottom: 22px;
}
.blog-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    opacity: 0.92;
    font-family: 'Roboto', sans-serif;
}
.blog-hero-meta .sep { opacity: 0.4; }
.blog-hero-meta i { margin-right: 5px; color: var(--gold-lt); }
.blog-hero-license {
    position: absolute;
    bottom: 12px;
    right: 16px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 0.65rem;
    padding: 5px 10px;
    border-radius: 4px;
    letter-spacing: 0.04em;
    backdrop-filter: blur(4px);
}

/* Makale gövdesi — tipografi odaklı */
.blog-article {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.22rem;
    line-height: 1.78;
    color: var(--wood);
    max-width: 720px;
}
.blog-article p {
    margin-bottom: 1.4em;
}
.blog-article p:first-of-type::first-letter {
    font-weight: 700;
    font-size: 3.2em;
    float: left;
    line-height: 0.85;
    margin: 6px 10px 0 0;
    color: var(--gold-dk);
    font-family: 'Cormorant Garamond', serif;
}
.blog-article h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 2em 0 0.6em;
    color: var(--terra-dk, #b85838);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 8px;
    display: inline-block;
}
.blog-article h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 1.6em 0 0.5em;
    color: var(--wood);
    letter-spacing: 0.03em;
}
.blog-article blockquote {
    border-left: 4px solid var(--gold);
    padding: 12px 22px;
    margin: 1.8em 0;
    font-style: italic;
    color: var(--wood);
    background: rgba(212,160,74,0.06);
    border-radius: 0 8px 8px 0;
}
.blog-article img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5em 0;
    box-shadow: 0 6px 22px rgba(45,30,20,0.12);
}
.blog-article a {
    color: var(--terra-dk, #b85838);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.blog-article ul, .blog-article ol {
    margin: 1em 0 1.4em 1.2em;
}
.blog-article li { margin-bottom: 0.5em; }

/* Paylaş çubuğu */
.blog-share-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border, #eaeaea);
}
.blog-share-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wood);
    margin-right: 8px;
}
.blog-share-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    background: var(--paper);
    color: var(--wood);
    border: 1px solid var(--border, #eaeaea);
    transition: 0.2s;
}
.blog-share-btn:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}

/* Sidebar - diğer yazılar */
.blog-sidebar { display: flex; flex-direction: column; gap: 18px; }
.other-blogs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.other-blogs-list li {
    border-bottom: 1px solid var(--border, #eaeaea);
}
.other-blogs-list li:last-child { border-bottom: 0; }
.other-blogs-list a {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    text-decoration: none;
    color: var(--wood);
}
.other-blogs-list img {
    width: 64px; height: 64px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.other-blogs-list .ob-title {
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.3;
    margin-bottom: 4px;
}
.other-blogs-list small { color: var(--gold-dk); font-size: 0.72rem; }
.other-blogs-list a:hover .ob-title { color: var(--terra-dk, #b85838); }

/* Anasayfa blog kartında özet alanı */
.blog-excerpt-home {
    font-size: 0.85rem;
    color: var(--text-muted, #666);
    margin: 6px 0 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Mobil */
@media (max-width: 991px) {
    .blog-hero { height: 50vh; min-height: 300px; }
    .blog-hero-inner { padding: 32px 20px; }
    .blog-article { font-size: 1.1rem; }
    .blog-article p:first-of-type::first-letter {
        font-size: 2.6em;
        margin-top: 2px;
    }
    .blog-sidebar.sticky-top {
        position: static !important;
        top: auto !important;
    }
}

/* ============================================================
   FOTOĞRAF LİSANS ROZETLERİ
   ============================================================ */
.image-license-badge {
    position: absolute;
    bottom: 12px;
    right: 16px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 0.62rem;
    padding: 5px 10px;
    border-radius: 4px;
    letter-spacing: 0.04em;
    z-index: 5;
    backdrop-filter: blur(4px);
    max-width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.image-license-badge i { margin-right: 5px; opacity: 0.8; }

.gb-license {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 0.58rem;
    padding: 3px 7px;
    border-radius: 3px;
    z-index: 3;
    max-width: 75%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    transition: opacity 0.25s;
}
.gb-item:hover .gb-license { opacity: 1; }

/* ============================================================
   PANNELLUM 360° GÖRÜNTÜLEYİCİ — site temasıyla uyumlu
   ============================================================ */
#panorama {
    width: 100%;
    height: 100%;
    background: #0b0f14;
    cursor: grab;
}
#panorama:active { cursor: grabbing; }

/* Pannellum'un kendi başlık kutusunu gizle (bizim badge'lerimiz var) */
.pnlm-title-box,
.pnlm-author-box { display: none !important; }

/* Pannellum yükle butonunu site temasına oturt */
.pnlm-load-box {
    background: rgba(45,30,20,0.55) !important;
    backdrop-filter: blur(6px);
}
.pnlm-load-button {
    background: var(--gold) !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 8px !important;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    font-size: 0.8rem !important;
    padding: 14px 28px !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3) !important;
    transition: 0.2s ease !important;
}
.pnlm-load-button:hover {
    background: var(--gold-lt) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.4) !important;
}
.pnlm-load-button p { margin: 0; font-size: 0.8rem; }

/* Pannellum kontrol ikonları (zoom, fullscreen) */
.pnlm-controls {
    border-radius: 4px !important;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

/* ============================================================
   SIDEBAR ARAMA — koyu ahşap temaya uyumlu
   ============================================================ */
.sidebar-search-wrap {
    padding: 0 1.5rem 1rem;
    flex-shrink: 0;
}
.sidebar-search {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    transition: 0.25s ease;
    margin-top: 25px;
}
.sidebar-search:focus-within {
    background: rgba(255,255,255,0.07);
    border-color: rgba(212,160,74,0.5);
    box-shadow: 0 0 0 3px rgba(212,160,74,0.12);
}
.sidebar-search .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.35);
    font-size: 0.78rem;
    pointer-events: none;
    transition: color 0.25s;
}
.sidebar-search:focus-within .search-icon {
    color: var(--gold);
}
.sidebar-search input {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 9px 14px 9px 36px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.92);
    outline: none;
    width: 100%;
}
.sidebar-search input::placeholder {
    color: rgba(255,255,255,0.32);
    font-style: italic;
    font-weight: 400;
}

/* ============================================================
   KATEGORİ + ARAMA SAYFALARI
   ============================================================ */
.category-hero, .search-hero {
    background: linear-gradient(135deg, var(--wood) 0%, var(--terra-dk, #b85838) 100%);
    color: #fff;
    padding: 56px 0 40px;
    margin-bottom: 0;
}
.category-title, .search-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 14px 0 8px;
}
.category-sub {
    opacity: 0.85;
    font-style: italic;
    margin: 0;
}
.category-hero .place-breadcrumb-inline a { color: var(--gold-lt); }
.category-hero .place-breadcrumb-inline .active { color: #fff; }

.search-big-form {
    display: flex;
    max-width: 640px;
    margin: 20px 0 14px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    background: #fff;
}
.search-big-form input {
    flex: 1;
    border: 0;
    background: #fff;
    padding: 14px 22px;
    font-size: 1rem;
    outline: none;
    color: var(--wood);
    font-family: 'Roboto', sans-serif;
}
.search-big-form input::placeholder {
    color: rgba(45,30,20,0.45);
    font-style: italic;
}
.search-big-form button {
    border: 0;
    background: var(--gold);
    color: #fff;
    padding: 0 26px;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: 0.2s;
}
.search-big-form button:hover { background: var(--gold-dk); }

/* Kart tıklama overlay'i — tüm kartı kapsayan görünmez link */
.place-card { position: relative; }
.card-overlay-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    text-indent: -9999px;
    overflow: hidden;
}
/* Kart üstündeki etkileşimli öğeler overlay'in üstünde kalsın */
.place-card .bookmark-btn,
.place-card .card-tag {
    position: absolute;
    z-index: 2;
}
.search-meta {
    opacity: 0.85;
    margin-top: 6px;
    font-size: 0.95rem;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--wood);
}
.empty-state h3 {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 8px;
}