/* ============================================================
   Ağrı Yelken ve Su Sporları – Site CSS
   agriyelken.org.tr
   ============================================================ */

/* ── DEĞKENLER ─────────────────────────────────────────────── */
:root {
  --navy:      #0a1628;
  --navy-mid:  #1a3a6a;
  --ocean:     #eef4fb;
  --gold:      #0a0a0a;   /* aksan rengi (altın yerine siyah — 2026-05-23) */
  --gold-l:    #2a2a2a;
  --silver:    #5c7a99;
  --text-dark: #1a2b3c;
  --text-muted:#5c7a99;
  --white:     #ffffff;
  --off-white: #f8fbff;
  --dark-bg:   #050d1a;
  --nav-h:     72px;
  --langbar-h: 34px;
  --total-bar: calc(var(--nav-h) + var(--langbar-h));
}

/* Koyu zeminlerde aksan rengini beyaz/krem yap (siyah görünmez olur) */
.section--dark,
.page-hero,
.hero,
.baskan-section,
.cta-section,
.footer-modern,
.footer {
  --gold:   #ffffff;
  --gold-l: #ffffff;
}

/* ── RESET ──────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--off-white);
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  font-weight: 500;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── LANG BAR ───────────────────────────────────────────────── */
#langBar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: var(--langbar-h);
  background: rgba(244,247,251,0.98);
  border-bottom: 1px solid rgba(26,95,168,0.1);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 2rem;
  gap: 0.4rem;
}
.lang-btn {
  background: #fff;
  border: 1px solid rgba(26,95,168,0.35);
  color: #1a3a6a;
  padding: 0.22rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.2s;
  border-radius: 4px;
}
.lang-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: #fff;
}
.lang-btn.active {
  border-color: var(--gold);
  color: #fff;
  background: var(--gold);
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: var(--langbar-h);
  left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(10,22,40,0.08);
  box-shadow: 0 10px 30px rgba(10,22,40,0.08);
  backdrop-filter: blur(14px);
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.98);
  border-bottom-color: rgba(10,22,40,0.12);
  box-shadow: 0 14px 38px rgba(10,22,40,0.12);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  gap: 1rem;
}
.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(10,22,40,0.14));
  border-radius: 50%;
  background: transparent;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.nav-logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.2rem;
  margin: 0;
}
.nav-item > a, .nav-item > button {
  display: block;
  padding: 0.5rem 1rem;
  color: rgba(10,22,40,0.82);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.25s, opacity 0.25s;
  white-space: nowrap;
}
.nav-item.has-drop > button::after { content: ' ▾'; font-size: 0.55rem; }
.nav-item > a:hover, .nav-item > button:hover,
.nav-item.active > a, .nav-item.active > button { color: var(--gold); }
.nav-item { position: relative; }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: rgba(248,251,255,0.99);
  border: 1px solid rgba(26,95,168,0.12);
  min-width: 200px;
  flex-direction: column;
  z-index: 400;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { display: flex; }
.dropdown a {
  display: block;
  padding: 0.7rem 1.2rem;
  color: #3a5a7a;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(26,78,122,0.07);
  transition: all 0.2s;
}
.dropdown a:hover { color: var(--gold); padding-left: 1.6rem; }
.dropdown li:last-child a { border-bottom: none; }

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

