/* ===== Tokens ===== */
:root {
  --color-bg: #ffffff;
  --color-bg-alt: #efe9e0;
  --color-dark: #6f6353;
  --color-text: #3f4245;
  --color-text-muted: #636569;
  --color-gold: #85754e;
  --color-accent: #a8977b;
  --color-accent-hover: #7f715c;
  --color-border: #eaeaec;

  --font-sans: 'Poppins', Arial, Helvetica, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --header-h: 84px;
  --container-w: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== Image placeholder ===== */
.img-ph {
  aspect-ratio: var(--ratio, 16/9);
  width: 100%;
  background: repeating-linear-gradient(45deg, #ece6da, #ece6da 12px, #e1d9c8 12px, #e1d9c8 24px);
  border: 1px dashed #c3b79c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a3957a;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.img-ph.dark {
  background: repeating-linear-gradient(45deg, #8a8071, #8a8071 12px, #7c725f 12px, #7c725f 24px);
  border-color: #5f584a;
  color: #e7e1d3;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--color-accent);
  background: #fff;
  color: var(--color-accent);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn-dark {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
}
.btn-dark:hover { background: #000; }

.btn-outline:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #fff;
}

.btn-line {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  padding: 11px 22px;
}
.btn-line:hover {
  background: #fff;
  color: var(--color-text);
}

/* ===== Header ===== */
.site-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
}

.site-header {
  background: transparent;
  border-bottom: 1px solid transparent;
  color: #fff;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.site-header-wrap.is-scrolled .site-header {
  background: #fff;
  border-bottom-color: var(--color-border);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  color: var(--color-text);
}

.header-inner {
  width: 100%;
  height: var(--header-h);
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}

.logo {
  grid-column: 1;
  justify-self: start;
}

.logo-img {
  height: 64px;
  width: auto;
  flex-shrink: 0;
}
.logo-img.small { height: 48px; }

.main-nav { grid-column: 2; display: flex; justify-content: center; }
.main-nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 2px;
  transition: color 0.2s ease;
}
.main-nav > ul > li > a:hover { color: var(--color-gold); }
.chev { transition: transform 0.2s ease; }

.has-dropdown { position: relative; }
.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.has-dropdown:hover .chev { transform: rotate(180deg); }
.dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--color-text);
}
.dropdown li a:hover { background: var(--color-bg-alt); color: var(--color-gold); }

.header-cta { grid-column: 3; justify-self: end; flex-shrink: 0; font-size: 0.85rem; padding: 15px 30px; }

.hamburger {
  grid-column: 3;
  justify-self: end;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  flex-shrink: 0;
  margin-left: auto;
}
.hamburger-lines { display: flex; flex-direction: column; gap: 4px; width: 20px; }
.hamburger-lines span { display: block; height: 2px; background: currentColor; }
.hamburger-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ===== Mobile menu panel ===== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }

.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: min(340px, 85vw);
  background: #e4e4e4;
  padding: 24px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-menu-overlay.open .mobile-menu-panel { transform: translateX(0); }

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #727272;
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.mobile-menu-logo { margin-bottom: 24px; }

.mobile-nav > li { border-bottom: 1px solid rgba(0,0,0,0.08); }
.mobile-nav > li > a,
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 4px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
}
.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.mobile-dropdown.open { max-height: 320px; }
.mobile-dropdown li a {
  display: block;
  padding: 10px 4px 10px 16px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* ===== Mobile bottom bar ===== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: #fff;
  border-top: 1px solid var(--color-border);
}
.mobile-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 4px 12px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
}
.mobile-bar-item.active {
  background: var(--color-dark);
  color: #fff;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  background: #1c1a16;
  overflow: hidden;
}

.hero-slider { width: 100%; height: 100%; position: relative; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: none;
  background: none;
  padding: 10px;
  color: #fff;
  cursor: pointer;
  opacity: 0.85;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.55));
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.hero-arrow:hover { opacity: 1; }
.hero-arrow.prev { left: 8px; }
.hero-arrow.prev:hover { transform: translateY(-50%) translateX(-3px); }
.hero-arrow.next { right: 8px; }
.hero-arrow.next:hover { transform: translateY(-50%) translateX(3px); }

/* ===== Sections ===== */
.section { padding: 90px 0; scroll-margin-top: var(--header-h); }
#havuzlar, #iletisim, #kampanyalar, #galeri { scroll-margin-top: var(--header-h); }

