/* ==========================================================================
   DÜZİÇİ SPOR KULÜBÜ OFFICIAL WEBSITE - STYLESHEET
   Design Tokens: Dark Maroon (#120A0D), Deep Burgundy (#6B1724), 
   Honey Gold (#F5B800), Pure White (#FFFFFF), Warm Charcoal (#1A1216)
   ========================================================================== */

:root {
  --ds-bg-dark: #120A0D;
  --ds-bg-card: #1C1217;
  --ds-bg-card-hover: #261A20;
  --ds-border: #331D24;
  --ds-burgundy: #6B1724;
  --ds-burgundy-light: #8B1E2F;
  --ds-gold: #F5B800;
  --ds-gold-hover: #e0a700;
  --ds-white: #ffffff;
  --ds-gray-light: #f5f5f5;
  --ds-gray-text: #cccccc;
  --ds-gray-muted: #88777D;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--ds-bg-dark);
  color: var(--ds-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--ds-gold);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ==========================================================================
   HEADER & TOP BAR
   ========================================================================== */

.site-header {
  background-color: var(--ds-bg-dark);
  border-bottom: 1px solid var(--ds-border);
  position: relative;
  z-index: 100;
}

.top-bar {
  background-color: #0A0507;
  border-bottom: 1px solid #1F1015;
  padding: 6px 0;
  font-size: 11px;
  font-weight: 600;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-left-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ds-gray-text);
}

.top-link.active {
  color: var(--ds-gold);
  font-weight: 700;
}

.sep {
  color: #443339;
}

.top-right-tools {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-trigger-btn {
  background: none;
  border: none;
  color: var(--ds-white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-trigger-btn:hover {
  color: var(--ds-gold);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons a {
  color: var(--ds-gray-text);
  display: flex;
  align-items: center;
}

.social-icons a:hover {
  color: var(--ds-gold);
}

/* Middle Branding Bar */
.middle-branding-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 15px;
}

.ds-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ds-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(245, 184, 0, 0.25));
}

.ds-logo-text {
  display: flex;
  flex-direction: column;
}

.ds-logo-text .main-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--ds-white);
  line-height: 1.1;
}

.ds-logo-text .sub-title {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--ds-gold);
  margin-top: 4px;
}

.header-services {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--ds-white);
  padding: 8px 12px;
  background-color: rgba(245, 184, 0, 0.06);
  border: 1px solid rgba(245, 184, 0, 0.2);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.service-item:hover {
  background-color: var(--ds-gold);
  color: #000000;
  border-color: var(--ds-gold);
}

.service-item:hover svg {
  stroke: #000000;
}

/* Sticky Main Navigation */
.main-navigation {
  background-color: #0D0709;
  border-top: 1px solid var(--ds-border);
  border-bottom: 3px solid var(--ds-gold);
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-home-icon {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background-color: var(--ds-burgundy);
  color: var(--ds-gold);
}

.nav-home-icon:hover {
  background-color: var(--ds-burgundy-light);
  color: var(--ds-white);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 14px 14px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--ds-white);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--ds-gold);
  background-color: rgba(245, 184, 0, 0.05);
}

.highlight-store .nav-link {
  color: var(--ds-gold);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: #190E13;
  border-top: 2px solid var(--ds-gold);
  border-bottom: 1px solid #331D24;
  display: none;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0,0,0,0.9);
  z-index: 105;
}

.has-dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu a {
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ds-gray-text);
  border-bottom: 1px solid #28171E;
}

.dropdown-menu a:hover {
  background-color: var(--ds-burgundy);
  color: var(--ds-gold);
}

.nav-badge-genks .gen-badge {
  background-color: var(--ds-burgundy);
  color: var(--ds-gold);
  padding: 6px 12px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  border-radius: 3px;
  border: 1px solid var(--ds-gold);
}

.mobile-toggle-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.mobile-toggle-btn span {
  width: 24px;
  height: 2px;
  background-color: var(--ds-white);
}

/* ==========================================================================
   HERO CAROUSEL
   ========================================================================== */

.hero-slider-section {
  padding: 20px 0 10px 0;
  background-color: var(--ds-bg-dark);
  margin-bottom: 20px;
}

.hero-container {
  position: relative;
}

