/* Etkinlik Seçim Rehberi — editorial / city guide */
:root {
  --ink: #0c1222;
  --ink-soft: #1e293b;
  --cream: #fefdfb;
  --cream-dark: #f5f3ef;
  --paper: #fff;
  --accent: #b45309;
  --accent-bright: #d97706;
  --accent-bg: #fffbeb;
  --gold: #92400e;
  --muted: #64748b;
  --border: #e2e8f0;
  --radius: 12px;
  --radius-sm: 8px;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --space: 1.25rem;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft: 0 4px 20px rgba(12, 18, 34, 0.06);
  --shadow-card: 0 8px 32px rgba(12, 18, 34, 0.08);
  --shadow-hover: 0 12px 40px rgba(12, 18, 34, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(255, 251, 235, 0.6), transparent),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  min-height: 100vh;
}

.container { max-width: 880px; margin: 0 auto; padding: 0 var(--space); }

/* Header — editorial dark strip */
.site-header {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.site-header::after {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space);
  padding: 1rem 0;
}
.logo {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.logo:hover { color: var(--accent-bright); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.25s var(--ease);
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.15); }
.nav-toggle-bar {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Header/Footer: no list markers */
.site-header .nav-list,
.site-header .nav-list li,
.site-footer ul,
.site-footer li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .nav-list li::before,
.site-header .nav-list li::marker,
.site-footer li::before,
.site-footer li::marker {
  display: none;
  content: none;
}

.nav { transition: max-height 0.35s var(--ease), visibility 0.35s var(--ease); }
.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
}
.nav-list a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: rgba(254, 253, 251, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav-list a:hover {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}
.nav-list a.current {
  color: var(--accent-bright);
  background: rgba(217, 119, 6, 0.2);
  font-weight: 600;
}

@media (max-width: 768px) {
  .site-header .container { padding-left: 1.5rem; padding-right: 1.5rem; }
  .site-header .header-inner { position: relative; gap: 1rem; min-height: 3.5rem; }
  .nav-toggle { display: flex; z-index: 102; position: relative; flex-shrink: 0; }
  .logo { flex-shrink: 0; }
  .nav {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100vw;
    max-width: none;
    margin-left: -50vw;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    background: linear-gradient(180deg, var(--ink) 0%, #0a0f1a 100%);
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
    z-index: 101;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-radius: 0 0 var(--radius) var(--radius);
  }
  .nav.nav-open {
    max-height: 80vh;
    visibility: visible;
    overflow-y: auto;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.35rem;
  }
  .nav-list a {
    padding: 0.85rem 1.15rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
  }
  .nav-list a:hover { background: rgba(255, 255, 255, 0.12); border-left-color: var(--accent); }
  .nav-list a.current { border-left-color: var(--accent-bright); background: rgba(217, 119, 6, 0.15); }
}

/* Main */
main {
  padding: 2.5rem 0 4rem;
  min-height: 65vh;
}
main .container:first-child { padding-top: 0.5rem; }

/* Hero — image + text (thematic) */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}
.hero-image {
  order: 1;
  position: relative;
  min-height: 240px;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-content { order: 2; padding: 1.5rem 1.5rem; }
.hero-content .lead { margin-bottom: 1rem; }
@media (max-width: 640px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { order: 0; min-height: 200px; }
  .hero-content { order: 1; padding: 1.25rem 1.5rem; }
}

/* Media block — image + text side by side */
.media-block {
  display: grid;
  grid-template-columns: minmax(200px, 40%) 1fr;
  gap: 1.75rem;
  align-items: start;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.media-block img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  display: block;
}
.media-block .media-text { padding: 0.25rem 0; }
.media-block .media-text h2 { margin-top: 0; }
.media-block .media-text h2::after { display: none; }
@media (max-width: 640px) {
  .media-block { grid-template-columns: 1fr; gap: 1rem; }
  .media-block img { max-height: 220px; object-fit: cover; }
}

/* Footer — editorial dark, distinctive */
.site-footer {
  background: linear-gradient(180deg, #0a0f1a 0%, var(--ink) 30%, #060a12 100%);
  color: rgba(254, 253, 251, 0.85);
  padding: 3rem 0 1.75rem;
  font-size: 0.9rem;
  margin-top: auto;
  position: relative;
}
.site-footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, transparent 5%, var(--accent) 20%, var(--accent-bright) 50%, var(--accent) 80%, transparent 95%);
  opacity: 0.85;
}
.site-footer .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 2rem;
  align-items: start;
  padding-top: 2.25rem;
  max-width: 880px;
  margin: 0 auto;
  padding-left: var(--space);
  padding-right: var(--space);
}
.footer-brand {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.footer-text {
  line-height: 1.7;
  margin-bottom: 0;
  color: rgba(254, 253, 251, 0.75);
  max-width: 420px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.25rem;
  align-items: center;
}
.footer-links a {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.site-footer a {
  color: var(--accent-bg);
  text-decoration: none;
  font-weight: 500;
}
.site-footer a:hover {
  color: var(--cream);
  background: rgba(217, 119, 6, 0.2);
  transform: translateX(4px);
}
.footer-copy {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: rgba(254, 253, 251, 0.55);
  text-align: center;
  letter-spacing: 0.03em;
}
@media (max-width: 640px) {
  .site-footer .container { grid-template-columns: 1fr; gap: 1.5rem; padding-top: 1.5rem; }
  .footer-links { flex-direction: column; align-items: flex-start; }
  .footer-links a:hover { transform: translateX(4px); }
  .footer-copy { padding-top: 1rem; margin-top: 0.25rem; }
}

/* Typography — editorial */
h1 {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
h1 + .lead { margin-top: -0.25rem; }
h2 {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
  color: var(--ink-soft);
  padding-bottom: 0.6rem;
  border-bottom: none;
  position: relative;
}
h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  border-radius: 2px;
}
h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
p { margin: 0 0 1.1rem; }
.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.65;
  font-weight: 400;
}

/* Links — no underline anywhere */
a,
a:hover,
a:focus,
.site-footer a,
.site-footer a:hover,
.nav-list a,
.nav-list a:hover {
  text-decoration: none;
}
a {
  color: var(--accent);
  font-weight: 500;
  transition: color 0.25s var(--ease);
}
a:hover { color: var(--gold); }
.article-body a,
.links-block a,
main a:not(.btn):not(.logo) {
  color: var(--accent);
  text-decoration: none;
}
.article-body a:hover,
.links-block a:hover,
main a:not(.btn):not(.logo):hover {
  color: var(--gold);
  text-decoration: none;
}

/* Cards — left accent, depth */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 1.75rem 0;
}
.card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-bright));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(180, 83, 9, 0.25);
}
.card:hover::before { opacity: 1; }
.card a { text-decoration: none; color: inherit; display: block; }
.card a:hover { color: inherit; }
.card img { width: 100%; height: auto; display: block; }
.card > a { padding: 1.25rem 1.35rem 0.25rem; }
.card-body { padding: 0.5rem 1.35rem 1.35rem; }
.card-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--ink);
}
.card-meta { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

/* Lists — distinctive */
.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.checklist li {
  position: relative;
  padding: 0.5rem 0 0.5rem 2rem;
  line-height: 1.6;
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(0.5rem + 0.5em - 4px);
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--accent-bg);
}
@media (max-width: 640px) {
  .checklist li { padding-left: 1.75rem; }
  .checklist li::before { width: 6px; height: 6px; top: calc(0.5rem + 0.5em - 3px); }
}
ul:not(.checklist):not(.nav-list) {
  padding-left: 1.5rem;
  margin: 1.25rem 0;
}
ul:not(.checklist):not(.nav-list) li {
  margin-bottom: 0.4rem;
  padding-left: 0.25rem;
}
/* Numbered lists — custom style, no "1. ->" */
ol {
  list-style: none;
  padding-left: 0;
  margin: 1.25rem 0;
  counter-reset: step;
}
ol li {
  margin-bottom: 0.6rem;
  padding-left: 2.25rem;
  position: relative;
  counter-increment: step;
}
ol li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: calc(0.1em + 0px);
  width: 1.5rem;
  height: 1.5rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: 50%;
  line-height: 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 640px) {
  ol li { padding-left: 2rem; }
  ol li::before { width: 1.35rem; height: 1.35rem; font-size: 0.75rem; line-height: 1.35rem; }
}

