/* =========================================================
   Hacıkışla Spor Kulübü — Tasarım Token Sistemi
   Palet: Saha çimi lacivert (#0B2340), forma bordosu (#7C1F2E),
          forma mavisi (#2E86C1), stadyum ışığı altını (#C9A227),
          krem zemin (#F6F3ED)
   Tipografi: Oswald (başlık, sportif/kondanse) + Inter (gövde)
   İmza öğe: forma çizgili (mavi/bordo) diyagonal şerit + skorbord şeridi
   ========================================================= */

:root {
  --navy: #0b2340;
  --navy-2: #132c4d;
  --maroon: #7c1f2e;
  --maroon-dark: #591420;
  --blue: #2e86c1;
  --blue-dark: #1f5f8b;
  --gold: #c9a227;
  --cream: #f6f3ed;
  --white: #ffffff;
  --ink: #1c2430;
  --muted: #5c6674;
  --line: #e4ded2;

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 10px;
  --shadow-sm: 0 2px 8px rgba(11, 35, 64, 0.08);
  --shadow-md: 0 10px 30px rgba(11, 35, 64, 0.14);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.5em;
  color: var(--navy);
  line-height: 1.15;
}
p { margin: 0 0 1em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Forma şeridi imza öğesi ------------------------------------------------ */
.jersey-stripe {
  height: 8px;
  background: repeating-linear-gradient(
    -45deg,
    var(--maroon) 0px, var(--maroon) 18px,
    var(--blue) 18px, var(--blue) 36px
  );
}

/* Header ------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.brand img { height: 52px; width: auto; }
.brand-text { display: flex; flex-direction: column; }
.brand-text .name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
}
.brand-text .slogan {
  font-size: 0.72rem;
  color: #b9c3d4;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.main-nav { display: flex; gap: 4px; }
.main-nav a {
  color: #dbe3ee;
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a.active { background: var(--maroon); color: var(--white); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.btn-call-header {
  display: none;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px 8px;
}

/* Buttons ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.9rem;
  padding: 13px 24px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { box-shadow: 0 8px 20px rgba(201, 162, 39, 0.4); }
.btn-outline { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-maroon { background: var(--maroon); color: var(--white); }
.btn-maroon:hover { box-shadow: 0 8px 20px rgba(124, 31, 46, 0.35); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 8px 14px; font-size: 0.78rem; }

/* Hero ---------------------------------------------------------------------- */
.hero {
  position: relative;
  color: var(--white);
  background: linear-gradient(180deg, rgba(11,35,64,0.88) 0%, rgba(11,35,64,0.94) 60%, var(--navy) 100%),
              var(--navy) center/cover no-repeat;
  padding: 88px 0 70px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image, none);
  background-size: cover;
  background-position: center 20%;
  opacity: 0.35;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before { content: "\26BD"; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  margin-bottom: 18px;
}
.hero .lead {
  font-size: 1.1rem;
  color: #d7dfec;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Skorbord istatistik şeridi -------------------------------------------- */
.scoreboard {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.scoreboard-item {
  padding: 22px 20px;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.scoreboard-item:first-child { border-left: none; }
.scoreboard-item .value {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--gold);
  display: block;
}
.scoreboard-item .label {
  font-size: 0.75rem;
  color: #aab6c8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Section generic ---------------------------------------------------------- */
section { padding: 72px 0; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head .eyebrow { color: var(--maroon); }
.section-head .eyebrow::before { content: "\2014\2014"; }
.section-alt { background: var(--white); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy .section-head p { color: var(--white); }

/* About / feature grid ------------------------------------------------------ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.about-photos { position: relative; }
.about-photos img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.about-photos .photo-main { width: 100%; }
.about-photos .photo-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--white);
  padding: 10px;
  box-shadow: var(--shadow-md);
}

/* Cards ---------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 26px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--blue);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .icon-badge {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--muted); margin-bottom: 16px; font-size: 0.95rem; }
.card-link { font-family: var(--font-display); font-size: 0.85rem; color: var(--maroon); text-transform: uppercase; }
.card-link:hover { text-decoration: underline; }

.card-post { overflow: hidden; padding: 0; border-top: none; }
.card-post img { width: 100%; height: 190px; object-fit: cover; }
.card-post .card-body { padding: 22px 22px 26px; border-top: 3px solid var(--maroon); }
.card-post .meta { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.card-post h3 { font-size: 1.1rem; }
.card-post p { color: var(--muted); font-size: 0.92rem; }

/* Gallery -------------------------------------------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* FAQ accordion -------------------------------------------------------------- */
.faq-list { max-width: 780px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--navy);
}
.faq-question .plus { font-size: 1.3rem; color: var(--maroon); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 24px;
  color: var(--muted);
}
.faq-item.open .faq-answer { max-height: 600px; padding: 0 24px 22px; }

/* CTA band --------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(120deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 6px; }
.cta-band p { color: #f0d9dc; margin: 0; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Blog detail --------------------------------------------------------------- */
.post-hero { padding: 50px 0 30px; }
.post-cover { width: 100%; max-height: 420px; object-fit: cover; border-radius: var(--radius); margin-bottom: 30px; }
.post-content { max-width: 760px; }
.post-content h2 { font-size: 1.5rem; margin-top: 1.4em; }
.post-content h3 { font-size: 1.2rem; margin-top: 1.2em; }
.post-content img { border-radius: var(--radius); margin: 20px 0; }
.post-content blockquote {
  border-left: 4px solid var(--maroon);
  margin: 24px 0;
  padding: 4px 20px;
  color: var(--muted);
  font-style: italic;
}
.post-meta { display: flex; gap: 16px; color: var(--muted); font-size: 0.88rem; margin-bottom: 22px; text-transform: uppercase; letter-spacing: 0.03em; }

/* Breadcrumb / page hero small ----------------------------------------------- */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 54px 0 44px;
}
.page-hero h1 { color: var(--white); margin-bottom: 6px; }
.page-hero p { color: #cfd8e6; margin: 0; }
.breadcrumb { font-size: 0.82rem; color: var(--gold); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.breadcrumb a { color: #cfd8e6; }
.breadcrumb a:hover { color: var(--white); }

/* Pagination ------------------------------------------------------------------ */
.pagination { display: flex; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; border-radius: 6px;
  background: var(--white); color: var(--navy); font-family: var(--font-display);
  box-shadow: var(--shadow-sm);
}
.pagination a:hover { background: var(--navy); color: var(--white); }
.pagination .current { background: var(--maroon); color: var(--white); }

/* Contact ---------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-info-item .icon-badge { width: 44px; height: 44px; border-radius: 10px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-info-item p { color: var(--muted); margin: 0; }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); width: 100%; height: 100%; min-height: 340px; border: none; }

/* Footer ------------------------------------------------------------------------ */
.site-footer { background: var(--navy); color: #b9c3d4; padding: 56px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { height: 46px; }
.footer-brand span { font-family: var(--font-display); color: var(--white); font-size: 1.1rem; text-transform: uppercase; }
.site-footer h5 { color: var(--white); font-family: var(--font-display); text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.05em; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; font-size: 0.9rem; }
.site-footer a:hover { color: var(--white); }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: var(--white);
}
.social-row a:hover { background: var(--maroon); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* Floating action buttons ------------------------------------------------------- */
.float-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  transition: transform 0.18s;
}
.float-btn:hover { transform: scale(1.08); }
.float-btn.whatsapp { background: #25d366; }
.float-btn.call { background: var(--maroon); }
.float-btn .pulse {
  position: absolute;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  animation: pulse 2s infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}

/* Utility --------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }

/* Responsive -------------------------------------------------------------------- */
@media (max-width: 980px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-inner { flex-wrap: wrap; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 3;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 10px;
  }
  .scoreboard { grid-template-columns: repeat(2, 1fr); }
  .scoreboard-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
  .scoreboard-item:nth-child(1), .scoreboard-item:nth-child(2) { border-top: none; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 40px; }
}