.slider-wrapper {
  position: relative;
  height: 440px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--ds-border);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-image-placeholder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.slide-bg-1 {
  background: linear-gradient(180deg, rgba(18,10,13,0.3) 0%, rgba(18,10,13,0.95) 100%),
              radial-gradient(circle, rgba(107,23,36,0.5) 0%, rgba(18,10,13,0.9) 100%),
              url('images/haber1.png') center/cover;
}

.slide-bg-2 {
  background: linear-gradient(180deg, rgba(18,10,13,0.2) 0%, rgba(18,10,13,0.95) 100%),
              radial-gradient(circle, rgba(107,23,36,0.3) 0%, rgba(18,10,13,0.9) 100%),
              url('images/slide2_futbol_okulu.jpg') center/cover;
}

.slide-bg-3 {
  background: linear-gradient(180deg, rgba(18,10,13,0.3) 0%, rgba(18,10,13,0.95) 100%),
              radial-gradient(circle, rgba(107,23,36,0.4) 0%, rgba(18,10,13,0.9) 100%),
              url('images/haber2.png') center/cover;
}

.slide-overlay {
  padding: 40px;
  max-width: 750px;
}

.slide-tag {
  display: inline-block;
  background-color: var(--ds-gold);
  color: #000000;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.slide-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.slide-desc {
  font-size: 14px;
  color: var(--ds-gray-text);
  margin-bottom: 20px;
  max-width: 600px;
}

.btn-primary {
  display: inline-block;
  background-color: var(--ds-burgundy);
  color: var(--ds-gold);
  border: 1px solid var(--ds-gold);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  padding: 10px 24px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--ds-gold);
  color: #000000;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(18,10,13,0.7);
  color: var(--ds-gold);
  border: 1px solid var(--ds-gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.arrow-prev { left: 20px; }
.arrow-next { right: 20px; }
.slider-arrow:hover { background-color: var(--ds-gold); color: #000000; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  right: 40px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.3);
  cursor: pointer;
}

.dot.active {
  background-color: var(--ds-gold);
  width: 24px;
  border-radius: 6px;
}

/* ==========================================================================
   FEATURE CARDS (PRESIDENT SPOTLIGHT & FUTBOL OKULU)
   ========================================================================== */

.feature-banners-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.president-spotlight-section,
.futbol-okulu-card {
  width: 100%;
  background: linear-gradient(135deg, #1C1217 0%, #26141D 100%);
  border: 2px solid var(--ds-gold);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
}

.president-spotlight-section {
  margin: 30px 0;
}

.futbol-okulu-banner-section {
  margin: 0 0 40px 0;
  width: 100%;
}

.president-photo-wrapper {
  flex-shrink: 0;
  width: 220px;
  height: 265px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--ds-gold);
  box-shadow: 0 8px 24px rgba(245, 184, 0, 0.25);
}

.president-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.president-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  width: 100%;
}

.president-badge {
  display: inline-block;
  background-color: var(--ds-burgundy);
  color: var(--ds-gold);
  border: 1px solid var(--ds-gold);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  padding: 5px 12px;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.president-name {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: var(--ds-white);
  margin-bottom: 12px;
}

.president-quote {
  font-size: 15px;
  color: #E8E8E8;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 18px;
  border-left: 4px solid var(--ds-gold);
  padding: 14px 20px;
  background-color: rgba(0,0,0,0.25);
  border-radius: 0 8px 8px 0;
  width: 100%;
}

.president-signature {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--ds-gold);
}

.futbol-okulu-poster-wrapper {
  flex-shrink: 0;
  width: 260px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--ds-gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  transition: transform 0.3s ease;
}

.futbol-okulu-poster-wrapper:hover {
  transform: scale(1.02);
}

.futbol-okulu-poster-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.futbol-okulu-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
  width: 100%;
}

.futbol-okulu-tag {
  display: inline-block;
  background-color: var(--ds-gold);
  color: #000000;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  padding: 5px 14px;
  border-radius: 4px;
  align-self: flex-start;
  letter-spacing: 1px;
}

.futbol-okulu-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: var(--ds-white);
  line-height: 1.2;
}

.futbol-okulu-slogan {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--ds-gold);
  letter-spacing: 0.5px;
}

.futbol-okulu-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 6px 0 12px 0;
  width: 100%;
}