.label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}
.label.light { color: #e7e1d3; }

.heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--color-gold);
  font-size: 2.6rem;
  line-height: 1.25;
  margin-bottom: 22px;
}
.heading.light { color: #f6efe0; }

.section-desc {
  color: var(--color-text-muted);
  max-width: 640px;
  font-size: 0.98rem;
}
.section-desc.light { color: #ded6c6; }

.section-heading { margin-bottom: 46px; }
.section-heading.center { text-align: center; }
.section-heading.center .section-desc { margin: 0 auto; }

/* Intro */
.intro-text { max-width: 760px; }
.intro-text p { color: var(--color-text-muted); margin-bottom: 16px; }
.intro-text p:last-child { margin-bottom: 0; }

/* Rooms */
.rooms { background: var(--color-bg-alt); }

.slider-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 14px;
}

.slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  flex: 1;
  padding-bottom: 4px;
  cursor: grab;
  user-select: none;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.room-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.room-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  pointer-events: none;
}

.slider-arrow {
  flex-shrink: 0;
  width: 44px;
  align-self: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text);
  transition: background 0.2s ease, color 0.2s ease;
}
.slider-arrow:hover { background: var(--color-text); color: #fff; }
.room-body { padding: 24px 22px; display: flex; flex-direction: column; gap: 10px; }
.room-body h3 {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-gold);
  font-size: 1.35rem;
}
.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.room-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}
.room-body p { color: var(--color-text-muted); font-size: 0.9rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
  transition: gap 0.2s ease;
}
.link-arrow:hover { gap: 12px; color: var(--color-gold); }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: #d4cbb8;
  cursor: pointer;
  padding: 0;
}
.slider-dots button.active { background: var(--color-text); }

.rooms-cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

/* Spa */
.spa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.spa-card { position: relative; overflow: hidden; }
.spa-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.spa-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.45));
}
.spa-card-overlay h3 {
  font-family: var(--font-sans);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.spa-card-overlay p { color: #f1ede2; font-size: 0.88rem; max-width: 220px; }

/* Food */
.food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.food-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.food-text {
  padding: 90px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.food-text p:not(.label) { color: var(--color-text-muted); margin-bottom: 18px; }
.food-text .btn { align-self: flex-start; margin-top: 8px; }


/* Footer */
.footer-deco-bar {
  height: 220px;
  background: var(--color-dark);
}

.site-footer { background: #fff; }
.footer-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 64px 32px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 32px;
}
.footer-brand .logo-img { height: 90px; }

.footer-col h4 {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-gold);
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: var(--color-text-muted);
  font-size: 0.86rem;
}
.footer-col ul li a:hover { color: var(--color-gold); }

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 0.86rem;
}
.contact-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--color-gold); }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  background: #f4f1ea;
  text-align: center;
  padding: 18px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--color-text);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 80px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 120;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-bottom-bar { display: flex; }
  .whatsapp-float { display: none; }
  body { padding-bottom: 64px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .spa-grid { grid-template-columns: 1fr; }
  .food-grid { grid-template-columns: 1fr; }
  .food-text { padding: 48px 28px; }
  .heading { font-size: 2.1rem; }
  .section { padding: 60px 0; }

  .room-card { flex: 0 0 100%; }
  .room-img { height: 320px; }
  .rooms .slider-arrow { display: none; }
  .rooms .slider-wrap { gap: 0; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .footer-inner { grid-template-columns: 1fr; padding: 48px 20px 32px; }
  .rooms-cta { justify-content: center; }
}

/* ===== Konaklama page ===== */
.konaklama-hero {
  padding-top: calc(var(--header-h) + 56px);
  padding-bottom: 10px;
}
.page-title { margin-bottom: 16px; }

.room-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.room-detail-gallery { order: 1; }
.room-detail-text { order: 2; }
.room-detail.reverse .room-detail-gallery { order: 2; }
.room-detail.reverse .room-detail-text { order: 1; }

.room-detail-meta {
  color: var(--color-text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.room-detail-text p { color: var(--color-text-muted); margin-bottom: 16px; }
.room-detail-text .btn { margin-top: 8px; }
.room-detail-note { color: var(--color-text) !important; }

.room-gallery { position: relative; }
.room-gallery-track {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.room-gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.room-gallery-slide.is-active { opacity: 1; z-index: 1; }
.room-gallery-slide img { width: 100%; height: 100%; object-fit: cover; }

.room-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: none;
  background: none;
  padding: 8px;
  color: #fff;
  cursor: pointer;
  opacity: 0.85;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.55));
  transition: opacity 0.2s ease;
}
.room-gallery-arrow:hover { opacity: 1; }
.room-gallery-arrow.prev { left: 8px; }
.room-gallery-arrow.next { right: 8px; }

.room-gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.22);
}
.room-gallery-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  padding: 0;
}
.room-gallery-dots button.active { background: #fff; }

@media (max-width: 860px) {
  .room-detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .room-detail-gallery,
  .room-detail.reverse .room-detail-gallery { order: -1; }
  .room-detail-text,
  .room-detail.reverse .room-detail-text { order: 2; }
}

.room-img-ph { height: 220px; aspect-ratio: auto; }

/* ===== Oda detay sayfası ===== */
.room-hero {
  position: relative;
  margin-top: var(--header-h);
  width: 100%;
  overflow: hidden;
}

.room-hero-gallery { position: relative; }
.room-hero-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.room-hero-track::-webkit-scrollbar { display: none; }
.room-hero-pane {
  flex: 0 0 50%;
  height: 65vh;
  min-height: 380px;
}
.room-hero-pane img { width: 100%; height: 100%; object-fit: cover; display: block; }

.room-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: none;
  background: none;
  padding: 10px;
  color: #fff;
  cursor: pointer;
  opacity: 0.85;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.55));
  transition: opacity 0.2s ease;
}
.room-hero-arrow:hover { opacity: 1; }
.room-hero-arrow.prev { left: 12px; }
.room-hero-arrow.next { right: 12px; }

