/* Datça Atlantik Spor Kulübü — damla / kobalt */
:root {
  --ink: #14161f;
  --muted: #5c6272;
  --paper: #f4f1ea;
  --paper-2: #ebe6db;
  --white: #fffcf7;
  --blue: #1b2fa0;
  --blue-deep: #121e6e;
  --blue-soft: #dfe4fb;
  --line: rgba(20, 22, 31, 0.12);
  --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --nav-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(244, 241, 234, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav.scrolled { background: rgba(255, 252, 247, 0.96); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-brand img {
  height: 64px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links > a,
.nav-dropdown-btn {
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 0;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-links > a:hover,
.nav-links > a.is-active,
.nav-dropdown.is-active > .nav-dropdown-btn {
  color: var(--blue);
}
.nav-dropdown { position: relative; }
.nav-dropdown-btn { display: inline-flex; align-items: center; gap: 6px; }
.nav-caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 250px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  display: none;
  z-index: 20;
}
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu { display: grid; }
.nav-dropdown-menu a {
  padding: 10px 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-active { color: var(--blue); background: var(--blue-soft); }
.nav-links .btn-register,
.nav-links > a.btn-register {
  margin-left: 10px;
  padding: 10px 18px;
  background: var(--blue);
  color: var(--white) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--blue);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

.btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--blue);
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
}
.btn-register:hover { background: var(--blue-deep); color: var(--white); }
.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.btn-line:hover { border-color: var(--blue); color: var(--blue); }
.btn-line-light { border-color: rgba(255,255,255,0.45); color: var(--white); }
.btn-line-light:hover { border-color: var(--white); color: var(--white); }
.text-link {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border-bottom: 1px solid currentColor;
}

.hero {
  background: var(--paper);
  padding: 28px 24px 20px;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  align-items: center;
  min-height: calc(88vh - var(--nav-h));
}
.hero-mark {
  display: flex;
  justify-content: center;
}
.hero-mark img {
  width: min(100%, 380px);
  filter: drop-shadow(0 18px 40px rgba(27, 47, 160, 0.18));
}
.kicker {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--blue-deep);
  margin-bottom: 18px;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--blue);
}
.hero-lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.branch-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.branch-strip a {
  padding: 18px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--ink);
}
.branch-strip a:last-child { border-right: none; }
.branch-strip a span {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--blue);
  letter-spacing: 0;
}
.branch-strip a:hover { background: var(--blue); color: var(--white); }
.branch-strip a:hover span { color: var(--white); }

.section { padding: 80px 0; }
.section-ink {
  background: var(--blue-deep);
  color: var(--white);
}
.section-ink .kicker { color: #9db0ff; }
.section-ink h2 { color: var(--white); }
.section-ink .lead { color: rgba(255,255,255,0.78); }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-head { margin-bottom: 36px; max-width: 36rem; }
.section-head h2,
.section h2,
.page-hero-copy h1,
.cta-band h2,
.event-card h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--blue-deep);
}
.section-head h2,
.section h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 10px; line-height: 1.05; }
.section-head p { color: var(--muted); }
.lead { font-size: 1.08rem; color: var(--muted); max-width: 54ch; }
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}
.stat-stack { display: grid; gap: 18px; }
.stat-stack article {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 16px;
}
.stat-stack strong {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.stat-stack p { color: rgba(255,255,255,0.72); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.sport-card {
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--line);
}
.sport-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.05);
}
.sport-card:hover img { filter: none; }
.sport-card-body { padding: 18px 18px 22px; }
.sport-card-body h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  color: var(--blue-deep);
  margin-bottom: 4px;
}
.sport-card-body p { color: var(--muted); font-size: 0.92rem; }
.chip {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.info-block {
  background: var(--white);
  padding: 22px;
  border: 1px solid var(--line);
}
.info-block h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--blue-deep);
}
.info-block p { color: var(--muted); }