/* Tables — editorial */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}
th, td {
  border: none;
  padding: 0.75rem 1rem;
  text-align: left;
}
th {
  background: var(--ink);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}
tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s var(--ease);
}
tbody tr:last-child { border-bottom: none; }
tbody tr:nth-child(even) { background: var(--cream-dark); }
tbody tr:hover { background: var(--accent-bg); }

/* Forms */
form label { display: block; margin-bottom: 0.35rem; font-weight: 500; color: var(--ink-soft); }
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
  width: 100%;
  max-width: 400px;
  padding: 0.65rem 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--paper);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.15);
}
form textarea { min-height: 110px; resize: vertical; }
form .form-row-checkbox { margin: 1rem 0; display: flex; align-items: flex-start; gap: 0.5rem; }
form .form-row-checkbox input[type="checkbox"] { width: auto; max-width: none; margin: 0.25rem 0 0; }
form .form-row-checkbox label { margin-bottom: 0; font-weight: 400; }

/* Contact block */
.contact-block { margin: 2rem 0; }
.contact-block h2 { margin-top: 0; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.contact-item { padding: 1.25rem; background: var(--paper); border-radius: var(--radius-sm); border: 1px solid var(--border); }
.contact-item strong { display: block; color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 0.35rem; }
.contact-item p { margin: 0 0 0.5rem; }
.contact-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.35rem !important; }

