/* Site layout — Güncel Bonus
   Ayrı dosya: çark stilleri style.css içinde kalır. */

:root {
  --bg: #f3efe6;
  --bg-deep: #0b3d2e;
  --ink: #14201a;
  --muted: #4a5c52;
  --line: #d5cbb8;
  --gold: #c9a24a;
  --gold-soft: #e8c46a;
  --surface: #fffdf8;
  --focus: #1f6b4f;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 61, 46, 0.08);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 1120px;
  --header-h: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body.site-body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
}

body.site-body img {
  max-width: 100%;
  height: auto;
  display: block;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--bg-deep);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 10000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 61, 46, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(232, 196, 106, 0.25);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1rem;
  min-height: var(--header-h);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}

body.site-body .site-logo img {
  display: block;
  width: auto;
  height: 40px;
  max-width: min(192px, 52vw);
  max-height: 40px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
}

.site-nav__list a {
  color: #e8efe9;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  display: inline-block;
}

.site-nav__list a:hover,
.site-nav__list a[aria-current="page"] {
  background: rgba(232, 196, 106, 0.15);
  color: var(--gold-soft);
}

.site-nav__list a:focus-visible,
.site-logo:focus-visible,
.nav-toggle:focus-visible,
.bonus-card:focus-visible,
.btn:focus-visible,
.site-footer a:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(245, 240, 230, 0.35);
  color: #f5f0e6;
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #0a3327;
    padding: 0.75rem;
    display: none;
    border-bottom: 1px solid rgba(232, 196, 106, 0.2);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
  }

  .site-nav__list a {
    display: block;
    padding: 0.85rem 1rem;
  }
}

/* Hero — header altında; masaüstü 2 kolon (sol metin / sağ çark) */
.hero-section {
  position: relative;
  margin-top: var(--header-h);
}

.hero-section .main_wrapper {
  min-height: calc(100dvh - var(--header-h));
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-section .container,
.hero-section .main-wrapper-block.hero-layout {
  height: 100%;
  min-height: calc(100dvh - var(--header-h));
}

.hero-section .main-wrapper-block.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(1rem, 3vh, 2rem) clamp(1rem, 3vw, 2rem);
  box-sizing: border-box;
}

.hero-section .hero-caption {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  z-index: 2;
  text-align: left;
  color: #f5f0e6;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
  pointer-events: auto;
  width: 100%;
  max-width: 34rem;
  padding: 0;
}

.hero-section .hero-caption h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.hero-section .hero-caption p {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.45;
  opacity: 0.95;
}

.hero-section .main__wheel_container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  min-height: 0;
  grid-template-columns: none;
}

.hero-section .main__wheel {
  margin-top: 0;
  grid-column: auto;
  padding-right: 0;
  width: 100%;
  max-width: 520px;
  align-items: center;
  justify-content: center;
}

.hero-section .wheel-container {
  width: min(480px, 100%) !important;
  height: auto !important;
  max-width: min(480px, 100%) !important;
  max-height: none !important;
  margin: 0 auto;
}

.hero-section .wheel__btn {
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

body.site-body > main > .page-hero {
  margin-top: var(--header-h);
}

/* Tablet / mobil: dikey yığın — kısa hero, üst üste binme yok */
@media (max-width: 900px) {
  .hero-section .main_wrapper {
    min-height: 0;
    height: auto;
    overflow: visible;
  }

  .hero-section .container,
  .hero-section .main-wrapper-block.hero-layout {
    min-height: 0;
    height: auto;
  }

  .hero-section .main-wrapper-block.hero-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.65rem;
    padding: 0.75rem 0.85rem 1rem;
  }

  .hero-section .hero-caption {
    order: 1;
    text-align: center;
    max-width: none;
    padding: 0.15rem 0.35rem 0.25rem;
    flex-shrink: 0;
  }

  .hero-section .hero-caption h1 {
    font-size: clamp(1.2rem, 5.2vw, 1.6rem);
    margin-bottom: 0.3rem;
  }

  .hero-section .hero-caption p {
    font-size: clamp(0.85rem, 3.2vw, 0.98rem);
  }

  .hero-section .main__wheel_container {
    order: 2;
    flex-shrink: 0;
    padding-bottom: 0;
    height: auto;
  }

  .hero-section .main__wheel {
    max-width: min(280px, 68vw);
    margin: 0 auto;
  }

  .hero-section .wheel-container {
    width: min(260px, 64vw) !important;
    max-width: min(260px, 64vw) !important;
    height: auto !important;
  }

  .hero-section .wheel {
    padding: 8% 4% 4% 4%;
  }

  .hero-section .wheel__btn {
    margin-top: 0.15rem;
  }

  .hero-section .hero-btn {
    width: 168px;
    height: 66px;
    margin: 0 auto;
    background-size: contain;
    background-position: center;
  }

  .hero-section .decor {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-section .main_wrapper {
    min-height: 0;
  }

  .hero-section .main-wrapper-block.hero-layout {
    gap: 0.5rem;
    padding: 0.55rem 0.65rem 0.85rem;
  }

  .hero-section .hero-caption h1 {
    font-size: 1.15rem;
    line-height: 1.2;
  }

  .hero-section .main__wheel {
    max-width: min(240px, 72vw);
  }

  .hero-section .wheel-container {
    width: min(230px, 70vw) !important;
    max-width: min(230px, 70vw) !important;
    height: auto !important;
  }

  .hero-section .hero-btn {
    width: 150px;
    height: 59px;
  }
}

/* Bonus strip */
.bonus-strip {
  width: 100%;
  background: var(--bg-deep);
  padding: 0;
}

.bonus-strip__head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1rem 1rem;
  color: #f5f0e6;
}

