/* ============================================================
   Tatillik.com — Gold/Amber Premium Travel Design
   Reference: user-provided HTML template
   ============================================================ */

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

:root {
    --gold:        #F5B731;
    --gold-dark:   #D4960A;
    --gold-light:  #FFE082;
    --nav-bg:      #F0A500;
    --dark:        #1C1C30;
    --dark-2:      #16213E;
    --gray-50:     #F5F6F8;
    --gray-200:    #E4E5EC;
    --gray-400:    #9898B0;
    --gray-600:    #64647A;
    --r-md:        14px;
    --r-lg:        20px;
    --max-w:       1240px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--gray-50);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ─── NAVBAR ─────────────────────────────────────── */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: 66px;
    display: flex;
    align-items: center;
    padding: 0 48px;
    background: transparent;
    transition: background .45s ease, box-shadow .45s ease, height .3s ease, border-color .45s ease;
}
.navbar.scrolled {
    height: 58px;
    background: rgba(22, 22, 42, 0.96);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 4px 32px rgba(0,0,0,.28);
}
.navbar.solid {
    background: rgba(22, 22, 42, 0.96);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 4px 32px rgba(0,0,0,.28);
}
.navbar.white {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.navbar.white .nav-link { color: var(--dark); }
.navbar.white .nav-link:hover { color: var(--gold); }
.navbar.white .nav-brand-name { color: var(--dark); text-shadow: none; }
.navbar.white .nav-toggle span { background: var(--dark); }
@media (max-width: 900px) {
    .navbar.white .nav-links { background: rgba(255,255,255,.98); }
    .navbar.white .nav-links a { color: var(--dark); }
    .navbar.white .nav-links a:hover { background: rgba(0,0,0,.05); color: var(--gold); }
}

.nav-brand {
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 2px;
    flex: 1;
}
.nav-brand-name {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -.4px;
    line-height: 1;
    text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.nav-brand-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-bottom: 3px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 2px;
}
.nav-links a {
    display: block;
    text-decoration: none;
    color: rgba(255,255,255,.82);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 15px;
    border-radius: 6px;
    transition: color .2s ease, background .2s ease;
    white-space: nowrap;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-links a.active { color: var(--gold-light); font-weight: 600; }

/* Hamburger toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1002;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(22,22,42,.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform .4s ease, opacity .4s ease;
        pointer-events: none;
        z-index: 1001;
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-links a {
        font-size: 18px;
        padding: 12px 24px;
    }
}

.nav-spacer { flex: 1; }

/* ─── HERO ──────────────────────────────────────────── */
.hero {
    position: relative;
    height: 62vh;
    min-height: 440px;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/hero.png') center/cover no-repeat;
    transform: scale(1.04);
    transition: transform 9s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, rgba(28,28,48,.22) 0%, rgba(28,28,48,.55) 55%, rgba(28,28,48,.86) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 640px;
    padding: 0 20px;
    animation: fadeUp .85s ease .15s both;
}
.hero-badge {
    display: inline-block;
    background: rgba(245,183,49,.16);
    border: 1px solid rgba(245,183,49,.32);
    backdrop-filter: blur(8px);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}
.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
}
.hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,.68);
    font-weight: 300;
    margin-bottom: 26px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}
.hero-search {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.11);
    backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255,255,255,.18);
    border-radius: 50px;
    padding: 5px 5px 5px 18px;
    max-width: 480px;
    margin: 0 auto;
    transition: border-color .25s, background .25s;
}
.hero-search:focus-within {
    border-color: rgba(245,183,49,.45);
    background: rgba(255,255,255,.15);
}
.hero-search input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}
.hero-search input::placeholder { color: rgba(255,255,255,.42); }
.hero-search-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    border: none;
    border-radius: 50px;
    padding: 9px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .2s, box-shadow .2s;
}
.hero-search-btn:hover { transform: scale(1.04); box-shadow: 0 5px 18px rgba(212,150,10,.38); }

/* ─── STATS BAR ───────────────────────────────────── */
.stats-bar {
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-item {
    flex: 1;
    max-width: 220px;
    text-align: center;
    padding: 14px 20px;
    position: relative;
}
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0; top: 22%; height: 56%;
    width: 1px;
    background: rgba(255,255,255,.07);
}
.stat-number {
    font-size: 19px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 2px;
}
.stat-label {
    font-size: 11px;
    color: rgba(255,255,255,.4);
    letter-spacing: .3px;
}

