/* =============================================
   SÖYLEMIŞ BAŞAK SPOR - ANA STİL DOSYASI
   Renkler: Sarı #F9C015 | Yeşil #1A6B2E
   ============================================= */

/* ---------- CSS DEĞİŞKENLERİ ---------- */
:root {
  --yellow:        #F9C015;
  --yellow-dark:   #E0A800;
  --yellow-light:  #FEF3C7;
  --green:         #1A6B2E;
  --green-dark:    #0F4A1E;
  --green-light:   #D1FAE5;
  --white:         #FFFFFF;
  --dark:          #111827;
  --gray:          #6B7280;
  --gray-light:    #F3F4F6;
  --border:        #E5E7EB;
  --shadow:        0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg:     0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --radius:        8px;
  --radius-lg:     16px;
  --transition:    all 0.25s ease;
  --font:          'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* =============================================
   ÜSTBAR (TOP BAR)
   ============================================= */
.topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 6px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,0.85); transition: var(--transition); }
.topbar a:hover { color: var(--yellow); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-right .social-links { display: flex; gap: 10px; }
.topbar-right .social-links a { font-size: 0.9rem; }

/* =============================================
   HEADER & NAVİGASYON
   ============================================= */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
}
.logo-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--yellow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}
.logo-text { line-height: 1.2; }
.logo-text .club-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green);
  display: block;
}
.logo-text .club-sub {
  font-size: 0.72rem;
  color: var(--gray);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Ana Navigasyon */
.main-nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.nav-link:hover,
.nav-link.active {
  color: var(--green);
  background: var(--green-light);
}
.nav-link .arrow {
  font-size: 0.65rem;
  transition: transform 0.2s;
}
.nav-item:hover .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
  overflow: hidden;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-link {
  display: block;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
  border-bottom: 1px solid var(--border);
}
.dropdown-link:last-child { border-bottom: none; }
.dropdown-link:hover {
  background: var(--green-light);
  color: var(--green);
  padding-left: 22px;
}

/* TFF özel link */
.nav-link.tff-link {
  background: var(--yellow);
  color: var(--green-dark);
  border-radius: var(--radius);
}
.nav-link.tff-link:hover {
  background: var(--yellow-dark);
  color: var(--green-dark);
}

/* Hamburger menü */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================
   CONTAINER
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   HERO BÖLÜMÜ (ANASAYFA)
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, #2D9E4F 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(249,192,21,0.08);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(249,192,21,0.05);
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 650px; }
.hero-badge {
  display: inline-block;
  background: rgba(249,192,21,0.2);
  border: 1px solid rgba(249,192,21,0.4);
  color: var(--yellow);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero h1 span { color: var(--yellow); }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--yellow);
  color: var(--green-dark);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
}

/* =============================================
   SAYFA BAŞLIĞI (İÇ SAYFALAR)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  padding: 50px 0;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
}
.breadcrumb a { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* =============================================
   BÖLÜM YAPISI
   ============================================= */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-alt { background: var(--gray-light); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header .eyebrow {
  display: inline-block;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-header h2 span { color: var(--green); }
.section-header p {
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--green), var(--yellow));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* =============================================
   KART BİLEŞENLERİ
   ============================================= */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-body { padding: 24px; }
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  /* Resim eklenecek alanlar için placeholder */
}
.card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--green-light), var(--yellow-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.85rem;
}
.card-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.card-text { font-size: 0.875rem; color: var(--gray); line-height: 1.6; }
.card-date { font-size: 0.78rem; color: var(--gray); margin-top: 12px; }
.card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =============================================
   GRID SİSTEMİ
   ============================================= */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* =============================================
   İSTATİSTİK KARTLARI
   ============================================= */
.stats-bar {
  background: var(--green-dark);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--yellow);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* =============================================
   OYUNCU KARTLARI
   ============================================= */
.player-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.player-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.player-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
}
.player-photo-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.3);
}
.player-number {
  background: var(--yellow);
  color: var(--green-dark);
  font-size: 1.8rem;
  font-weight: 900;
  padding: 4px 16px;
  display: inline-block;
  margin-top: -2px;
}
.player-info { padding: 16px; }
.player-name { font-size: 1rem; font-weight: 700; color: var(--dark); }
.player-pos {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
  margin-top: 4px;
}

/* =============================================
   FİKSTÜR TABLOSU
   ============================================= */
.fixture-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.fixture-table thead tr { background: var(--green); color: var(--white); }
.fixture-table th, .fixture-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.875rem;
}
.fixture-table th { font-weight: 700; text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.5px; }
.fixture-table tbody tr { border-bottom: 1px solid var(--border); transition: var(--transition); }
.fixture-table tbody tr:last-child { border-bottom: none; }
.fixture-table tbody tr:hover { background: var(--gray-light); }
.fixture-table .team-cell { font-weight: 600; }
.fixture-table .score { font-weight: 800; color: var(--green); font-size: 1rem; }
.fixture-table .upcoming { color: var(--gray); font-style: italic; }

