/* VIP Batak — landing (minimal) */
:root {
  --felt-deep: #062818;
  --felt: #0a3d24;
  --felt-mid: #0f4a2e;
  --felt-lift: #145c38;
  --ivory: #f3efe6;
  --ivory-dim: #c8c0b0;
  --brass: #c9a227;
  --brass-soft: #ddb84a;
  --ink: #071a10;
  --line: rgba(243, 239, 230, 0.12);
  --gutter: 10px;
  --chrome-bg: #062818;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Figtree", sans-serif;
  background: var(--felt-deep);
  color: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brass-soft);
  text-decoration: none;
}

a:hover {
  color: var(--ivory);
}

.container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: var(--gutter);
}

/* Header — online/offline lobi ile aynı ölçü / renk / logo */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--chrome-bg);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 43px;
  width: 100%;
  box-sizing: border-box;
  padding: 17px var(--gutter);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ivory);
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.logo:hover {
  color: var(--ivory);
}

.logo-mark {
  width: 43px;
  height: 43px;
  border-radius: 11px;
  background: linear-gradient(to bottom right, var(--brass-soft), var(--brass));
  color: var(--ink);
  display: grid;
  place-items: center;
  flex: 0 0 43px;
}

.logo-mark svg {
  width: 26px;
  height: 26px;
  display: block;
  fill: currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--ivory-dim);
  padding: 8px 12px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--ivory);
}

.nav-links .nav-cta {
  margin-left: 4px;
  padding: 11px 19px;
  border-radius: 999px;
  background: var(--brass);
  color: var(--ink);
  font-family: Roboto, sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.1;
}

.nav-links .nav-cta:hover {
  background: var(--brass-soft);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ivory);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brass);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--brass-soft);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: rgba(243, 239, 230, 0.35);
  color: var(--ivory);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 70% 20%, rgba(20, 92, 56, 0.55), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(201, 162, 39, 0.08), transparent 50%),
    linear-gradient(165deg, var(--felt-mid) 0%, var(--felt) 42%, var(--felt-deep) 100%);
}

.hero .container {
  padding-inline: clamp(1.5rem, 5vw, 4.5rem);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.suit {
  position: absolute;
  font-family: "Fraunces", serif;
  font-size: clamp(4rem, 14vw, 9rem);
  color: rgba(243, 239, 230, 0.045);
  animation: suitDrift 18s ease-in-out infinite;
  user-select: none;
}

.suit-1 { top: 8%; left: 6%; animation-delay: 0s; }
.suit-2 { top: 18%; right: 8%; color: rgba(201, 162, 39, 0.07); animation-delay: -4s; }
.suit-3 { bottom: 12%; left: 18%; animation-delay: -8s; }
.suit-4 { bottom: 20%; right: 16%; animation-delay: -12s; }

@keyframes suitDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 1; }
  50% { transform: translateY(-18px) rotate(4deg); opacity: 0.7; }
}

.hero-grid {
  position: relative;
  display: grid;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
  justify-content: space-between;
  padding-block: clamp(3.25rem, 8vh, 5.5rem);
  max-width: 1180px;
  margin-inline: auto;
  width: 100%;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
    gap: clamp(2.5rem, 6vw, 5.5rem);
  }
}

.hero-copy {
  max-width: 34rem;
  animation: riseIn 0.9s var(--ease) both;
}

.hero-visual {
  display: flex;
  justify-content: center;
  animation: riseIn 1.05s var(--ease) 0.12s both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand {
  margin: 0 0 1.15rem;
  font-family: "Fraunces", serif;
  font-size: clamp(2.5rem, 6.5vw, 4.4rem);
  font-weight: 650;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ivory);
}

.brand span {
  display: block;
  color: var(--brass-soft);
}

.hero h1 {
  margin: 0 0 0.9rem;
  font-family: "Fraunces", serif;
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 550;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ivory);
}

.hero-lead {
  margin: 0 0 1.85rem;
  max-width: 38ch;
  color: var(--ivory-dim);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.table-scene {
  position: relative;
  width: min(100%, 400px);
  margin-inline: auto;
  aspect-ratio: 1 / 1.05;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 50% 40%, rgba(20, 92, 56, 0.9), transparent 60%),
    linear-gradient(160deg, var(--felt-lift), var(--felt-deep));
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  display: grid;
  place-items: center;
}