/* Policy form block — distinct section */
.policy-form-block {
  margin: 2.5rem 0;
  padding: 2rem;
  background: var(--accent-bg);
  border: 1px solid rgba(180, 83, 9, 0.25);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.policy-form-block h2 { margin-top: 0; }
.policy-form-block .btn { margin-top: 0.5rem; }

/* Toast notification — fully hidden when closed */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  z-index: 1001;
  box-shadow: var(--shadow-hover);
  transition: transform 0.4s var(--ease), opacity 0.35s var(--ease), visibility 0s linear 0.4s;
  max-width: calc(100% - 2rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
  transition-duration: 0.4s, 0.3s, 0s;
}
.toast.success { background: var(--ink); color: var(--cream); border: 1px solid var(--accent); }
.toast.error { background: #7f1d1d; color: #fef2f2; }
@media (max-width: 640px) {
  .toast { bottom: 1rem; padding: 0.85rem 1.25rem; font-size: 0.9rem; }
  .policy-form-block { padding: 1.5rem; margin: 1.5rem 0; }
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(180, 83, 9, 0.3);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(180, 83, 9, 0.4);
}
.btn-secondary {
  background: var(--ink-soft);
  box-shadow: 0 2px 8px rgba(12, 18, 34, 0.2);
}
.btn-secondary:hover {
  background: var(--ink);
  box-shadow: 0 4px 14px rgba(12, 18, 34, 0.3);
}

/* Cookie banner — same dark strip */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  padding: 1.25rem var(--space);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  display: none;
  border-top: 3px solid var(--accent);
}
.cookie-banner.show { display: block; }
.cookie-banner p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: rgba(254, 253, 251, 0.9);
  line-height: 1.5;
}
.cookie-banner .buttons { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* Article */
.article-body { max-width: 680px; }
.article-body h2 { margin-top: 2rem; }

.links-block { margin: 1.5rem 0; }
.links-block a { margin-right: 1rem; }

img[loading="lazy"] { background: var(--border); }

/* Responsive */
@media (max-width: 640px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.4rem; }
  .card-grid { grid-template-columns: 1fr; }
}