.bonus-strip__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: 0 0 0.4rem;
  line-height: 1.25;
}

.bonus-strip__head p {
  margin: 0;
  color: rgba(245, 240, 230, 0.8);
  max-width: 48rem;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  width: 100%;
}

.bonus-card {
  --card-bg: #334155;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 140px;
  padding: 1.1rem 1rem;
  text-decoration: none;
  color: inherit;
  border: 0;
  background-color: var(--card-bg);
  background-image: linear-gradient(
    145deg,
    color-mix(in srgb, var(--card-bg) 72%, #ffffff) 0%,
    var(--card-bg) 48%,
    color-mix(in srgb, var(--card-bg) 68%, #000000) 100%
  );
  transition: transform 0.2s ease, filter 0.2s ease;
}

.bonus-card:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  z-index: 1;
}

.bonus-card__brand {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.bonus-card__text {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  flex: 1;
}

.bonus-card__cta {
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Content sections */
.site-main {
  background: var(--bg);
}

.section {
  padding: 3.5rem 1rem;
}

.section--alt {
  background: var(--surface);
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: var(--bg-deep);
}

.section h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 1.75rem 0 0.6rem;
  color: var(--ink);
}

.section h4 {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.45rem;
  color: var(--ink);
}

.section p,
.section li {
  color: var(--muted);
  font-size: 1.02rem;
}

.section p {
  margin: 0 0 1rem;
  max-width: 65ch;
}

.section ul,
.section ol {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  max-width: 65ch;
}

.section li {
  margin-bottom: 0.45rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--ink);
}

.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .card-row {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.section--alt .info-card {
  background: #fff;
}

.info-card h3 {
  margin-top: 0;
}

.info-card a {
  color: var(--focus);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--bg-deep);
  color: #f5f0e6;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  border: 0;
  cursor: pointer;
}

.btn:hover {
  background: #0f4d3a;
}

.btn--ghost {
  background: transparent;
  color: var(--bg-deep);
  border: 1px solid var(--bg-deep);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* FAQ */
.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.9rem 1rem;
  margin-bottom: 0.65rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
}

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

.faq summary::before {
  content: "+";
  display: inline-block;
  width: 1.25rem;
  color: var(--gold);
  font-weight: 800;
}

.faq details[open] summary::before {
  content: "–";
}

.faq details p {
  margin: 0.75rem 0 0.25rem;
}

/* Breadcrumb */
.breadcrumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.35rem;
  color: var(--line);
}

.breadcrumb a {
  color: var(--focus);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Page hero for inner pages */
.page-hero {
  background:
    linear-gradient(135deg, rgba(11, 61, 46, 0.94), rgba(20, 70, 50, 0.88)),
    url("../images/main-bg.png") center/cover;
  color: #f5f0e6;
  padding: 3rem 1rem 2.5rem;
}

.page-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.page-hero p {
  margin: 0;
  max-width: 52ch;
  opacity: 0.92;
  font-size: 1.05rem;
}

/* Footer */
.site-footer {
  background: #081f18;
  color: #d7e0db;
  padding: 3rem 1rem 2rem;
}

.site-footer__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.site-footer h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-soft);
  margin: 0 0 0.75rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.site-footer a {
  color: #d7e0db;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold-soft);
}

.site-footer__brand {
  margin: 0 0 0.6rem;
}

body.site-body .site-footer__brand img {
  display: block;
  width: auto;
  height: 36px;
  max-width: 180px;
  max-height: 36px;
}

.site-footer__copy {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  color: rgba(215, 224, 219, 0.75);
}

.disclaimer {
  font-size: 0.88rem;
  color: var(--muted);
  border-left: 3px solid var(--gold);
  padding-left: 0.85rem;
  margin-top: 1.5rem;
  max-width: 70ch;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  max-width: 32rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--focus);
  outline-offset: 1px;
}

.brand-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.brand-tile {
  border-radius: var(--radius);
  padding: 1.25rem;
  color: #fff;
  text-decoration: none;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.brand-tile strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.prose-wide p {
  max-width: 70ch;
}

.prose-wide a.js-mail {
  cursor: pointer;
}

@media (max-width: 480px) {
  .bonus-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bonus-card {
    min-height: 128px;
    padding: 0.85rem 0.75rem;
  }

  .bonus-card__text {
    font-size: 0.82rem;
  }
}

@media (min-width: 1440px) {
  .section {
    padding: 4rem 1rem;
  }
}
