@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ════════════════════════════════════════════════════════════════
   OKSED — style.css  v3.0
   ════════════════════════════════════════════════════════════════ */

:root {
  --red:        #D62839;
  --red2:       #FF3D52;
  --dark-red:   #A01020;
  --red-dim:    rgba(214,40,57,0.10);
  --red-dim2:   rgba(214,40,57,0.05);
  --red-glow:   rgba(214,40,57,0.28);

  --navy:       #0B1629;
  --navy2:      #162340;
  --dark-gray:  #1E293B;
  --gray:       #64748B;
  --light-gray: #F1F5F9;
  --off-white:  #F7F8FA;
  --white:      #FFFFFF;
  --rule:       rgba(15,23,42,0.08);
  --glass:      rgba(255,255,255,0.92);

  --grad-red:   linear-gradient(135deg, #D62839 0%, #A01020 100%);
  --grad-dark:  linear-gradient(135deg, #0B1629 0%, #162340 100%);

  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'DM Sans', system-ui, sans-serif;

  --sh-xs:  0 1px 4px  rgba(11,22,41,0.06);
  --sh-sm:  0 2px 12px rgba(11,22,41,0.08);
  --sh-md:  0 8px 32px rgba(11,22,41,0.10);
  --sh-lg:  0 20px 60px rgba(11,22,41,0.13);
  --sh-red: 0 8px 28px rgba(214,40,57,0.32);
  --sh-red-lg: 0 16px 48px rgba(214,40,57,0.28);

  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-full: 9999px;

  --ease: cubic-bezier(0.22,1,0.36,1);
  --tr:   all 0.35s var(--ease);

  --nav-h: 72px;
}

/* ── RESET ───────────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--dark-gray);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

a { color: var(--red); text-decoration: none; transition: var(--tr); }
a:hover { color: var(--dark-red); }
img { display: block; max-width: 100%; }
ul { list-style: none; }
section { padding: 100px 0; }

/* ── ANIMATIONS ──────────────────────────────────────────────────── */

.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.80s var(--ease), transform 0.80s var(--ease);
}
.fade-up.visible { opacity: 1; transform: none; }

@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:none; }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:none; }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ── CONTAINER ───────────────────────────────────────────────────── */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px,5vw,48px);
}

/* ── SECTION HELPERS ─────────────────────────────────────────────── */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-label::before,
.section-label::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--red);
  opacity: 0.5;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(26px,3vw,38px);
  display: inline-block;
  position: relative;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 48px; height: 3px;
  background: var(--grad-red);
  border-radius: 3px;
  margin: 18px auto 0;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px,3.2vw,40px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 20px;
}

.red-rule {
  width: 48px; height: 3px;
  background: var(--grad-red);
  border-radius: 3px;
  margin: 18px auto 0;
}
.red-rule.left { margin: 0 0 32px; }

.divider { height: 1px; background: var(--rule); margin: 48px 0; }

/* ── BUTTONS ─────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--tr);
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -110%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,0.18),transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}
.btn:hover::after { left: 140%; }

.btn-primary {
  background: var(--grad-red);
  color: var(--white);
  box-shadow: var(--sh-red);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-red-lg);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--dark-gray);
  border: 1.5px solid var(--rule);
}
.btn-outline:hover {
  color: var(--red);
  border-color: var(--red);
  background: var(--red-dim);
}

/* ── NAVBAR ──────────────────────────────────────────────────────── */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: height 0.35s var(--ease), background 0.35s, box-shadow 0.35s;
}
.navbar.scrolled {
  height: 60px;
  background: rgba(11,22,41,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 8px 28px rgba(0,0,0,0.24);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 21px;
  color: var(--white);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo i { color: var(--red); font-size: 22px; }
.logo:hover { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a:not(.btn-login) {
  color: rgba(255,255,255,0.70);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  padding: 8px 13px;
  border-radius: var(--r-sm);
  transition: var(--tr);
  position: relative;
}
.nav-links a:not(.btn-login):hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.09);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--red);
  border-radius: 50%;
}

.btn-login {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--r-sm) !important;
  font-size: 11.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  box-shadow: var(--sh-red);
  margin-left: 8px;
  transition: var(--tr) !important;
}
.btn-login:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--sh-red-lg) !important;
  color: var(--white) !important;
  background: var(--red2) !important;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: background 0.2s;
  z-index: 1100;
}
.mobile-menu-btn:hover { background: rgba(255,255,255,0.09); }
.mobile-menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--tr);
}
.mobile-menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.is-open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.mobile-menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  display: none;
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: var(--navy);
  z-index: 999;
  padding: calc(var(--nav-h) + 24px) 32px 40px;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.42s var(--ease);
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a {
  font-family: var(--font-head);
  font-size: 26px;
  color: rgba(255,255,255,0.80);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s, padding-left 0.25s;
}
.mobile-drawer a:hover,
.mobile-drawer a.active { color: var(--red); padding-left: 10px; }