/* ─── ADSENSE SLOT ───────────────────────────────── */
.ad-slot {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
}
.ad-slot ins {
    display: block;
    text-align: center;
}

/* ─── SECTION ─────────────────────────────────────── */
.section {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 36px 32px;
}
.section-head {
    text-align: center;
    margin-bottom: 22px;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 8px;
}
.section-tag::before, .section-tag::after {
    content: '';
    width: 20px; height: 1.5px;
    background: var(--gold);
    border-radius: 2px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.section-sub {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 300;
    max-width: 440px;
    margin: 0 auto;
}

/* ─── DESTINATIONS GRID ───────────────────────────── */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.dest-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.dest-card {
    position: relative;
    height: 290px;
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: pointer;
}
.dest-card img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.dest-card:hover img { transform: scale(1.1); }
.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(28,28,48,.9) 0%, rgba(28,28,48,.12) 55%, transparent 100%);
    transition: background .3s;
}
.dest-card:hover .dest-card-overlay {
    background: linear-gradient(0deg, rgba(28,28,48,.95) 0%, rgba(28,28,48,.38) 55%, rgba(28,28,48,.04) 100%);
}
.dest-card-badge {
    position: absolute;
    top: 11px; right: 11px;
    z-index: 2;
    background: rgba(0,0,0,.32);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
}
.dest-card-badge::before { content: '★ '; color: var(--gold-light); }
.dest-card-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 18px 15px;
    z-index: 2;
}
.dest-country {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 3px;
}
.dest-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}
.dest-desc {
    font-size: 12px;
    color: rgba(255,255,255,.58);
    line-height: 1.45;
    opacity: 0;
    transform: translateY(7px);
    transition: opacity .3s, transform .3s;
}
.dest-card:hover .dest-desc { opacity: 1; transform: translateY(0); }
.dest-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--r-md);
    border: 2px solid transparent;
    transition: border-color .3s;
    pointer-events: none;
    z-index: 3;
}
.dest-card:hover::after { border-color: rgba(245,183,49,.4); }

/* ─── BLOG GRID ───────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.blog-card {
    background: #fff;
    border-radius: var(--r-md);
    overflow: hidden;
    display: flex;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
    height: 220px;
    text-decoration: none;
    color: inherit;
}
.blog-card:first-child {
    grid-column: 1 / -1;
    height: 320px;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,.11); }
.blog-card-img {
    position: relative;
    flex: 0 0 42%;
    overflow: hidden;
}
.blog-card:first-child .blog-card-img { flex: 0 0 50%; }
.blog-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-cat {
    position: absolute;
    top: 12px; left: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 50px;
}
.blog-card-body {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
}
.blog-meta {
    display: flex;
    gap: 12px;
    font-size: 11.5px;
    color: var(--gray-400);
    margin-bottom: 8px;
}
.blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 7px;
    transition: color .2s;
}
.blog-card:first-child .blog-card-title { font-size: 22px; }
.blog-card:hover .blog-card-title { color: var(--gold-dark); }
.blog-excerpt {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.blog-author {
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700;
    color: var(--dark);
    flex-shrink: 0;
}
.blog-author-name { font-size: 12.5px; font-weight: 600; color: var(--dark); line-height: 1.2; }
.blog-author-role { font-size: 11px; color: var(--gray-400); }
.blog-read {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gold-dark);
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap .2s;
}
.blog-card:hover .blog-read { gap: 8px; }

/* ─── FEATURES GRID ───────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.feature-card {
    background: #fff;
    border-radius: var(--r-md);
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    transition: transform .3s, box-shadow .3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(245,183,49,.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ─── CATEGORIES GRID ─────────────────────────────── */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.cat-card {
    background: #fff;
    border-radius: var(--r-md);
    padding: 24px 22px;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    transition: transform .3s, box-shadow .3s, border-color .3s;
    border: 2px solid transparent;
}
.cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    border-color: rgba(245,183,49,.25);
    text-decoration: none;
}
.cat-icon {
    font-size: 28px;
    margin-bottom: 10px;
}
.cat-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 5px;
}
.cat-card p {
    font-size: 12.5px;
    color: var(--gray-400);
    line-height: 1.5;
}

/* ─── FOOTER NEWSLETTER ───────────────────────────── */
.footer-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0 28px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    margin-bottom: 28px;
}
.footer-newsletter-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}
.footer-newsletter-text p {
    font-size: 12.5px;
    color: rgba(255,255,255,.38);
    font-weight: 300;
}
.footer-newsletter-form {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.footer-newsletter-form input {
    width: 220px;
    padding: 9px 16px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    outline: none;
    transition: border-color .2s;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,.28); }