/* ── PAGE HERO (iç sayfalar) ─────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  padding-top: var(--total-bar);
  background: linear-gradient(135deg, #0a1628 0%, #1a3a6a 100%);
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero_main.jpg') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}
/* Logo arka plan filigranı (silik, sağda) */
.page-hero::before {
  content: '';
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  background: url('../images/logo_med.png') center/contain no-repeat;
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .page-hero::before { width: 280px; height: 280px; right: -80px; opacity: 0.05; }
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}
.page-hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  display: block;
  margin-bottom: 0.6rem;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 3px 15px rgba(0,0,0,0.5);
}
.page-hero-title em { color: var(--gold); font-style: italic; }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
}
.page-hero-breadcrumb a { color: var(--gold); text-decoration: none; }
.page-hero-breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── SECTIONS ────────────────────────────────────────────────── */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section--light { background: #fff; }
.section--ocean { background: var(--ocean); }
.section--dark  { background: linear-gradient(135deg, #0d2040, #1a3a6a, #0d2040); }

.sec-tag {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  display: block;
  margin-bottom: 0.8rem;
}
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.sec-title em { font-style: italic; color: var(--gold); }
.section--dark .sec-title { color: #fff; }
.section--dark .sec-tag { color: rgba(255,255,255,0.85); }
.divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1.2rem 0 2rem;
}
.sec-lead {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

/* ── REVEAL ANIMATION ───────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  border-radius: 2px;
}
.btn-gold  { background: var(--navy); color: #ffffff; }
.btn-gold:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,22,40,0.35); }
.btn-outline { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #ffffff; }
/* Koyu zeminde butonlar beyaz olsun */
.hero .btn-gold, .page-hero .btn-gold, .cta-section .btn-gold, .baskan-section .btn-gold, .section--dark .btn-gold { background:#ffffff; color: var(--navy); }
.hero .btn-gold:hover, .page-hero .btn-gold:hover, .cta-section .btn-gold:hover, .baskan-section .btn-gold:hover, .section--dark .btn-gold:hover { background:#e6efff; color: var(--navy); }
.hero .btn-outline, .page-hero .btn-outline, .cta-section .btn-outline, .baskan-section .btn-outline, .section--dark .btn-outline { border-color:#ffffff; color:#ffffff; }
.hero .btn-outline:hover, .page-hero .btn-outline:hover, .cta-section .btn-outline:hover, .baskan-section .btn-outline:hover, .section--dark .btn-outline:hover { background:#ffffff; color: var(--navy); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark-bg);
  color: rgba(220,235,250,0.92);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  background: transparent;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.footer-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
}
.footer-brand p {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
  max-width: 360px;
  margin-top: 0.6rem;
  color: #ffffff;
}
.footer-sosyal {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.footer-sosyal a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.25s;
}
.footer-sosyal a:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--gold-l);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.1rem;
  font-weight: 700;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a, .footer-col ul span {
  font-size: 0.95rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s, transform 0.2s;
}
.footer-col ul a:hover { color: #d4e8ff; transform: translateX(3px); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.9rem; color: #ffffff; font-weight:500; }
.footer-admin-link a {
  color: rgba(232,201,122,0.55);
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  transition: color .25s, border-color .25s, background .25s;
  display: inline-flex;
  align-items: center;
}
.footer-admin-link a:hover {
  color: var(--gold-l);
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
}

/* ── YÖNETIM CARDS ──────────────────────────────────────────── */
.yonetim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.yonetim-card {
  background: #fff;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.05);
  border: 1px solid rgba(26,95,168,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s;
}
.yonetim-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(26,95,168,0.12);
  border-color: var(--gold);
}
.yonetim-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin-bottom: 1.2rem;
  background: var(--ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--gold);
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}
.yonetim-card:hover .yonetim-avatar { border-color: var(--gold); }
.yonetim-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.yonetim-ad {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.yonetim-unvan {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

/* ── ETKİNLİK ───────────────────────────────────────────────── */
.etkinlik-grid { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.etkinlik-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(26,95,168,0.08);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  transition: box-shadow 0.3s;
}
.etkinlik-item:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.etkinlik-tarih {
  flex-shrink: 0;
  text-align: center;
  min-width: 56px;
}
.etkinlik-gun  { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.etkinlik-ay   { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.etkinlik-bilgi { flex: 1; }
.etkinlik-ad   { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 0.2rem; }
.etkinlik-yer  { font-size: 0.76rem; color: var(--text-muted); }
.etkinlik-tur  {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}
.etkinlik-bos  { font-size: 0.9rem; color: var(--text-muted); padding: 2rem 0; text-align: center; }

/* ── SPONSOR ────────────────────────────────────────────────── */
.sponsor-cards { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; margin: 2rem 0; }
.sponsor-logo-box {
  width: 300px;
  flex-shrink: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
}
.sponsor-logo-box:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(255,255,255,0.1);
}
.sponsor-logo-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}
.sponsor-logo-box img { max-height: 160px; object-fit: contain; border-radius: 8px; }
.sponsor-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold-l);
  font-weight: 700;
  margin: 0.8rem 0 0.2rem;
}
.sponsor-web { font-size: 0.62rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.sponsor-web:hover { color: var(--gold-l); }
.sponsor-cta-block {
  text-align: center;
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 16px;
  padding: 3rem 2rem;
  max-width: 580px;
  margin: 3rem auto 0;
  background: rgba(255,255,255,0.02);
}
.sponsor-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold-l);
  margin-bottom: 0.8rem;
}
.sponsor-cta-block p { font-size: 0.88rem; color: rgba(200,220,245,0.75); line-height: 1.8; margin-bottom: 1.5rem; }

/* ── İLETİŞİM ───────────────────────────────────────────────── */
.iletisim-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid rgba(26,95,168,0.08); }
.c-icon { font-size: 1.1rem; color: var(--gold); flex-shrink: 0; width: 24px; }
.c-label { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.c-val { font-size: 0.88rem; color: var(--text-dark); font-weight: 700; }
.c-val a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
.c-val a:hover { color: var(--gold); }
.sosyal-grid { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 0.5rem; }
.sosyal-btn {
  width: 44px; height: 44px;
  border: 1px solid rgba(26,95,168,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
  color: var(--silver);
}
.sosyal-btn svg { width: 18px; height: 18px; fill: currentColor; }
.sosyal-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.4rem; }
.fg label { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
.fg input, .fg textarea, .fg select {
  background: #fff;
  border: 1px solid rgba(26,95,168,0.18);
  color: var(--text-dark);
  padding: 0.75rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  border-radius: 4px;
  transition: border-color 0.25s;
  outline: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--gold); }
.fg textarea { min-height: 130px; resize: vertical; }
.btn-send {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  border-radius: 4px;
  transition: all 0.3s;
  align-self: flex-start;
}
.btn-send:hover { background: var(--gold); color: var(--navy); }
#form-feedback { font-size: 0.82rem; padding: 0.6rem 1rem; border-radius: 4px; display: none; }
#form-feedback.success { background: rgba(40,167,69,0.1); color: #155724; border: 1px solid #c3e6cb; }
#form-feedback.error   { background: rgba(220,53,69,0.08); color: #721c24; border: 1px solid #f5c6cb; }

/* ── BAŞKAN MESAJI ───────────────────────────────────────────── */
.baskan-section { background: linear-gradient(135deg, #0d2040, #1a3a6a, #0d2040); padding: 5rem 2rem; }
.baskan-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: center; }
.baskan-photo-wrap { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.baskan-photo-circle {
  width: 230px; height: 230px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.55);
  box-shadow: 0 0 50px rgba(255,255,255,0.12);
}
.baskan-photo-circle img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.baskan-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--gold-l); font-weight: 700; text-align: center; }
.baskan-title-text { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(200,220,255,0.65); text-align: center; }
.baskan-quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: rgba(255,255,255,0.35); line-height: 0.6; margin-bottom: 1rem; }
.baskan-text { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: rgba(230,240,255,0.92); line-height: 1.9; font-style: italic; margin-bottom: 1.5rem; }
.baskan-sig { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.8); font-weight: 600; }

/* ── VM CARDS (vizyon / misyon) ─────────────────────────────── */
.vm-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.vm-card {
  background: var(--ocean);
  border: 1px solid rgba(26,95,168,0.1);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: box-shadow 0.3s;
}
.vm-card:hover { box-shadow: 0 12px 36px rgba(26,95,168,0.1); }
.vm-icon { font-size: 2rem; margin-bottom: 1rem; }
.vm-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: 0.8rem; }
.vm-card-text { font-size: 0.88rem; line-height: 1.85; color: var(--text-dark); }
.vm-card-text p { margin-bottom: 0.7rem; }
.vm-card-text p:last-child { margin-bottom: 0; }
.vm-card-text strong { color: var(--navy); }

/* ── ABOUT PHOTO ─────────────────────────────────────────────── */
.about-photo-wrap img { border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.12); width: 100%; }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; margin-bottom: 3rem; }