/* ── PAGE HERO ───────────────────────────────────────────────────── */

.page-hero {
  margin-top: var(--nav-h);
  padding: 80px 0;
  background: var(--grad-dark);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 110%, rgba(214,40,57,0.16) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(28px,4.5vw,48px);
  margin-bottom: 14px;
  position: relative;
  animation: fadeInUp 0.8s var(--ease) both;
}
.page-hero p {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 520px; margin: 0 auto;
  position: relative;
  animation: fadeInUp 0.8s 0.1s var(--ease) both;
}
.breadcrumb {
  margin-top: 26px; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  gap: 10px; position: relative;
  animation: fadeInUp 0.8s 0.2s var(--ease) both;
}
.breadcrumb a { color: rgba(242,132,130,0.90); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 9px; color: rgba(255,255,255,0.28); }
.breadcrumb span { color: rgba(255,255,255,0.42); }

/* ── HOME HERO ───────────────────────────────────────────────────── */

.home-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--navy);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* ızgara dokusu */
.home-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 1;
}
/* renk + overlay katmanı */
.home-hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 75% at 0% 60%, rgba(214,40,57,0.12) 0%, transparent 65%),
    linear-gradient(105deg, rgba(11,22,41,0.98) 0%, rgba(11,22,41,0.80) 44%, rgba(11,22,41,0.28) 100%);
  z-index: 2;
  pointer-events: none;
}

/* alt köşegen geçiş — index.php'de .hero-diagonal div'i ekle */
.hero-diagonal {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 100px;
  background: var(--off-white);
  clip-path: polygon(0 100%, 100% 22%, 100% 100%);
  z-index: 6;
  pointer-events: none;
}

.home-hero .container { position: relative; z-index: 4; }

.home-hero-content {
  max-width: 680px;
  padding: 80px 0;
  animation: fadeInUp 1s var(--ease) both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(201,168,76,0.90);
  margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease) both;
}
.hero-eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: rgba(201,168,76,0.60);
}

.home-hero h1 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: clamp(36px,5.5vw,68px);
  line-height: 1.09;
  margin-bottom: 28px;
  letter-spacing: -0.025em;
}
.home-hero h1 span {
  color: var(--red);
  position: relative;
  display: inline-block;
}
.home-hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 0.9s 1.1s var(--ease) forwards;
}

.home-hero > .container > .home-hero-content > p {
  font-size: 17px; font-weight: 300;
  line-height: 1.82;
  color: rgba(255,255,255,0.55);
  margin-bottom: 44px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(214,40,57,0.85), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:0.50; transform:scaleY(1); }
  50%      { opacity:0.15; transform:scaleY(0.5) translateY(8px); }
}

/* ── PRESIDENT ───────────────────────────────────────────────────── */