.footer-newsletter-form input:focus { border-color: rgba(245,183,49,.38); }
.footer-newsletter-form button {
    padding: 9px 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .2s, box-shadow .2s;
}
.footer-newsletter-form button:hover { transform: translateY(-2px); box-shadow: 0 5px 16px rgba(212,150,10,.32); }

@media (max-width: 700px) {
    .footer-newsletter { flex-direction: column; align-items: flex-start; }
    .footer-newsletter-form { width: 100%; }
    .footer-newsletter-form input { flex: 1; width: auto; min-width: 0; }
}

/* ─── FOOTER ──────────────────────────────────────── */
.footer { background: var(--dark); padding: 44px 32px 22px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,.38);
    font-weight: 300;
    line-height: 1.65;
    max-width: 250px;
}
.footer-col h4 {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,.28);
    margin-bottom: 14px;
}
.footer-col a {
    display: block;
    color: rgba(255,255,255,.46);
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    padding: 3px 0;
    transition: color .2s, padding-left .2s;
}
.footer-col a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.22); }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a, .footer-socials span {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.07);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.4);
    text-decoration: none;
    font-size: 13px;
    transition: background .2s, color .2s, transform .2s;
}
.footer-socials a:hover, .footer-socials span:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); transform: translateY(-3px); }

/* ─── SINGLE POST PAGE ────────────────────────────── */
.post-wrapper { max-width: 800px; margin: 0 auto; padding: 100px 20px 48px; }
.post-hero { margin-top: 66px; }

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-400);
    margin-bottom: 20px;
}
.breadcrumbs a { color: var(--gray-600); font-weight: 600; transition: color .2s; }
.breadcrumbs a:hover { color: var(--gold-dark); }
.bc-chevron { flex-shrink: 0; color: var(--gray-400); }

.post-header { margin-bottom: 28px; }
.post-category {
    display: inline-flex;
    padding: 5px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.post-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3.6vw, 36px);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 14px;
    color: var(--dark);
}
.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--gray-400);
    font-size: 13px;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 14px;
    align-items: center;
}
.post-author-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark);
}
.post-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    flex-shrink: 0;
}

.post-featured-image {
    border-radius: var(--r-md);
    overflow: hidden;
    margin-bottom: 28px;
}
.post-featured-image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.post-location {
    margin-bottom: 28px;
    padding: 20px;
    background: #f9f7f4;
    border-radius: var(--r-md);
}
.post-location h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--dark);
}
.post-location-map iframe {
    display: block;
    border-radius: 8px;
}

.post-content {
    font-size: 17px;
    line-height: 1.9;
    color: var(--dark);
}
.post-content p { margin-bottom: 1.5em; }
.post-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin: 2em 0 0.7em;
    letter-spacing: -0.02em;
}
.post-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    margin: 1.8em 0 0.5em;
}
.post-content img { border-radius: var(--r-md); margin: 1.5em 0; max-width: 100%; height: auto; }
.post-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 14px 20px;
    margin: 1.5em 0;
    background: #fff;
    border-radius: 0 var(--r-md) var(--r-md) 0;
    font-style: italic;
    color: var(--gray-600);
}
.post-content a { color: var(--gold-dark); text-decoration: underline; }
.post-content a:hover { color: var(--gold); }

/* Inline image */
.post-inline-image {
    margin: 2em 0;
    border-radius: var(--r-md);
    overflow: hidden;
}
.post-inline-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--r-md);
}
.post-inline-image figcaption {
    text-align: center;
    font-size: 12.5px;
    color: var(--gray-400);
    padding: 8px 0 0;
    font-style: italic;
}

/* Post footer */
.post-footer {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid var(--gray-200);
}
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.post-tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 12px;
    color: var(--gray-600);
    transition: background .2s, color .2s;
}
.post-tag:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}
.post-share {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 500;
}
.post-share a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: background .2s, color .2s, transform .2s;
}
.post-share a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

/* Author box */
.author-box {
    display: flex;
    gap: 18px;
    background: #fff;
    border-radius: var(--r-md);
    padding: 24px 28px;
    margin-top: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    border: 1px solid var(--gray-200);
}
.author-avatar-large {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    flex-shrink: 0;
}
.author-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 4px;
}
.author-info p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.7;
}