/* ── HOME SECTIONS (özet) ───────────────────────────────────── */
.home-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.home-card {
  background: #fff;
  border: 1px solid rgba(26,95,168,0.08);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.35s;
  text-decoration: none;
  display: block;
}
.home-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(26,95,168,0.1); border-color: var(--gold); }
.home-card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.home-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.home-card-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.75; }
.home-card-link { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-top: 1rem; display: block; }

/* ── HERO (anasayfa) ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--total-bar);
}
.hero::before {
  content: none;
}
/* YouTube köşe filigranını gizle (sağ-alt) */
.hero::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 160px;
  height: 110px;
  background: linear-gradient(to top left, rgba(10,22,40,1) 38%, rgba(10,22,40,0) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-video-wrap { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero-video {
  position: absolute;
  top: 50%; left: 50%;
  width: 177.78vh; min-width: 100%;
  height: 56.25vw; min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: saturate(1.08) contrast(1.05) brightness(0.65);
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: transparent; }
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem 5rem;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp 1s ease both;
}
.hero-logo-wrap {
  width: 320px; height: 320px;
  margin: 0 auto 2rem;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  background: transparent;
}
.hero-logo-wrap::before {
  content: none;
}
.hero-logo-wrap img {
  width: 100%; height: 100%;
  max-width: 320px; max-height: 320px;
  object-fit: contain;
  background: transparent;
  filter: none;
  mix-blend-mode: normal;
  opacity: 1;
  display: block;
}
.hero-badge {
  border: 2px solid rgba(255,255,255,0.55);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.45rem 1.5rem;
  margin-bottom: 1.4rem;
  font-weight: 700;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(4px);
}
.hero-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-shadow: 0 3px 15px rgba(0,0,0,0.6);
  margin-bottom: 0.8rem;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  font-weight: 400;
  color: var(--gold-l);
  font-style: italic;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .iletisim-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .vm-cards { grid-template-columns: 1fr; }
  .baskan-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .baskan-photo-wrap { margin: 0 auto; }
  .home-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-hamburger { color: var(--navy); }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--total-bar);
    left: 0; right: 0;
    background: rgba(248,251,255,0.99);
    padding: 1.5rem;
    gap: 0;
    z-index: 150;
    border-bottom: 1px solid rgba(26,95,168,0.12);
  }
  .nav-links.open .nav-item > a,
  .nav-links.open .nav-item > button { color: var(--navy); text-shadow: none; }
  .nav-links.open .dropdown {
    position: static;
    background: rgba(238,244,251,0.9);
    border: none;
    border-left: 3px solid rgba(26,95,168,0.2);
    display: none;
  }
  .nav-links.open .nav-item.expanded .dropdown { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .yonetim-grid { grid-template-columns: 1fr 1fr; }
  .home-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 4rem 1.2rem; }
  .page-hero { min-height: 260px; padding-bottom: 2.5rem; }
  .hero-logo-wrap { width: 260px; height: 260px; }
  .hero-logo-wrap img { width: 100%; height: 100%; max-width: 260px; max-height: 260px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .yonetim-grid { grid-template-columns: 1fr; }
  .hero-logo-wrap { width: 220px; height: 220px; }
  .hero-logo-wrap img { width: 100%; height: 100%; max-width: 220px; max-height: 220px; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }

/* ============================================================
   PREMIUM UPGRADE LAYER — v2026.05
   Kurumsal cila: scroll progress, micro-animations, stats,
   features, gallery, top-button, glass cards, custom scrollbar
   ============================================================ */

/* Selection & scrollbar polish */
::selection { background: var(--gold); color: var(--navy); }
html { scrollbar-width: thin; scrollbar-color: var(--gold) transparent; }
html::-webkit-scrollbar { width: 10px; height: 10px; }
html::-webkit-scrollbar-track { background: var(--off-white); }
html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--navy-mid));
  border-radius: 10px;
  border: 2px solid var(--off-white);
}
html::-webkit-scrollbar-thumb:hover { background: var(--gold-l); }

