/* Base */
body {
    margin: 0;
    font-family: "Georgia", "Times New Roman", serif;
    line-height: 1.8;
    color: #222;
    background: #ffffff;
}

section {
    max-width: 900px;
    margin: auto;
    padding: 10px;
}

ul {
    padding-left: 20px;
}

/* Typography */
h2 {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    h2 {
        font-size: 26px;
        line-height: 1.3;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 22px;
        line-height: 1.35;
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 20px;
        line-height: 1.4;
    }
}

h3 {
    margin: 0 0 6px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.2px;
}

@media (max-width: 1024px) {
    h3 {
        font-size: 18px;
        line-height: 1.35;
    }
}

@media (max-width: 768px) {
    h3 {
        font-size: 17px;
        line-height: 1.4;
        margin-bottom: 4px;
    }
}

@media (max-width: 480px) {
    h3 {
        font-size: 16px;
        line-height: 1.45;
    }
}

/* HERO */
.hero {
    position: relative;
    height: 70vh;
    min-height: 420px; /* LCP & CLS fix */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

/* LCP IMAGE */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 52vh;
        min-height: 360px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 48vh;
        min-height: 320px;
    }
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 20px 0 0 0;
}

.hero h1 {
    color: #ffffff !important;
    opacity: 1 !important;
    font-weight: 800;
    font-size: 52px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1;
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 44px;
        line-height: 1.15;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 34px;
        line-height: 1.2;
        letter-spacing: 1.2px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
        line-height: 1.25;
        letter-spacing: 1px;
    }
}

.hero p {
    color: #ffffff !important;
    opacity: 1 !important;
    font-weight: 500;
    font-size: 20px;
    margin: 10px 0 0 0;
    line-height: 1.1;
}

.hero h1,
.hero p {
    text-shadow:
        0 2px 6px rgba(0,0,0,0.9),
        0 0 2px rgba(0,0,0,0.8);
}

/* Hero Brand */
.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    gap: 8px;
}

.brand-dot {
    width: 12px;
    height: 12px;
    background: #ffde80;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.brand-text {
    font-size: 100px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: #ffde80;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.brand-sub {
    font-size: 24px;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 2px;
    color: #ffffff;
    transform: rotate(-6deg);
    margin: -46px 0 0 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    z-index: 2;
}

/* Shared Images (replaced inline styles) */
.img-full {
    width: 100%;
    border-radius: 6px;
}

.img-mt20 {
    margin-top: 20px;
}

.img-cistern-3 {
    width: 100%;
    border-radius: 6px;
    margin: 30px 0 10px;
}

/* Breadcrumb */
.breadcrumb-static {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #6b7280;
    margin: 18px 0 0;
    letter-spacing: 0.2px;
}

.breadcrumb-home {
    width: 14px;
    height: 14px;
    position: relative;
    display: inline-block;
}

.breadcrumb-home::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 2px;
    width: 10px;
    height: 7px;
    border: 1.5px solid #6b7280;
    border-top: none;
}

.breadcrumb-home::after {
    content: "";
    position: absolute;
    top: -2px;
    left: 1px;
    width: 10px;
    height: 10px;
    border-left: 1.5px solid #6b7280;
    border-top: 1.5px solid #6b7280;
    transform: rotate(45deg);
}

.breadcrumb-sep {
    color: #c0c4cc;
}

.breadcrumb-current {
    color: #111827;
    font-weight: 600;
}

/* Info box */
.info-box {
    background: #f7f7f7;
    border-left: 5px solid #bfa25a;
    padding: 20px;
    margin: 30px 0;
}

/* CTA (black section + default button) */
.cta {
    background: #111;
    color: #fff;
    padding: 30px;
    text-align: center;
    margin: 40px 0 0 0;
    max-width: 100%;
    line-height: 1.1;
}

.cta a {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 22px;
    background: #bfa25a;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 3px;
    width: auto;
}

/* Footer */
footer {
    background: #f1f1f1;
    padding: 25px;
    text-align: center;
    font-size: 14px;
    color: #555;
}

/* FAQ Accordion */
.faq-accordion details {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq-accordion summary {
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 25px;
    line-height: 25px;
}

.faq-accordion summary::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 22px;
    font-weight: normal;
}

.faq-accordion details[open] summary::after {
    content: "–";
}

.faq-accordion p {
    margin-top: 10px;
    color: #333;
}

/* Highlights */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px 70px; /* row-gap | column-gap */
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.highlight-icon {
    font-size: 26px;
    line-height: 1;
    margin-top: 2px;
}

.highlight-item p {
    margin: 0;
    color: #333;
}

/* CTA Options cards */
.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 28px 0 36px;
}

.cta-card {
    border: 1px solid #e5e7eb;
    padding: 18px 20px;
    border-radius: 6px;
    text-decoration: none;
    color: #111827;
    display: block;
    transition: all 0.25s ease;
    background: #fafafa;
}

.cta-card:hover {
    border-color: #bfa25a;
    background: #fff;
    transform: translateY(-2px);
}

.cta-card .cta-title {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 22px;
}

.cta-card .cta-desc {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.5;
}

.cta-card.primary {
    border-left: 4px solid #bfa25a;
}

/* Tips */
.tips-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.tips-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
    line-height: 1.6;
}