.related-section { padding: 36px 0; }

/* ─── COMMENTS ────────────────────────────────────── */
.comments-section {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--gray-200);
}
.comments-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 18px;
}
.comments-empty {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 20px;
}
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}
.comment-item {
    display: flex;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border-radius: var(--r-md);
    border: 1px solid var(--gray-200);
}
.comment-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    flex-shrink: 0;
}
.comment-body { flex: 1; min-width: 0; }
.comment-author {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
}
.comment-date {
    font-size: 11px;
    color: var(--gray-400);
    margin-bottom: 6px;
}
.comment-body p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
}
.comment-form {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--r-md);
    padding: 22px 24px;
}
.comment-form h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 14px;
}
.comment-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}
.comment-form-row input {
    flex: 1;
    padding: 9px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    outline: none;
    transition: border-color .2s;
}
.comment-form-row input:focus { border-color: var(--gold); }
.comment-form textarea {
    width: 100%;
    padding: 9px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    outline: none;
    resize: vertical;
    transition: border-color .2s;
    margin-bottom: 12px;
}
.comment-form textarea:focus { border-color: var(--gold); }
.comment-submit {
    padding: 9px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}
.comment-submit:hover { transform: translateY(-2px); box-shadow: 0 5px 16px rgba(212,150,10,.32); }

/* ─── FAVORITE BUTTON ─────────────────────────────── */
.post-fav { margin-top: 12px; }
.fav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all .2s;
}
.fav-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.fav-btn.active { border-color: var(--gold); background: rgba(245,183,49,.08); color: var(--gold-dark); }
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* ─── INNER PAGE (legal, about, contact) ──────────── */
.page-hero {
    margin-top: 66px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 60px 32px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(245,183,49,.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.6vw, 40px);
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
}
.page-hero p {
    color: rgba(255,255,255,.5);
    font-size: 15px;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.page-section {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 48px 32px 64px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--r-lg);
    padding: 48px 52px;
    box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
.legal-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 32px);
    color: var(--dark);
    margin-bottom: 6px;
}
.legal-content .last-updated {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}
.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--dark);
    margin: 32px 0 12px;
}
.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 14px;
}
.legal-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}
.legal-content ul li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 4px;
}
.legal-content ul li strong {
    color: var(--dark);
}
.legal-content a {
    color: var(--gold-dark);
    text-decoration: underline;
    transition: color .2s;
}
.legal-content a:hover { color: var(--gold); }

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}
.contact-form {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 36px 40px;
    box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--dark);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245,183,49,.12);
}
.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form > div {
    margin-bottom: 18px;
}
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,150,10,.32);
}

.info-panel {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
.info-panel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 16px;
}
.info-panel p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-600);
}
.info-panel strong { color: var(--dark); }