/* Skip link (a11y) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: .6rem 1rem;
  z-index: 9999;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Scroll progress bar */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-l), var(--navy-mid));
  z-index: 999;
  transition: width .12s ease-out;
  box-shadow: 0 0 10px rgba(255,255,255,0.55);
}

/* Brand mark badge inside lang bar */
#langBar .langbar-brand {
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .58rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 700;
}
#langBar .langbar-brand .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.18);
  animation: pulseDot 2.4s infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 3px rgba(255,255,255,0.18); }
  50% { box-shadow: 0 0 0 6px rgba(255,255,255,0.05); }
}

/* Premium typography refinements */
.sec-title { letter-spacing: -0.01em; }
.sec-lead { font-size: 1.02rem; color: #2c3e50; }

/* Premium button system (yeni varyantlar, mevcudu bozmaz) */
.btn { border-radius: 4px; position: relative; overflow: hidden; isolation: isolate; }
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  transform: translateX(-110%);
  transition: transform .7s ease;
  z-index: -1;
}
.btn:hover::before { transform: translateX(110%); }
.btn-gold { box-shadow: 0 6px 18px rgba(255,255,255,0.28); }
.btn-outline { border-radius: 4px; }
.btn-ghost {
  display: inline-block;
  padding: .85rem 2.2rem;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: all .3s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--gold); color: var(--gold-l); }

