/* ═══════════════════════════════════════════════
   AF AKDENİZ — home.css (Homepage only)
   ═══════════════════════════════════════════════ */

/* ── SNAP WRAPPER ── */
.snap-wrap {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.snap-wrap::-webkit-scrollbar { display: none; }

/* ── SNAP SECTION BASE ── */
.snap-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

/* ── SIDE DOTS ── */
.side-dots {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(240,235,226,0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.35s, transform 0.35s;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
.dot:hover { background: var(--cream2); }

/* ═══════ S1 – HERO ═══════ */
.sec-hero { display: flex; align-items: center; justify-content: center; }

.sec-hero-bg {
  position: absolute; inset: 0;
}
.sec-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.08) translateY(0px);
  will-change: transform;
  transition: transform 0s linear;
}
.sec-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.75) 0%,
    rgba(13,13,13,0.35) 50%,
    rgba(13,13,13,0.6) 100%
  );
}

.sec-hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.badge {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: rgba(240,235,226,0.65);
  border: 1px solid rgba(240,235,226,0.18);
  padding: 5px 14px 4px;
  border-radius: 1px;
}
.badge-sep { color: var(--gold); font-size: 16px; opacity: 0.6; }

.sec-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 860px;
  padding: 0 24px;
}
.sec-hero-content .label { animation: fadeUp 1s 0.3s both; }
.sec-hero-content .headline-xl {
  animation: fadeUp 1.1s 0.5s both;
  margin-bottom: 24px;
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}
.sec-hero-content .body-text {
  animation: fadeUp 1s 0.7s both;
  margin-bottom: 40px;
  color: rgba(240,235,226,0.8);
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.85s both;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeUp 1s 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: lineScroll 2.5s ease-in-out infinite;
}
@keyframes lineScroll {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-scroll-cue span {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240,235,226,0.4);
}

/* ═══════ S2 – SPLIT ═══════ */
.sec-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.sec-split-img {
  position: relative;
  overflow: hidden;
}
.sec-split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.snap-section.snap-in .sec-split-img img {
  transform: scale(1.04);
}
.sec-split-text {
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 72px;
}

/* ═══════ S3 – STATS ═══════ */
.sec-stats {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sec-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(184,150,90,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.sec-stats-inner {
  text-align: center;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.sec-stats-inner .headline-lg {
  margin-bottom: 72px;
  color: var(--cream);
}
.stats-grid {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.stat { flex: 1; padding: 0 32px; }
.stat-val {
  font-family: var(--ff-serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream3);
  font-weight: 400;
}
.stat-vr {
  width: 1px;
  height: 80px;
  background: var(--border2);
  flex-shrink: 0;
}

/* ═══════ S4/S5 – FEATURED ═══════ */
.sec-feature {
  display: flex;
  align-items: flex-end;
}
.sec-feature-bg {
  position: absolute; inset: 0;
}
.sec-feature-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
}
.snap-section.snap-in .sec-feature-bg img {
  transform: scale(1.04);
}
.sec-feature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,13,13,0.85) 0%,
    rgba(13,13,13,0.5) 50%,
    rgba(13,13,13,0.2) 100%
  );
}
.sec-feature-alt .sec-feature-overlay {
  background: linear-gradient(
    to left,
    rgba(13,13,13,0.85) 0%,
    rgba(13,13,13,0.5) 50%,
    rgba(13,13,13,0.2) 100%
  );
}
.sec-feature-content {
  position: relative;
  z-index: 2;
  padding: 0 96px 96px;
  max-width: 620px;
}
.sec-feature-alt .sec-feature-content {
  margin-left: auto;
  text-align: right;
}
.sec-feature-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.sec-feature-content .headline-xl {
  color: var(--white);
  margin-bottom: 20px;
}
.sec-feature-content .body-text {
  color: rgba(240,235,226,0.75);
}

.sec-feature-info {
  position: absolute;
  right: 96px;
  bottom: 96px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border2);
  background: rgba(13,13,13,0.7);
  backdrop-filter: blur(12px);
  padding: 0;
  min-width: 180px;
}
.sec-feature-alt .sec-feature-info {
  right: auto;
  left: 96px;
}
.finfo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  gap: 32px;
}
.finfo-row:last-child { border-bottom: none; }
.finfo-row span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream3);
}
.finfo-row strong {
  font-size: 13px;
  font-weight: 400;
  color: var(--cream);
}

/* ═══════ S6 – CTA ═══════ */
.sec-cta {
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--border);
}
.sec-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.sec-cta-inner {
  text-align: center;
  max-width: 680px;
  padding: 0 32px;
  margin-bottom: 60px;
}
.sec-cta-inner .label { margin-bottom: 20px; }
.sec-cta-inner .headline-xl { color: var(--cream); margin-bottom: 24px; }
.sec-cta-inner .body-text { margin-bottom: 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Snap footer */
.snap-footer {
  width: 100%;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  position: absolute;
  bottom: 0;
}
.sf-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.sf-links {
  display: flex;
  gap: 32px;
}
.sf-links a {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream3);
  transition: color 0.25s;
}
.sf-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   RESPONSIVE HOME
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .sec-split-text { padding: 60px 48px; }
  .sec-feature-content { padding: 0 60px 60px; }
  .sec-feature-info { right: 60px; bottom: 60px; }
  .sec-feature-alt .sec-feature-info { right: auto; left: 60px; }
  .sf-inner { padding: 0 40px; }
}

@media (max-width: 768px) {
  .side-dots { display: none; }
  .snap-wrap { scroll-snap-type: none; overflow-y: auto; height: auto; }
  .snap-section {
    height: auto;
    min-height: 100svh;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  /* Hero */
  .sec-hero-content .headline-xl { font-size: clamp(36px, 10vw, 52px); }
  .hero-btns { flex-direction: column; align-items: center; }

  /* Split */
  .sec-split {
    grid-template-columns: 1fr;
    min-height: auto;
    height: auto;
  }
  .sec-split-img { height: 55vw; min-height: 260px; }
  .sec-split-text { padding: 48px 24px; }

  /* Stats */
  .stats-grid { flex-direction: column; gap: 32px; }
  .stat-vr { width: 80px; height: 1px; }
  .stat { padding: 0; }

  /* Featured */
  .sec-feature {
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
  }
  .sec-feature-content {
    padding: 0 24px 24px;
    max-width: 100%;
  }
  .sec-feature-alt .sec-feature-content { text-align: left; }

  /* Info kutusu mobilde alt şerit olarak */
  .sec-feature-info,
  .sec-feature-alt .sec-feature-info {
    position: relative;
    right: auto; left: auto; bottom: auto;
    display: flex;
    flex-direction: row;
    min-width: 0;
    margin: 0 0 40px 0;
    border-left: none;
    border-right: none;
  }
  .finfo-row {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 10px;
    gap: 6px;
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
  .finfo-row:last-child {
    border-right: none;
    border-bottom: none;
  }
  .finfo-row span  { font-size: 9px; }
  .finfo-row strong { font-size: 12px; }

  /* CTA */
  .snap-footer { position: static; }
  .sf-inner { padding: 0 24px; flex-direction: column; text-align: center; }
  .sf-links { flex-wrap: wrap; justify-content: center; gap: 20px; }
}