.fan {
  position: relative;
  width: 210px;
  height: 180px;
}

.fan-card {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 78px;
  height: 112px;
  margin-left: -39px;
  border-radius: 0.55rem;
  background: var(--ivory);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.45rem 0.5rem;
  font-family: "Fraunces", serif;
  font-weight: 650;
  font-size: 1.15rem;
  transform-origin: 50% 110%;
}

.fan-card .pip {
  align-self: flex-end;
  font-size: 1.35rem;
  line-height: 1;
}

.fan-card.red {
  color: #9b2c2c;
}

.fan-card.c1 { transform: rotate(-18deg) translateX(-42px); }
.fan-card.c2 { transform: rotate(0deg); z-index: 2; }
.fan-card.c3 { transform: rotate(18deg) translateX(42px); }

.scene-caption {
  position: absolute;
  bottom: 1.15rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head.center {
  margin-inline: 0;
  text-align: left;
}

.section-kicker {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}

.section-head h2 {
  margin: 0 0 0.6rem;
  font-family: "Fraunces", serif;
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--ivory-dim);
}

.modes {
  background: rgba(0, 0, 0, 0.18);
  border-block: 1px solid var(--line);
}

.modes-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .modes-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.mode {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  border-radius: 1.15rem;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(15, 74, 46, 0.55), rgba(6, 40, 24, 0.75));
  min-height: 100%;
}

.mode h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.mode p {
  margin: 0;
  color: var(--ivory-dim);
  flex: 1;
}

.mode .btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.reasons {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.reason {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 720px) {
  .reason {
    grid-template-columns: 11rem 1fr;
    gap: 1.5rem;
    align-items: baseline;
  }
}

.reason h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brass-soft);
}

.reason p {
  margin: 0;
  color: var(--ivory-dim);
}

/* FAQ */
.faq-list {
  max-width: none;
  margin: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.75rem 1.15rem 0;
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  font-weight: 550;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.1rem;
  color: var(--brass);
  font-family: "Figtree", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1.2rem;
  color: var(--ivory-dim);
  padding-right: 1.5rem;
}

/* Gizlilik / yasal sayfa — ana sayfa header/footer arasında */
.legal-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.legal-page main {
  flex: 1;
}

.legal {
  padding: 36px 0 56px;
  max-width: 820px;
}

.legal h1 {
  font-family: Fraunces, serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--ivory);
  margin: 0 0 8px;
  line-height: 1.25;
}

.legal .legal-updated {
  margin: 0 0 28px;
  color: var(--ivory-dim);
  font-size: 0.95rem;
}

.legal h2 {
  font-family: Figtree, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brass-soft);
  margin: 1.6rem 0 0.55rem;
}

.legal p,
.legal li {
  color: var(--ivory-dim);
  margin: 0 0 0.7rem;
}

.legal ul {
  margin: 0 0 0.7rem;
  padding-left: 1.2rem;
}

.legal a {
  color: var(--brass-soft);
}

.legal a:hover {
  color: var(--ivory);
}

/* Footer — online/offline lobi ile aynı ölçü / renk */
.site-footer {
  padding: 28px 0 22px;
  border-top: 1px solid var(--line);
  background: var(--chrome-bg);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer-brand {
  font-family: Roboto, sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ivory);
  margin: 0 0 6px;
}

.footer-brand + p {
  margin: 0;
  color: var(--ivory-dim);
  font-family: Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-links a {
  color: var(--ivory-dim);
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--ivory);
}

.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ivory-dim);
  font-family: Roboto, sans-serif;
  font-size: 13px;
}

@media (max-width: 720px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .header-inner {
    position: relative;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    background: var(--felt-deep);
    border: 1px solid var(--line);
    border-radius: 0.85rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero .container {
    padding-inline: 1.5rem;
  }

  .hero-grid {
    padding-block: 2.75rem 3.25rem;
    gap: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