/* Hero subtle vignette + dust particles */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(10,22,40,0.18) 0%, transparent 30%, rgba(10,22,40,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-content { animation: fadeUp 1.1s ease both; }
@keyframes heroLogoFloat {
  0%   { transform: translateY(0) rotate(-1deg); }
  50%  { transform: translateY(-14px) rotate(1.2deg); }
  100% { transform: translateY(0) rotate(-1deg); }
}
.hero-logo-wrap img {
  filter: drop-shadow(0 0 22px rgba(255,255,255,0.6)) drop-shadow(0 8px 24px rgba(0,0,0,0.3));
  opacity: 0.4;
  mix-blend-mode: screen;
  transition: opacity .4s;
  animation: heroLogoFloat 5.5s ease-in-out infinite;
  transform-origin: 50% 60%;
}
.hero-logo-wrap img:hover { opacity: 0.7; }

/* Hero scroll indicator */
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.7);
  font-size: .58rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  animation: cueBob 2.4s ease-in-out infinite;
}
.hero-scroll-cue::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.85), transparent);
}
@keyframes cueBob {
  0%,100% { transform: translate(-50%, 0); opacity: .85; }
  50% { transform: translate(-50%, 6px); opacity: 1; }
}

/* SVG Wave dividers */
.wave-divider { display: block; width: 100%; height: 80px; line-height: 0; }
.wave-divider svg { display: block; width: 100%; height: 100%; }