.president-section {
  padding: 120px 0 160px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.president-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: linear-gradient(to bottom, var(--red), var(--dark-red));
}
.president-section::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 90px;
  background: var(--off-white);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.president-content {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.president-img {
  flex: 0 0 380px;
  position: relative;
  padding: 20px;
}
.president-img::before,
.president-img::after {
  content: "";
  position: absolute;
  width: 62px; height: 62px;
  pointer-events: none;
  transition: width 0.35s var(--ease), height 0.35s var(--ease);
}
.president-img::before {
  top:0; left:0;
  border-top: 3px solid var(--red);
  border-left: 3px solid var(--red);
  border-radius: 2px 0 0 0;
}
.president-img::after {
  bottom:0; right:0;
  border-bottom: 3px solid var(--red);
  border-right: 3px solid var(--red);
  border-radius: 0 0 2px 0;
}
.president-img:hover::before,
.president-img:hover::after { width:80px; height:80px; }

.president-img img {
  width: 100%; display: block;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  position: relative; z-index: 1;
  object-fit: cover;
}

.president-text { flex:1; min-width:0; }
.president-text h2 { font-size: clamp(26px,3vw,38px); margin-bottom: 6px; }
.president-text .title {
  color: var(--red); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  display: block; margin-bottom: 28px;
}
.president-text h4 { font-size: 18px; margin-bottom: 14px; }
.president-text p {
  font-weight: 300; color: var(--gray);
  margin-bottom: 22px; font-size: 15.5px; line-height: 1.82;
}

.president-quote {
  font-family: var(--font-head);
  font-size: 17.5px; font-style: italic; font-weight: 700;
  color: var(--dark-gray);
  line-height: 1.65;
  padding: 26px 32px;
  border-left: 4px solid var(--red);
  background: linear-gradient(to right, var(--red-dim), transparent);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-bottom: 30px;
  position: relative;
}
.president-quote::before {
  content: '\201C';
  position: absolute; top: -12px; left: 18px;
  font-size: 80px; line-height: 1;
  color: var(--red); opacity: 0.14;
  font-family: var(--font-head);
}

.president-sig {
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.president-sig h5 {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700;
  color: var(--navy); margin-bottom: 4px;
}
.president-sig p {
  font-size: 11px; color: var(--gray);
  font-weight: 500; letter-spacing: 0.10em;
  text-transform: uppercase; margin: 0;
}

/* ── BOARD ───────────────────────────────────────────────────────── */

.board-section {
  padding: 120px 0 160px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.board-section::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 90px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  pointer-events: none;
}

.board-section-header { text-align: center; margin-bottom: 64px; }

.board-center { display: flex; justify-content: center; margin-bottom: 60px; }

.board-president {
  background: var(--grad-dark);
  border-radius: var(--r-md);
  padding: 30px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11,22,41,0.20);
}
.board-president::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(214,40,57,0.16) 0%, transparent 70%);
}
.board-president::after {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 4px;
  background: var(--grad-red);
  border-radius: 0 0 4px 4px;
}
.board-president h3 { font-size: 22px; color: var(--white); margin: 0 0 6px; position: relative; }
.board-president span {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.50); position: relative;
}

.board-title {
  display: flex; align-items: center; gap: 20px;
  font-family: var(--font-body);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 24px;
}
.board-title::before, .board-title::after {
  content: ''; flex: 1; height: 1px; background: var(--rule);
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px,1fr));
  gap: 16px;
  margin-bottom: 52px;
}

.board-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 22px 18px;
  text-align: center;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.board-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--grad-red);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}
.board-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214,40,57,0.22);
  box-shadow: 0 16px 40px rgba(11,22,41,0.10);
}
.board-card:hover::after { transform: scaleX(1); }
.board-card h4 { font-size: 16px; color: var(--navy); margin: 0 0 5px; }
.board-card span { font-size: 12px; color: var(--gray); }

/* ── MEMBERS ─────────────────────────────────────────────────────── */

.members-section {
  padding: 120px 0 160px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.members-section::after {
  content: "";
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 90px; background: var(--off-white);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.members-swiper-wrapper { position: relative; padding: 0 56px; }
.members-swiper, .members-full-swiper { padding-bottom: 52px !important; }

.member-full-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 24px; text-align: center;
  height: 340px;
  display: flex; flex-direction: column;
  transition: var(--tr);
  position: relative; overflow: hidden;
}
.member-full-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--grad-red);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}
.member-full-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214,40,57,0.22);
  box-shadow: 0 16px 40px rgba(11,22,41,0.10);
}
.member-full-card:hover::after { transform: scaleX(1); }

.member-img-box {
  flex: 1; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; overflow: hidden;
  background: var(--off-white); border-radius: var(--r-sm);
  padding: 18px; transition: background 0.3s;
}
.member-full-card:hover .member-img-box { background: rgba(214,40,57,0.05); }
.member-img-box img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  transition: transform 0.4s var(--ease);
}
.member-full-card:hover .member-img-box img { transform: scale(1.05); }
.member-info-box h4 { font-size: 14.5px; font-weight: 600; color: var(--navy); margin: 0; line-height: 1.4; }

/* Swiper */
.swiper-button-next, .swiper-button-prev {
  color: var(--navy) !important;
  background: var(--white);
  width: 44px !important; height: 44px !important;
  border-radius: 50%;
  box-shadow: var(--sh-md);
  border: 1px solid var(--rule);
  transition: var(--tr);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 14px !important; font-weight: 700; }
.swiper-button-next:hover, .swiper-button-prev:hover {
  background: var(--grad-red);
  color: var(--white) !important;
  border-color: transparent;
  box-shadow: var(--sh-red);
}
.swiper-pagination-bullet { background: rgba(15,23,42,0.18) !important; opacity:1; }
.swiper-pagination-bullet-active {
  background: var(--red) !important;
  width: 20px !important;
  border-radius: var(--r-full) !important;
  transition: width 0.3s ease;
}

/* ── NEWS ────────────────────────────────────────────────────────── */