.coach-preview {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.coach-tile { text-align: left; }
.coach-tile img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 10px;
  filter: grayscale(0.2);
}
.coach-tile strong {
  display: block;
  font-size: 0.92rem;
  color: var(--blue-deep);
}
.coach-tile span {
  display: block;
  font-size: 0.74rem;
  color: var(--muted);
}
.center-link { text-align: center; margin-top: 28px; }

.page-hero {
  background: var(--blue-deep);
  color: var(--white);
  min-height: 34vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: grayscale(0.5);
}
.page-hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,30,110,0.2), rgba(18,30,110,0.92)); }
.page-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 24px 40px;
}
.page-hero-copy .eyebrow,
.page-hero-copy .kicker { color: #9db0ff; }
.page-hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin-bottom: 8px;
}
.page-hero-copy p:last-child {
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
}
.eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.branch-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 36px;
  align-items: start;
}
.branch-aside,
.contact-aside {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px;
}
.branch-aside h2,
.contact-aside h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.coach-inline {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.coach-inline img {
  width: 84px;
  height: 108px;
  object-fit: cover;
}
.coach-inline strong {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--blue-deep);
}
.coach-inline .role {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.8rem;
  margin: 2px 0 8px;
}
.coach-inline p:last-child { color: var(--muted); font-size: 0.9rem; }
.point-list {
  margin-top: 18px;
  padding-left: 18px;
  color: var(--muted);
}
.point-list li { margin: 8px 0; }
.point-list a { color: var(--blue); font-weight: 700; }

.coach-grid { display: grid; gap: 2px; background: var(--line); border: 1px solid var(--line); }
.coach-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  background: var(--white);
}
.coach-block-photo img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  filter: grayscale(0.15);
}
.coach-block-body { padding: 28px 28px 28px 0; }
.coach-block-body h3 {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--blue-deep);
}
.coach-block-body .role {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 4px 0 8px;
}
.coach-branches {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px !important;
}
.coach-block-body p:last-child { color: var(--muted); }

.content-narrow { max-width: 860px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 24px;
}
.contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.contact-list h2 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-list p {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--blue-deep);
  line-height: 1.25;
}
.contact-list a { color: var(--blue); }

.event-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px;
  margin-bottom: 16px;
}
.event-card p { color: var(--muted); margin: 10px 0 0; }
.event-card-muted { background: var(--paper-2); }
.season-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.cta-band {
  padding: 88px 24px;
  background: var(--paper-2);
  text-align: left;
}
.cta-band-inner { max-width: 720px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 10px; }
.cta-band p { color: var(--muted); margin-bottom: 22px; }

.site-footer {
  background: #0c1238;
  color: rgba(255,255,255,0.72);
  padding: 36px 24px 24px;
}
.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.footer-brand img {
  height: 72px;
  width: auto;
  background: var(--white);
  padding: 6px;
}
.footer-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
}
.footer-brand small { color: rgba(255,255,255,0.65); }
.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer-links a { font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; }
.site-footer-links a:hover { color: white; }
.site-footer-copy {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 0;
  background: #128c7e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-float:hover { color: white; background: #0e6e62; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .coach-preview { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .branch-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .branch-strip a:nth-child(3) { border-right: none; }
}
@media (max-width: 980px) {
  .hero-grid,
  .card-grid,
  .split,
  .branch-layout,
  .coach-block,
  .info-grid,
  .contact-layout,
  .contact-list { grid-template-columns: 1fr; }
  .coach-block-body { padding: 0 18px 18px; }
  .hero-grid { min-height: 0; gap: 20px; }
  .hero-mark img { width: 180px; }
}
@media (max-width: 768px) {
  .nav-brand img { height: 52px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-dropdown-menu {
    position: static;
    display: none;
    border: none;
    background: var(--paper);
  }
  .nav-dropdown.open .nav-dropdown-menu { display: grid; }
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown.open:hover .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu { display: grid; }
  .nav-links .btn-register { margin-left: 0; width: 100%; }
  .card-grid,
  .coach-preview,
  .branch-strip { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 0; }
}