.detail-pill {
  background-color: rgba(18, 10, 13, 0.7);
  border: 1px solid rgba(245, 184, 0, 0.35);
  padding: 12px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  width: 100%;
}

.detail-pill svg {
  stroke: var(--ds-gold);
  flex-shrink: 0;
}

.detail-pill-text {
  display: flex;
  flex-direction: column;
}

.detail-pill-text .label {
  font-size: 9px;
  color: var(--ds-gray-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-pill-text .value {
  font-size: 12px;
  font-weight: 800;
  color: var(--ds-white);
  white-space: nowrap;
}

.btn-kayit-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--ds-gold);
  color: #000000;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  padding: 14px 24px;
  border-radius: 8px;
  width: 100%;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(245, 184, 0, 0.3);
}

.btn-kayit-cta:hover {
  background-color: #ffffff;
  color: var(--ds-burgundy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   MAIN CONTENT GRID (NEWS FULL WIDTH)
   ========================================================================== */

.main-content-section {
  padding: 10px 15px 40px 15px;
}

.layout-grid {
  display: block;
  width: 100%;
}

.section-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--ds-border);
  padding-bottom: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 15px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--ds-gold);
}

.news-filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tab-btn {
  background-color: #1A1015;
  border: 1px solid #331D24;
  color: var(--ds-gray-text);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn.active, .tab-btn:hover {
  background-color: var(--ds-burgundy);
  color: var(--ds-gold);
  border-color: var(--ds-gold);
}

/* News Cards Grid */
.news-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.news-card {
  background-color: var(--ds-bg-card);
  border: 1px solid var(--ds-border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--ds-gold);
}

.card-thumb {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 12px;
}

.thumb-haber1 { background-image: linear-gradient(0deg, rgba(18,10,13,0.8), transparent), url('images/haber1.png'); }
.thumb-haber2 { background-image: linear-gradient(0deg, rgba(18,10,13,0.8), transparent), url('images/haber2.png'); }

.card-tag {
  background-color: var(--ds-gold);
  color: #000000;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 2px;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-date {
  font-size: 11px;
  font-weight: 600;
  color: var(--ds-gray-muted);
  margin-bottom: 8px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--ds-white);
}

.card-excerpt {
  font-size: 13px;
  color: var(--ds-gray-text);
  margin-bottom: 18px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-read-more {
  margin-top: auto;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  color: var(--ds-gold);
}

/* ==========================================================================
   SPONSORS SECTION
   ========================================================================== */

.sponsors-section {
  background-color: #0A0507;
  border-top: 1px solid var(--ds-border);
  border-bottom: 1px solid var(--ds-border);
  padding: 40px 0;
  text-align: center;
}

.sponsors-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--ds-gold);
  margin-bottom: 24px;
}

.main-sponsors-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.sponsor-img-card {
  background-color: #FFFFFF;
  border: 2px solid var(--ds-gold);
  border-radius: 8px;
  padding: 16px 24px;
  width: 280px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(245, 184, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sponsor-img-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(245, 184, 0, 0.35);
}

.sponsor-img-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */

.site-footer {
  background-color: var(--ds-bg-dark);
  padding-top: 40px;
}

.footer-content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--ds-border);
}

.col-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  color: var(--ds-gold);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 12px;
  color: var(--ds-gray-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--ds-gold);
}

.bottom-copyright-bar {
  padding: 20px 0;
  font-size: 11px;
  color: var(--ds-gray-muted);
}

.bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-links {
  display: flex;
  gap: 10px;
}

.legal-links a {
  color: var(--ds-gray-muted);
}

.legal-links a:hover {
  color: var(--ds-white);
}

/* ==========================================================================
   SEARCH MODAL
   ========================================================================== */

.search-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(18,10,13,0.92);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}

.search-modal-overlay.active {
  display: flex;
}

.search-modal-card {
  background-color: #1F1218;
  border: 1px solid var(--ds-gold);
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 10px 40px rgba(245, 184, 0, 0.2);
}

.search-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--ds-white);
  font-size: 24px;
  cursor: pointer;
}

.search-modal-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 20px;
  text-align: center;
  color: var(--ds-gold);
}