.news-section {
  padding: 120px 0 100px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.news-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(214,40,57,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.news-section .container { position: relative; z-index: 1; }

.news-section .section-header h2 { color: var(--white); }
.news-section .section-label { color: rgba(201,168,76,0.90); }
.news-section .section-label::before,
.news-section .section-label::after { background: rgba(201,168,76,0.55); }
.news-section .section-header h2::after { background: var(--grad-red); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.news-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  backdrop-filter: blur(10px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.news-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(214,40,57,0.30);
  box-shadow: 0 24px 60px rgba(0,0,0,0.30);
}

.news-img {
  height: 230px;
  position: relative; overflow: hidden;
  background: var(--dark-gray);
}
.news-img img {
  width: 100% !important; height: 100% !important;
  object-fit: cover !important; object-position: center !important;
  display: block !important;
  transition: transform 0.60s var(--ease) !important;
}
.news-card:hover .news-img img { transform: scale(1.06) !important; }
.news-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,22,41,0.55) 0%, transparent 55%);
}
.news-date {
  position: absolute; bottom: 14px; left: 16px;
  background: var(--red); color: var(--white);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.07em;
  padding: 5px 12px; border-radius: 4px; z-index: 1;
}

.news-content { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.news-content h3 { font-size: 18px; margin-bottom: 12px; line-height: 1.4; color: var(--white); }
.news-content h3 a { color: var(--white); transition: color 0.2s; }
.news-content h3 a:hover { color: rgba(255,255,255,0.70); }
.news-content p {
  font-size: 14px; font-weight: 300; line-height: 1.72;
  color: rgba(255,255,255,0.42);
  flex: 1; margin-bottom: 24px;
}
.read-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin-top: auto;
  transition: gap 0.25s, color 0.2s;
}
.read-more:hover { gap: 14px; color: var(--red2); }
.read-more i { font-size: 10px; transition: transform 0.25s ease; }
.read-more:hover i { transform: translateX(4px); }

.news-section .btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.20);
}
.news-section .btn-outline:hover {
  color: var(--white); border-color: var(--red); background: var(--red-dim);
}

/* ── FOOTER ──────────────────────────────────────────────────────── */

.footer {
  background: #06070E;
  color: rgba(255,255,255,0.45);
  padding-top: 100px;
  font-family: var(--font-body);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 52px;
  margin-bottom: 80px;
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 900; font-size: 26px;
  color: var(--white); margin-bottom: 22px;
  display: flex; align-items: center; gap: 12px;
  letter-spacing: -0.02em; text-decoration: none;
}
.footer-logo span { color: var(--red); }
.footer-logo i { color: var(--red); font-size: 22px; }
.footer-logo:hover { color: var(--white); }

.footer-about p { line-height: 1.82; font-size: 14px; font-weight: 300; }

.footer h3 {
  font-family: var(--font-body);
  color: var(--white); margin-bottom: 24px;
  font-size: 10.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.20em;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.45);
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 300;
  transition: color 0.25s, padding-left 0.25s;
  padding: 2px 0;
}
.footer-links a:hover { color: var(--white); padding-left: 6px; }
.footer-links a i { font-size: 9px; color: var(--red); flex-shrink: 0; }

.footer-contact li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; font-weight: 300; margin-bottom: 12px;
}
.footer-contact i { color: var(--red); margin-top: 4px; flex-shrink: 0; }

.social-icons { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.social-icons a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.50);
  display: grid; place-items: center;
  font-size: 14px; text-decoration: none;
  transition: var(--tr);
}
.social-icons a:hover {
  background: var(--red); border-color: var(--red);
  color: var(--white); transform: translateY(-3px);
  box-shadow: var(--sh-red);
}

.footer-bottom {
  background: rgba(0,0,0,0.30);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 13px; font-weight: 300;
}
.footer-bottom .container {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.38); font-size: 13px; }
.footer-bottom a:hover { color: var(--white); }

/* ── SCROLL TOP ──────────────────────────────────────────────────── */

.scroll-top-btn {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--grad-red);
  color: var(--white); border-radius: 50%;
  display: grid; place-items: center;
  font-size: 16px; cursor: pointer; border: none;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.35s, transform 0.35s, box-shadow 0.35s;
  box-shadow: var(--sh-red); z-index: 800;
}
.scroll-top-btn.visible { opacity:1; transform:translateY(0); }
.scroll-top-btn:hover { transform:translateY(-4px); box-shadow:var(--sh-red-lg); }

/* ── GALERİ / LİGHTBOX ───────────────────────────────────────────── */