/* ── STATS / NUMBERS ───────────────────────────────────────── */
.stats-strip {
  background: linear-gradient(135deg, #07142a 0%, #112a52 50%, #07142a 100%);
  padding: 4.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(255,255,255,0.18), transparent 45%),
    radial-gradient(circle at 85% 50%, rgba(26,95,168,0.25), transparent 45%);
  pointer-events: none;
}
.stats-grid {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-cell {
  padding: 1rem;
  border-left: 1px solid rgba(255,255,255,0.18);
}
.stat-cell:first-child { border-left: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold-l);
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-block;
  background: linear-gradient(180deg, #f5e0a3 0%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(220,232,250,0.75);
  font-weight: 600;
  margin-top: .8rem;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .stat-cell:nth-child(3) { border-left: none; }
}

/* ── FEATURE / NEDEN BIZ ───────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-card {
  background: #fff;
  border: 1px solid rgba(26,95,168,0.08);
  border-radius: 14px;
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s, border-color .4s;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px -18px rgba(10,22,40,0.18), 0 4px 14px rgba(10,22,40,0.06);
  border-color: rgba(255,255,255,0.35);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(26,95,168,0.12));
  color: var(--navy);
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  transition: transform .4s;
}
.feature-card:hover .feature-icon { transform: rotate(-6deg) scale(1.06); }
.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
  line-height: 1.2;
}
.feature-text { font-size: .85rem; color: var(--text-muted); line-height: 1.75; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

/* ── GALLERY (mosaic) ───────────────────────────────────────── */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 14px;
  margin-top: 3rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  isolation: isolate;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .6s;
  filter: saturate(0.95) contrast(1.02);
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10,22,40,0.88) 100%);
  opacity: .92;
  transition: opacity .4s;
  z-index: 1;
  pointer-events: none;
}
.gallery-caption {
  position: absolute;
  bottom: 1.1rem; left: 1.2rem; right: 1.2rem;
  z-index: 2;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
  transform: translateY(0);
  opacity: 1;
  transition: transform .5s, opacity .5s;
}
.gallery-caption small {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-l);
  font-weight: 600;
  margin-bottom: .35rem;
}
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.1) contrast(1.06); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
@media (max-width: 900px) {
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 2; }
}
@media (max-width: 480px) {
  .gallery-mosaic { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
}

/* ── PRE-FOOTER CTA BANNER ──────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 5rem 2rem;
  background:
    linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(26,58,106,0.88) 100%),
    url('../images/sailors_river.jpg') center/cover no-repeat;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.12), transparent 45%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.cta-tag {
  display: inline-block;
  padding: .35rem 1rem;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-l);
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.cta-title em { color: var(--gold-l); font-style: italic; }
.cta-text {
  color: rgba(230,240,255,0.85);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
@media (max-width: 768px) { .cta-banner { background-attachment: scroll; padding: 4rem 1.2rem; } }

/* ── HOME CARDS UPGRADE (mevcut .home-card üstüne ek katman) ─ */
.home-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}
.home-card::after {
  content: '';
  position: absolute;
  inset: auto auto -40% -40%;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
  z-index: -1;
  opacity: 0;
  transition: opacity .5s, transform .6s;
}
.home-card:hover::after { opacity: 1; transform: translate(20px, -20px); }
.home-card-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(26,95,168,0.12));
  font-size: 2rem;
  transition: transform .4s;
}
.home-card:hover .home-card-icon { transform: scale(1.08) rotate(-4deg); }

/* ── YONETIM CARD UPGRADE ───────────────────────────────────── */
.yonetim-card {
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  position: relative;
  overflow: hidden;
}
.yonetim-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width .5s, left .5s;
}
.yonetim-card:hover::before { width: 100%; left: 0; }

/* ── FOOTER UPGRADE ─────────────────────────────────────────── */
.site-footer { position: relative; overflow: hidden; }
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}
.footer-inner-4 {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 3rem;
}
.footer-inner-4 .footer-col h4 { color: rgba(232,201,122,0.95); }
.footer-contact-line {
  display: flex; gap: .55rem; align-items: flex-start;
  font-size: .72rem;
  color: rgba(200,220,240,0.65);
  margin-bottom: .6rem;
  line-height: 1.55;
  font-weight: 300;
}
.footer-contact-line .ic { color: var(--gold-l); flex-shrink: 0; width: 14px; }
.footer-contact-line a { color: inherit; transition: color .2s; }
.footer-contact-line a:hover { color: var(--gold-l); }
@media (max-width: 1024px) { .footer-inner-4 { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 540px)  { .footer-inner-4 { grid-template-columns: 1fr; gap: 2rem; } }

/* ── FLOATING TOP BUTTON ────────────────────────────────────── */
.fab-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-l);
  border: 1px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.9);
  transition: opacity .35s, transform .35s, background .25s, color .25s;
  box-shadow: 0 10px 28px rgba(10,22,40,0.35);
}
.fab-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.fab-top:hover { background: var(--gold); color: var(--navy); }
.fab-top svg { width: 18px; height: 18px; }