.tip-icon {
    font-size: 20px;
    line-height: 1;
    margin-top: 2px;
}

/* Transport */
.transport-list {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.transport-list li {
    margin-bottom: 12px;
}

/* Map links */
.map-links {
    display: flex;
    gap: 14px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.map-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    white-space: normal;
}

@media (max-width: 768px) {
    .map-links {
        flex-direction: column;
        gap: 12px;
    }

    .map-links a {
        justify-content: center;
        font-size: 16px;
        padding: 16px;
    }
}

.map-btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #ddd;
    transition: all 0.2s ease;
}

.map-btn.google {
    background: #fff;
    color: #1a73e8;
}

.map-btn.yandex {
    background: #fff;
    color: #d93025;
}

.map-btn:hover {
    background: #f5f5f5;
}

/* Pass section */
.pass-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.pass-table-wrapper {
    overflow-x: auto;
    line-height: 20px;
}

.pass-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 18px;
    font-size: 15px;
}

.pass-table thead th {
    padding: 16px 14px;
    background: #f7f4ec;
    border-bottom: 2px solid #bfa25a;
    text-align: left;
}

.pass-table tbody tr {
    background: #fff;
}

.pass-table tbody tr.featured {
    background: #fbf9f3;
}

.pass-table td {
    padding: 22px 14px;
    vertical-align: top;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.pass-table td:first-child {
    border-left: 1px solid #eee;
}

.pass-table td:last-child {
    border-right: 1px solid #eee;
}

.center {
    text-align: center;
    font-weight: 600;
}

.included {
    color: #2e7d32;
}

.not-included {
    color: #c62828;
}

.badge {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: #bfa25a;
    color: #fff;
    font-size: 12px;
    border-radius: 20px;
}

.btn-primary,
.btn-outline {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    width: max-content;
}

.btn-primary {
    background: #bfa25a;
    color: #fff;
}

.btn-primary:hover {
    background: #a88d47;
}

.btn-outline {
    border: 2px solid #bfa25a;
    color: #bfa25a;
}

.btn-outline:hover {
    background: #bfa25a;
    color: #fff;
}

/* CTA ticket section (moved inline styles) */
.cta-ticket-inner {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .cta-ticket-inner {
        padding: 12px 16px;
    }

    .cta-ticket h2 {
        font-size: 26px;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .cta-ticket p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .cta-ticket ul {
        gap: 8px;
        margin-bottom: 24px;
    }
}

/* Moved inline styles from CTA ticket elements */
.cta-ticket-lead {
    max-width: 900px;
    margin: 20px auto 40px;
    font-size: 17px;
    line-height: 1.7;
}

.cta-ticket-benefits {
    list-style: none;
    padding: 0;
    margin: 0 auto 50px;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    text-align: center;
    font-size: 16px;
}

.cta-ticket-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 30px;
    flex-direction: column;
    align-items: center;
}

.cta-ticket-note {
    font-size: 14px;
    opacity: 0.75;
}

/* =========================
   Table of Contents (TOC)
   ========================= */

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Anchor offset feel nicer */
h2[id],
h3[id] {
    scroll-margin-top: 18px;
}

.toc-wrap {
    max-width: 900px;
    margin: 18px auto 0;
    padding: 10px;
}

.toc {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    overflow: hidden;
}

.toc details {
    padding: 0;
}

.toc summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #eef0f3;
    user-select: none;
}

.toc summary::-webkit-details-marker {
    display: none;
}

.toc-title {
    font-weight: 800;
    color: #111827;
    letter-spacing: 0.2px;
}

.toc-sub {
    margin-left: auto;
    font-size: 13px;
    color: #6b7280;
    white-space: nowrap;
}

.toc-chevron{
  width:26px;
  height:26px;
  border-radius:8px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#f7f4ec;
  border:1px solid #eadfbf;
  color:#8a6f2f;
  flex:0 0 26px;
  position: relative;
}

.toc-chevron::before{
  content:"";
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: translateY(1px) rotate(45deg); /* ok yukarı */
}

.toc[open] .toc-chevron::before{
  transform: translateY(-1px) rotate(-190deg); /* ok aşağı */
}

.toc details[open] summary .toc-chevron {
    transform: rotate(180deg);
}

.toc-body {
    padding: 14px 16px 16px;
}

.toc-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
}

.toc-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #111827;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #eef0f3;
    background: #fafafa;
    transition: all 0.18s ease;
    line-height: 1.25;
    font-size: 15px;
}

.toc-list a:hover {
    border-color: #bfa25a;
    background: #ffffff;
    transform: translateY(-1px);
}

.toc-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    flex: 0 0 26px;
}

/* Mobile: single column + compact */
@media (max-width: 768px) {
    .toc-wrap {
        margin-top: 14px;
    }

    .toc summary {
        padding: 12px 14px;
    }

    .toc-body {
        padding: 12px 14px 14px;
    }

    .toc-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .toc-list a {
        font-size: 15px;
        padding: 10px 12px;
    }
}

/* ============ Back to top (both desktop & mobile) ============ */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 45px;
  height: 45px;
  border-radius: 5px;
  border: 1px solid #000000;
  background: #fff;
  color: #111827;
  display: grid;
  place-items: center;
  text-decoration: none;
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(17, 24, 39, 0.18);
}