.galeri-grid {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 28px; justify-content: center; align-items: flex-start;
}
.galeri-item {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  width: 420px; max-width: 100%; cursor: zoom-in;
  box-shadow: var(--sh-sm); transition: var(--tr);
  background: var(--white); border: 1px solid var(--rule);
}
.galeri-item:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(214,40,57,0.18); }
.galeri-item img { width: 100%; height: auto; display: block; object-fit: contain; transition: transform 0.6s var(--ease); }
.galeri-item:hover img { transform: scale(1.04); }
.galeri-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,22,41,0.60) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.30s;
  display: flex; align-items: center; justify-content: center;
}
.galeri-item:hover .galeri-overlay { opacity: 1; }
.galeri-overlay i {
  color: var(--white); font-size: 22px;
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.26);
  transform: scale(0.6) rotate(-10deg);
  transition: transform 0.35s var(--ease);
}
.galeri-item:hover .galeri-overlay i { transform: scale(1) rotate(0deg); }

.premium-lightbox, .lightbox {
  position: fixed; inset: 0;
  background: rgba(6,8,18,0.97);
  backdrop-filter: blur(16px);
  z-index: 9999;
  display: none; align-items: center; justify-content: center;
}
.premium-lightbox.active, .lightbox.is-open {
  display: flex; animation: lbFade 0.22s ease forwards;
}
@keyframes lbFade { from{opacity:0}to{opacity:1} }
.lightbox-content { position:relative; max-width:90vw; max-height:86vh; }
.lightbox-content img, .lightbox img {
  max-width:100%; max-height:86vh;
  border-radius: var(--r-sm);
  box-shadow: 0 40px 100px rgba(0,0,0,0.80);
  display: block; animation: lbScale 0.32s var(--ease) both;
}
@keyframes lbScale { from{transform:scale(0.88);opacity:0}to{transform:scale(1);opacity:1} }
.lightbox-control {
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(255,255,255,0.08); color:var(--white);
  width:50px; height:50px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; border:1px solid rgba(255,255,255,0.16); font-size:18px;
  transition: background 0.2s, transform 0.2s;
}
.lightbox-control:hover { background:var(--red); border-color:var(--red); transform:translateY(-50%) scale(1.1); }
.lightbox-prev{left:-68px} .lightbox-next{right:-68px}
.lightbox-close-btn, .lightbox-close {
  position:absolute; top:-54px; right:0;
  width:46px; height:46px;
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.55); font-size:22px;
  cursor:pointer; border:1px solid rgba(255,255,255,0.14);
  border-radius:50%; background:rgba(255,255,255,0.05);
  transition: all 0.28s var(--ease);
}
.lightbox-close-btn:hover, .lightbox-close:hover {
  color:var(--white); border-color:var(--red); background:var(--red); transform:rotate(90deg);
}

/* ── FOCUS ───────────────────────────────────────────────────────── */
:focus-visible { outline:2px solid var(--red); outline-offset:3px; border-radius:3px; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .news-grid   { grid-template-columns: repeat(2,1fr); }
  .board-grid  { grid-template-columns: repeat(auto-fill,minmax(175px,1fr)); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  section { padding: 72px 0; }

  .nav-links        { display: none; }
  .mobile-menu-btn  { display: flex; }
  .mobile-drawer    { display: flex; }

  .president-content { flex-direction: column; gap: 48px; }
  .president-img { flex: 0 0 auto; max-width: 320px; margin: 0 auto; }

  .news-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .board-grid { grid-template-columns: repeat(auto-fill,minmax(148px,1fr)); }
  .board-president { padding: 24px 32px; }

  .home-hero-content { padding: 60px 0; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  .members-swiper-wrapper { padding: 0 16px; }

  .lightbox-prev { left:8px; background:rgba(0,0,0,0.60); }
  .lightbox-next { right:8px; background:rgba(0,0,0,0.60); }
  .lightbox-close-btn, .lightbox-close { position:fixed; right:12px; top:12px; }

  .scroll-top-btn { right:18px; bottom:18px; }
}

@media (max-width: 480px) {
  .home-hero h1 { font-size: clamp(30px,8.5vw,42px); }
  .board-grid   { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: clamp(22px,6vw,28px); }
  .section-header h2 { font-size: clamp(22px,6vw,28px); }
  .president-quote { font-size: 15.5px; padding: 20px 22px; }
  .galeri-item { width: 100%; }
}

@media print {
  .navbar, .hero-scroll, .scroll-top-btn,
  .mobile-menu-btn, .mobile-drawer { display: none !important; }
  body { background: white; color: black; }
}