.search-input-wrapper {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.search-input-wrapper input {
  flex-grow: 1;
  background-color: #120A0D;
  border: 1px solid var(--ds-border);
  padding: 12px 16px;
  border-radius: 4px;
  color: var(--ds-white);
  font-family: var(--font-body);
  font-size: 14px;
}

.btn-search-submit {
  background-color: var(--ds-burgundy);
  color: var(--ds-gold);
  border: 1px solid var(--ds-gold);
  padding: 0 24px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  border-radius: 4px;
  cursor: pointer;
}

.btn-search-submit:hover {
  background-color: var(--ds-gold);
  color: #000000;
}

.quick-tags {
  font-size: 12px;
  color: var(--ds-gray-muted);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.quick-tags a {
  color: var(--ds-gray-text);
  background-color: #291820;
  padding: 3px 8px;
  border-radius: 3px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ========================================================================== */

/* ==========================================================================
   MEMBERSHIP APPLICATION FORM MODAL
   ========================================================================== */

body.modal-open {
  overflow: hidden !important;
  touch-action: none;
}

.membership-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(12, 6, 8, 0.94);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  padding: 20px;
}

.membership-modal-overlay.active {
  display: flex;
}

.membership-modal-card {
  background-color: #1A0E13;
  border: 2px solid var(--ds-gold);
  border-radius: 12px;
  width: 100%;
  max-width: 1240px;
  max-height: 94vh;
  overflow-y: auto;
  padding: 24px 30px;
  position: relative;
  box-shadow: 0 12px 50px rgba(245, 184, 0, 0.25);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--ds-white);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.modal-close-btn:hover {
  color: var(--ds-gold);
}

.modal-header-box {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--ds-border);
  padding-bottom: 12px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: var(--ds-gold);
  letter-spacing: 0.5px;
}

.modal-subtitle {
  font-size: 12px;
  color: var(--ds-gray-text);
  margin-top: 4px;
}

.membership-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.form-inputs-col {
  background-color: #120A0D;
  border: 1px solid var(--ds-border);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-section-header {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  color: var(--ds-gold);
  background-color: var(--ds-burgundy);
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.margin-top-15 {
  margin-top: 10px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.input-group label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ds-gray-light);
}

.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="file"] {
  background-color: #1C1217;
  border: 1px solid #3A2029;
  color: var(--ds-white);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-family: var(--font-body);
}

.input-group input:focus {
  outline: none;
  border-color: var(--ds-gold);
}

.input-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.radio-inline-group {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 8px 0;
  font-size: 12px;
}

.radio-inline-group label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.checkbox-group-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.custom-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: var(--ds-gray-text);
  cursor: pointer;
  line-height: 1.4;
}

.custom-checkbox-row input {
  margin-top: 2px;
  accent-color: var(--ds-gold);
}

.form-action-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 15px;
}

.btn-form-download,
.btn-form-send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-form-download {
  background-color: var(--ds-gold);
  color: #000000;
  border: none;
}

.btn-form-download:hover {
  background-color: #ffffff;
}

.btn-form-send {
  background-color: var(--ds-burgundy);
  color: var(--ds-gold);
  border: 1px solid var(--ds-gold);
}

.btn-form-send:hover {
  background-color: var(--ds-gold);
  color: #000000;
}

.form-preview-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.preview-title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  color: var(--ds-gold);
  background-color: #120A0D;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid var(--ds-border);
}

.canvas-wrapper {
  background-color: #000000;
  border: 2px solid var(--ds-gold);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.8);
}

#formCanvas {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  background-color: #FFFFFF;
}

/* ==========================================================================
   LEGAL LINK TRIGGERS & LEGAL DOCUMENT MODALS (TÜZÜK & KVKK)
   ========================================================================== */

.legal-link-trigger {
  color: var(--ds-gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.legal-link-trigger:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(245, 184, 0, 0.6);
}

.legal-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 5, 7, 0.94);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200000;
  padding: 20px;
}

.legal-modal-overlay.active {
  display: flex;
}

.legal-modal-card {
  background-color: #1A0E13;
  border: 2px solid var(--ds-gold);
  border-radius: 12px;
  width: 100%;
  max-width: 920px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  padding: 24px 30px;
  position: relative;
  box-shadow: 0 12px 50px rgba(245, 184, 0, 0.3);
}