.room-intro { padding-top: 56px; padding-bottom: 30px; }
.page-title { margin-bottom: 20px; }

.room-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--color-bg-alt);
  padding: 16px 22px;
  margin-bottom: 26px;
}
.room-meta-bar span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}
.room-meta-bar svg { color: var(--color-gold); }

.room-detail-text-p { color: var(--color-text-muted); margin-bottom: 16px; max-width: 900px; }

.room-features { padding-top: 10px; padding-bottom: 10px; }
.room-features .heading { font-size: 1.9rem; margin-bottom: 26px; }
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  border-top: 1px solid var(--color-border);
  padding-top: 28px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
  font-size: 0.95rem;
}
.feature-item svg { color: var(--color-gold); flex-shrink: 0; }

.room-info { padding-top: 10px; padding-bottom: 10px; }
.room-info .heading { font-size: 1.9rem; margin-bottom: 26px; }
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 48px;
  border-top: 1px solid var(--color-border);
  padding-top: 28px;
}
.info-col p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.info-col p strong { color: var(--color-text); }

@media (max-width: 860px) {
  .room-hero-pane { flex-basis: 100%; height: 42vh; min-height: 240px; }
  .info-grid { grid-template-columns: 1fr; gap: 0; }
}

/* ===== Havuzlar sayfası ===== */
.pool-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.pool-details {
  border-top: 1px solid var(--color-border);
  padding-top: 18px;
  margin-top: 6px;
}
.pool-details p {
  color: var(--color-text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}
.pool-details p strong { color: var(--color-text); }
.pool-extra-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--color-gold);
  font-weight: 600;
  text-decoration: underline;
}
.pool-extra-link:hover { color: var(--color-accent-hover); }

/* ===== Kampanyalar sayfası ===== */
.campaign-block { padding-top: 20px; padding-bottom: 20px; }
.campaign-block.alt { background: var(--color-bg-alt); }
.campaign-text { max-width: 900px; }
.campaign-text > p { color: var(--color-text-muted); margin-bottom: 16px; line-height: 1.7; }

.campaign-subheading {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-gold);
  font-size: 1.5rem;
  margin: 30px 0 16px;
}

.campaign-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.campaign-list li {
  color: var(--color-text-muted);
  padding: 14px 0;
  border-top: 1px solid var(--color-border);
  line-height: 1.6;
}
.campaign-list li:last-child { border-bottom: 1px solid var(--color-border); }
.campaign-list li strong { color: var(--color-text); }

.campaign-notes-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 10px;
}
.campaign-notes p {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* ===== Bize Ulaşın sayfası ===== */
.contact-block { padding-top: 20px; padding-bottom: 40px; }
.contact-block.alt { background: var(--color-bg-alt); }
.contact-block .heading { font-size: 1.9rem; margin-bottom: 24px; }

.contact-info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 26px;
  max-width: 520px;
}
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
}
.contact-info-list li:last-child { border-bottom: 1px solid var(--color-border); }
.contact-info-list li svg { color: var(--color-gold); flex-shrink: 0; }
.contact-info-list li a { color: var(--color-text); font-weight: 600; }
.contact-info-list li a:hover { color: var(--color-accent-hover); }