/* ── WHATSAPP FLOAT ─────────────────────────────────────────── */
.fab-whats {
  position: fixed;
  right: 1.2rem;
  bottom: 4.6rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 500;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.55);
  animation: whatsPulse 2.4s infinite;
  transition: transform .25s;
}
.fab-whats:hover { transform: scale(1.08); }
.fab-whats svg { width: 22px; height: 22px; fill: currentColor; }
@keyframes whatsPulse {
  0%   { box-shadow: 0 10px 28px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 10px 28px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 28px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ── BAŞKAN MESAJI POLISH ───────────────────────────────────── */
.baskan-section { position: relative; overflow: hidden; }
.baskan-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.12), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(26,95,168,0.18), transparent 40%);
  pointer-events: none;
}
.baskan-inner { position: relative; }
.baskan-photo-circle {
  position: relative;
  box-shadow: 0 0 0 8px rgba(255,255,255,0.06), 0 25px 60px rgba(0,0,0,0.45);
}
.baskan-photo-circle::after {
  content: '';
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.4);
  animation: rotateRing 30s linear infinite;
}
@keyframes rotateRing { to { transform: rotate(360deg); } }

/* ── ETKİNLİK ITEM POLISH ───────────────────────────────────── */
.etkinlik-item {
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  transition: transform .35s, box-shadow .35s, border-left-color .35s;
}
.etkinlik-item:hover {
  transform: translateX(6px);
  border-left-color: var(--navy);
  box-shadow: 0 12px 32px -8px rgba(10,22,40,0.16);
}

/* ── MOTION PREFS ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ── PRINT ──────────────────────────────────────────────────── */
@media print {
  #langBar, .site-nav, .fab-top, .fab-whats, #scrollProgress, .hero-video-wrap, .hero-scroll-cue { display: none !important; }
  .hero, .page-hero { min-height: auto; padding-top: 1rem; }
  body { background: #fff; color: #000; }
}


/* ─────────────────────────────────────────────────────────────
   BOARD CARDS (yonetim.php — rewritten 2026-05-23)
   ───────────────────────────────────────────────────────────── */
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.board-card {
  background: #fff;
  padding: 2.5rem 1.75rem 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(26,58,106,0.08);
  box-shadow: 0 10px 32px rgba(13,32,64,0.06);
  display: flex; flex-direction: column; align-items: center;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position: relative;
}
.board-card::before {
  content: ''; position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .35s;
  border-radius: 16px 16px 0 0;
}
.board-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(26,58,106,0.14); border-color: rgba(255,255,255,0.45); }
.board-card:hover::before { opacity: 1; }

.board-avatar {
  width: 128px; height: 128px; border-radius: 50%;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #1a3a6a 0%, #0a1628 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.55), 0 10px 24px rgba(13,32,64,0.18);
  position: relative;
}
.board-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.board-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 700;
  color: var(--gold-l);
  letter-spacing: 0.02em;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.board-avatar.has-photo .board-initials { display: none; }

.board-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}
.board-role {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.9rem;
}
.board-role::after {
  content: ''; position: absolute; left: 50%; bottom: 0;
  width: 36px; height: 1px; transform: translateX(-50%);
  background: rgba(26,58,106,0.18);
}
.board-bio {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   COMMITTEES (yonetim.php — committees section)
   ───────────────────────────────────────────────────────────── */
.committee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}
.committee-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  transition: transform .3s, background .3s, border-color .3s;
}
.committee-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.committee-ico {
  display: inline-flex; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  color: var(--gold-l);
  font-size: 1.35rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.35);
}
.committee-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}
.committee-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(225,235,250,0.78);
  margin: 0;
}

@media (max-width: 1024px) {
  .board-grid, .committee-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .board-grid, .committee-grid { grid-template-columns: 1fr; }
  .board-avatar { width: 108px; height: 108px; }
  .board-initials { font-size: 2.2rem; }
}