/* About page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 48px;
}
.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 2.8vw, 30px);
    color: var(--dark);
    margin-bottom: 16px;
}
.about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 14px;
}
.about-image img {
    width: 100%;
    border-radius: var(--r-lg);
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
}
.value-card {
    background: #fff;
    border-radius: var(--r-md);
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    transition: transform .3s, box-shadow .3s;
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,.08);
}
.value-icon {
    font-size: 32px;
    margin-bottom: 12px;
}
.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 6px;
}
.value-card p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ─── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.dest-card.reveal:nth-child(1) { transition-delay: .04s; }
.dest-card.reveal:nth-child(2) { transition-delay: .09s; }
.dest-card.reveal:nth-child(3) { transition-delay: .14s; }
.dest-card.reveal:nth-child(4) { transition-delay: .19s; }
.dest-card.reveal:nth-child(5) { transition-delay: .24s; }
.blog-card.reveal:nth-child(1) { transition-delay: .04s; }
.blog-card.reveal:nth-child(2) { transition-delay: .10s; }
.blog-card.reveal:nth-child(3) { transition-delay: .16s; }
.blog-card.reveal:nth-child(4) { transition-delay: .22s; }
.blog-card.reveal:nth-child(5) { transition-delay: .28s; }
.blog-card.reveal:nth-child(6) { transition-delay: .34s; }

.blog-more {
    text-align: center;
    margin-top: 28px;
}
.blog-more-btn {
    display: inline-block;
    padding: 11px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.blog-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,150,10,.32);
}

/* ─── SEARCH PAGE ──────────────────────────────────── */
.container { max-width:var(--max-w); margin:0 auto; padding:0 20px; }
.page-header { text-align: center; padding: 100px 20px 20px; }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--dark); }
.search-form { display:flex; border:2px solid var(--gray-200); border-radius:12px; overflow:hidden; background:#fff; }
.search-input { flex:1; border:none; padding:14px 18px; font-size:15px; outline:none; }
.search-submit { background:var(--gold); border:none; color:var(--dark); font-weight:700; padding:14px 24px; cursor:pointer; }
.search-results-count { text-align:center; margin-bottom:24px; font-size:14px; color:var(--gray-500); }
.archive-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; max-width:var(--max-w); margin:0 auto; padding:0 20px; }
.archive-card { background:#fff; border-radius:var(--r-md); overflow:hidden; box-shadow:0 2px 10px rgba(0,0,0,.06); transition:transform .3s,box-shadow .3s; }
.archive-card:hover { transform:translateY(-4px); box-shadow:0 12px 36px rgba(0,0,0,.11); }
.archive-card .ac-img img { width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }
.archive-card .ac-body { padding:16px; }
.archive-card .ac-meta { font-size:12px; color:var(--gray-400); margin-bottom:6px; display:flex; gap:6px; }
.archive-card .ac-body h3 { font-size:16px; margin-bottom:6px; }
.archive-card .ac-body h3 a { color:var(--dark); text-decoration:none; }
.archive-card .ac-body h3 a:hover { color:var(--gold); }
.archive-card .ac-body p { font-size:13px; color:var(--gray-500); line-height:1.6; }
.no-results { text-align:center; padding:48px 20px; }
.no-results h2 { font-size:20px; color:var(--dark); margin-bottom:8px; }
.no-results p { font-size:14px; color:var(--gray-500); }
.pagination { display:flex; justify-content:center; gap:6px; margin-top:28px; }
.pagination a { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:8px; background:#fff; border:1px solid var(--gray-200); color:var(--dark); text-decoration:none; font-size:14px; }
.pagination a.current { background:var(--gold); border-color:var(--gold); color:var(--dark); font-weight:700; }
.pagination a:hover:not(.current) { border-color:var(--gold); }

/* ─── UTILITY ─────────────────────────────────────── */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.flash { padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 13px; font-weight: 600; max-width: var(--max-w); margin-left: auto; margin-right: auto; }
.flash-success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.flash-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.flash-info { background: #eff6ff; border: 1px solid #93c5fd; color: #1e40af; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--gray-400); }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1100px) {
    .dest-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .navbar { padding: 0 20px; }
    .section { padding: 36px 20px; }
    .dest-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card, .blog-card:first-child { flex-direction: column; height: auto; }
    .blog-card-img, .blog-card:first-child .blog-card-img { flex: 0 0 180px; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .cat-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .related-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr 1fr; }
    .legal-content { padding: 32px 24px; }
    .contact-form { padding: 28px 24px; }
}
@media (max-width: 600px) {
    .dest-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; }
    .related-grid { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .page-hero { padding: 48px 20px 36px; }
    .page-section { padding: 32px 20px; }
    .features-grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: 1fr; }
}
}
/* =========================================
   MOBİL MENÜ DÜZELTME
========================================= */

@media (max-width: 768px) {

    .navbar {
        position: relative;
    }

    .nav-toggle {
        display: flex !important;
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10001;

        width: 42px;
        height: 42px;

        padding: 0;
        margin: 0;

        align-items: center;
        justify-content: center;
        flex-direction: column;

        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        margin: 3px 0;

        background: currentColor;
        border-radius: 2px;

        transition:
            transform 0.25s ease,
            opacity 0.25s ease;
    }

    /*
     * Menü kapalı
     */
    .nav-links {
        display: flex !important;

        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        width: 100%;

        flex-direction: column;
        align-items: stretch;

        margin: 0;
        padding: 10px 0;

        background: #fff;

        z-index: 10000;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-10px);

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;

        box-shadow: 0 8px 20px rgba(0,0,0,0.10);
    }

    /*
     * Menü AÇIK
     */
    .nav-links.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateY(0);
    }

    .nav-links li {
        display: block;
        width: 100%;
        margin: 0;
    }

    .nav-links li a {
        display: block;
        width: 100%;

        padding: 14px 20px;

        text-align: left;
    }

    /*
     * Hamburger -> X
     */
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /*
     * Spacer mobilde gereksiz
     */
    .nav-spacer {
        display: none;
    }

}