.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.badge-win  { background: #D1FAE5; color: #065F46; }
.badge-draw { background: #FEF3C7; color: #92400E; }
.badge-loss { background: #FEE2E2; color: #991B1B; }
.badge-upcoming { background: var(--gray-light); color: var(--gray); }

/* =============================================
   YÖNETİM / PERSONEL KARTLARI
   ============================================= */
.person-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px 24px;
}
.person-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.person-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--yellow);
  margin-bottom: 16px;
}
.person-avatar-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.4);
  border: 3px solid var(--yellow);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.person-name { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.person-role {
  display: inline-block;
  background: var(--yellow-light);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
}

/* =============================================
   HABER KARTLARI
   ============================================= */
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card .card-img { height: 180px; }
.news-card .card-body { flex: 1; }

/* Öne çıkan haber */
.news-featured {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.news-featured .main-news .card-img { height: 320px; }

/* =============================================
   TÜZÜK SAYFALARI
   ============================================= */
.doc-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
}
.doc-container h2 { font-size: 1.3rem; font-weight: 700; color: var(--green); margin: 32px 0 12px; }
.doc-container h2:first-child { margin-top: 0; }
.doc-container p { color: var(--gray); line-height: 1.8; margin-bottom: 12px; }
.doc-container ol, .doc-container ul { padding-left: 24px; color: var(--gray); line-height: 2; }

/* =============================================
   İLETİŞİM
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  align-items: start;
}
.contact-info-card {
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-info-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; color: var(--yellow); }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-detail { font-size: 0.9rem; }
.contact-detail strong { display: block; color: var(--yellow); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,107,46,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* =============================================
   GALERİ / MEDYA
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-light), var(--yellow-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.8rem;
  text-align: center;
  padding: 8px;
}

/* =============================================
   DESTEK SAYFASI
   ============================================= */
.support-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px;
  text-align: center;
  border-top: 4px solid var(--green);
  transition: var(--transition);
}
.support-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.support-card .icon { font-size: 3rem; margin-bottom: 16px; }
.support-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.support-card p { color: var(--gray); font-size: 0.9rem; margin-bottom: 20px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo-area { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .club-name { font-size: 1.1rem; font-weight: 800; color: var(--white); }
.footer-brand p { font-size: 0.875rem; line-height: 1.8; color: rgba(255,255,255,0.65); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-social a:hover { background: var(--yellow); color: var(--green-dark); }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: var(--yellow); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--yellow); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom span { color: var(--yellow); }

/* =============================================
   YARDIMCI SINIFLAR
   ============================================= */
.text-center { text-align: center; }
.text-yellow { color: var(--yellow); }
.text-green { color: var(--green); }
.text-gray { color: var(--gray); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.fw-bold { font-weight: 700; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }

/* Şerit / Divider */
.yellow-strip {
  height: 4px;
  background: linear-gradient(to right, var(--green), var(--yellow), var(--green));
}

/* Bilgi Kutuları */
.info-box {
  background: var(--yellow-light);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 0.9rem;
  color: var(--dark);
}
.info-box.green {
  background: var(--green-light);
  border-left-color: var(--green);
}

/* =============================================
   MOBİL MENÜ (slide-in)
   ============================================= */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  pointer-events: none;
}
.mobile-menu.open { pointer-events: all; }
.mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-menu.open .mobile-overlay { opacity: 1; }
.mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 100%);
  height: 100%;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-menu.open .mobile-panel { transform: translateX(0); }
.mobile-header {
  background: var(--green);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-header .club-name { color: var(--white); font-weight: 800; }
.mobile-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}
.mobile-nav { padding: 16px; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.mobile-nav-link:hover { background: var(--green-light); color: var(--green); }
.mobile-nav-link.tff { color: var(--green); font-weight: 700; }
.mobile-sub { display: none; padding-left: 12px; }
.mobile-sub.open { display: block; }
.mobile-sub a {
  display: block;
  padding: 9px 16px;
  font-size: 0.875rem;
  color: var(--gray);
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-sub a:hover { color: var(--green); background: var(--green-light); }

/* =============================================
   RESPONSİF
   ============================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  .main-nav { display: none !important; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .news-featured { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .doc-container { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0; }
  .section { padding: 48px 0; }
  .topbar .topbar-left { display: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* Tarihçe, Tüzük, Tesisler sayfalarında inline grid'ler mobilde alt alta gelsin */
@media (max-width: 768px) {
  [style*="grid-template-columns:1fr 2fr"],
  [style*="grid-template-columns: 1fr 2fr"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