.legal-document-body {
  overflow-y: auto;
  padding-right: 12px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-document-body::-webkit-scrollbar {
  width: 6px;
}

.legal-document-body::-webkit-scrollbar-thumb {
  background-color: var(--ds-gold);
  border-radius: 3px;
}

.legal-article-box {
  background-color: #120A0D;
  border: 1px solid var(--ds-border);
  border-left: 4px solid var(--ds-gold);
  border-radius: 6px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-head {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--ds-gold);
  line-height: 1.4;
}

.article-subhead {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--ds-gray-text);
  margin-top: 4px;
}

.legal-article-box p {
  font-size: 13px;
  color: #E2E2E2;
  line-height: 1.6;
}

/* ==========================================================================
   MEMBERSHIP FEE BANNER & FEE CARDS
   ========================================================================== */

.membership-fee-banner {
  background: linear-gradient(135deg, #120A0D 0%, #221219 100%);
  border: 1px solid var(--ds-gold);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(245, 184, 0, 0.12);
}

.fee-banner-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  color: var(--ds-gold);
  letter-spacing: 1px;
}

.fee-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.fee-card {
  background-color: #1C1217;
  border: 1px solid #3A2029;
  border-radius: 6px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.2s ease;
}

.fee-card:hover {
  border-color: var(--ds-gold);
  transform: translateY(-2px);
}

.highlight-initial {
  border-color: var(--ds-gold);
  background-color: rgba(107, 23, 36, 0.35);
}

.highlight-annual {
  border-color: var(--ds-gold);
  background-color: rgba(245, 184, 0, 0.08);
}

.fee-tag {
  position: absolute;
  top: -8px;
  right: 10px;
  background-color: var(--ds-gold);
  color: #000000;
  font-family: var(--font-heading);
  font-size: 8px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

.fee-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  color: var(--ds-gray-text);
  letter-spacing: 0.5px;
}

.fee-amount {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: var(--ds-gold);
  margin: 4px 0 2px 0;
}

.fee-amount small {
  font-size: 11px;
  font-weight: 600;
  color: var(--ds-gray-muted);
}

.fee-note {
  font-size: 10px;
  color: #CCCCCC;
  margin-top: 2px;
}

/* ==========================================================================
   TURAN AI DEVELOPER ATTRIBUTION BADGE
   ========================================================================== */

.developer-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
}

.turan-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(107, 23, 36, 0.6) 0%, rgba(38, 26, 32, 0.9) 50%, rgba(245, 184, 0, 0.15) 100%);
  border: 1px solid rgba(245, 184, 0, 0.4);
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(245, 184, 0, 0.1);
  cursor: pointer;
}

.turan-ai-badge:hover {
  background: linear-gradient(135deg, var(--ds-burgundy) 0%, #8B1E2F 50%, var(--ds-gold) 100%);
  color: var(--ds-gold);
  border-color: var(--ds-gold);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(245, 184, 0, 0.35), 0 0 12px rgba(245, 184, 0, 0.5);
}

.turan-ai-badge:hover span:last-child {
  color: #FFFFFF;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.turan-ai-sparkle {
  font-size: 13px;
  color: var(--ds-gold);
  animation: turanSparkle 2s infinite ease-in-out;
}

@keyframes turanSparkle {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 2px var(--ds-gold)); }
  50% { transform: scale(1.3); filter: drop-shadow(0 0 8px var(--ds-gold)); }
}

/* ==========================================================================
   HOMEPAGE MEMBERSHIP & FEES SECTION
   ========================================================================== */

.fees-section {
  padding: 40px 0;
  background-color: var(--ds-dark-burgundy);
}

.fees-section-card {
  background: linear-gradient(135deg, #180D12 0%, #26141D 100%);
  border: 2px solid var(--ds-gold);
  border-radius: 12px;
  padding: 36px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fees-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.fees-header h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: var(--ds-gold);
  letter-spacing: 0.5px;
}

.fees-header p {
  font-size: 13px;
  color: var(--ds-gray-text);
  max-width: 650px;
}

.main-fee-grid {
  gap: 20px;
}

.main-fee-grid .fee-card {
  padding: 16px 20px;
}

.fees-action-center {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.btn-fees-apply {
  background: linear-gradient(135deg, var(--ds-burgundy) 0%, #8B1E2F 100%);
  color: var(--ds-gold);
  border: 1px solid var(--ds-gold);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(245, 184, 0, 0.25);
}

.btn-fees-apply:hover {
  background: var(--ds-gold);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(245, 184, 0, 0.45);
}




