:root {
  --bg: #16191c;
  --ink: #0f172a;
  --navy-1: #1e1b4b;
  --navy-2: #0f172a;
  --navy-950: #1e1b4b;
  --nav-h: 78px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- Navbar (yükseklik %20 büyütüldü) ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  height: var(--nav-h);
  padding: 1.08rem 1.8rem;
  background: rgba(22, 25, 28, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---------- Hamburger ---------- */
.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 11px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
}

/* ---------- Brand (logo + metin %20 büyütüldü, hizalı) ---------- */
.navbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  line-height: 1;
}

.navbar__brand img {
  display: block;
  height: 43px;
  width: auto;
}

.navbar__brand-text {
  font-weight: 700;
  font-size: 1.38rem;
  line-height: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  letter-spacing: 0.02em;
  color: #ffffff;
}

/* ---------- Navbar sağ butonlar ve sosyal bağlantılar ---------- */
.navbar__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link--social {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #cbd5e1;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, text-shadow 0.2s ease, opacity 0.2s ease;
}

.nav-link--social:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}

@media (max-width: 640px) {
  .navbar__actions {
    gap: 0.75rem;
  }
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background:
    linear-gradient(#16191c, #16191c) padding-box,
    var(--btn-gradient) border-box;
  box-shadow: var(--btn-glow);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.nav-btn span {
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--btn-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--btn-glow-hover);
}

.nav-btn--amber {
  --btn-gradient: linear-gradient(90deg, #facc15, #f97316);
  --btn-glow: 0 0 15px rgba(234, 179, 8, 0.4);
  --btn-glow-hover: 0 0 24px rgba(234, 179, 8, 0.6);
}

.nav-btn--red {
  --btn-gradient: linear-gradient(90deg, #f97316, #dc2626);
  --btn-glow: 0 0 15px rgba(239, 68, 68, 0.45);
  --btn-glow-hover: 0 0 24px rgba(239, 68, 68, 0.65);
}

/* ---------- Slide-over drawer ---------- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 60;
}

.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 280px;
  max-width: 80vw;
  background: var(--bg);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 70;
  display: flex;
  flex-direction: column;
}

.drawer.is-open {
  transform: translateX(0);
}

/* ---------- Drawer başlık bloğu (#16191c) ---------- */
.drawer__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 1.25rem;
  background: var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer__header img {
  display: block;
  height: 34px;
  width: auto;
}

.drawer__header-text {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.drawer__close {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  color: #ffffff;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.drawer__close:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ---------- Drawer sekmeler alanı (#16191c zemin, saf beyaz metin) ---------- */
.drawer__menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  background: var(--bg);
  flex: 1;
}

.drawer__link {
  display: block;
  padding: 0.75rem 0.85rem;
  font-weight: 500;
  font-size: 1rem;
  color: #ffffff;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.drawer__link:hover,
.drawer__link.is-active {
  color: #ffffff;
  background: rgba(99, 102, 241, 0.16);
  border-color: rgba(99, 102, 241, 0.32);
}

.drawer__link--logo {
  display: flex;
  align-items: center;
  padding: 0.65rem 0.85rem;
}

.drawer__link--logo img {
  display: block;
  height: 1.5rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  pointer-events: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.drawer__link--logo:hover img {
  transform: scale(1.03);
}

/* ---------- Drawer Footer ve Giriş Yap Butonu ---------- */
.drawer__footer {
  padding: 1.25rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
  background: rgba(15, 23, 42, 0.4);
}

.drawer__login-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(99, 102, 241, 0.35);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(30, 27, 75, 0.4) 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.drawer__login-btn:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(79, 70, 229, 0.4) 100%);
  border-color: rgba(129, 140, 248, 0.6);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.35);
  transform: translateY(-1px);
}

.drawer__login-icon {
  width: 1.1rem;
  height: 1.1rem;
  color: #818cf8;
}

/* ---------- Futuristic Admin Pop-up Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(10, 12, 16, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  width: 100%;
  max-width: 420px;
  background: #16191c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 30px rgba(99, 102, 241, 0.2);
  transform: scale(0.92) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  color: #ffffff;
}

.modal-overlay.is-open .modal-card {
  transform: scale(1) translateY(0);
}

.modal-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.modal-card__icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.modal-card__close {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.modal-card__close:hover {
  color: #ffffff;
  transform: scale(1.1);
}

.modal-card__alert {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-card__form .form-group {
  margin-bottom: 1.25rem;
}

.modal-card__form .form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #cbd5e1;
  margin-bottom: 0.5rem;
}

.modal-card__form .form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modal-card__form .form-input:focus {
  border-color: #818cf8;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
}

.modal-card__submit-btn {
  width: 100%;
  padding: 0.85rem 1.25rem;
  margin-top: 0.75rem;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
  transition: all 0.25s ease;
}

.modal-card__submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.55);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-h));
  padding: 2rem 1.5rem;
}

/* Arka Plan Kapsayıcı Katmanı */
.hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Bulanık ve ölçeklenmiş arka plan görseli */
.hero__bg-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  transform: scale(1.05);
  transform-origin: center;
  will-change: transform, filter;
}

/* Koyu (#16191c) yarı saydam karartma katmanı */
.hero__bg-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  background-color: rgba(22, 25, 28, 0.75);
  background: linear-gradient(
    180deg,
    rgba(22, 25, 28, 0.70) 0%,
    rgba(22, 25, 28, 0.75) 50%,
    rgba(22, 25, 28, 0.95) 100%
  );
}

/* Ön plandaki taşıyıcı (kristal netliğinde) */
.hero__inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(-18%);
}

.hero__logo {
  display: block;
  height: 7rem;
  width: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.15));
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(1.4rem, 4.2vw, 3.325rem);
  color: #ffffff;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.85),
    0 0 25px rgba(255, 255, 255, 0.6),
    0 0 45px rgba(255, 255, 255, 0.35);
}

.hero__slogan {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 1.5rem;
  font-weight: 400;
  font-size: clamp(0.65rem, 1.43vw, 0.8125rem);
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

/* Katman ve konumlandırma yardımcı sınıfları */
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; inset: 0; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.overflow-hidden { overflow: hidden; }
.scale-105 { transform: scale(1.05); }
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.no-repeat { background-repeat: no-repeat; }

.hero__cta {
  margin-top: 2rem;
  padding: 0.8rem 2.4rem;
  border-radius: 999px;
  border: 2px solid transparent;
  background:
    linear-gradient(#16191c, #16191c) padding-box,
    linear-gradient(115deg, #a855f7 0%, #6366f1 50%, #2563eb 100%) border-box;
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.45), 0 0 20px rgba(37, 99, 235, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__cta span {
  font-weight: 700;
  font-size: 1.05rem;
  background: linear-gradient(115deg, #a855f7 0%, #6366f1 50%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 32px rgba(147, 51, 234, 0.6), 0 0 32px rgba(37, 99, 235, 0.45);
}

/* ---------- Bölümler (single page) ---------- */
.section {
  scroll-margin-top: var(--nav-h);
}

.section--aihub {
  min-height: 100vh;
  max-width: 80rem;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
}

.section__title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-align: center;
}

.section__subtitle {
  margin-top: 0.5rem;
  font-size: clamp(0.875rem, 1.6vw, 1rem);
  color: #94a3b8;
  text-align: center;
}

/* ---------- Etkinliklerimiz (Events) ---------- */
.section--events {
  min-height: 100vh;
  padding: 6rem 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.events__container {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.events__main-title {
  margin-bottom: 3rem;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}

.events__table-wrapper {
  width: 100%;
  overflow-x: auto;
  background: #16191c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.875rem;
  box-shadow: 0 12px 35px -10px rgba(0, 0, 0, 0.65);
  -webkit-overflow-scrolling: touch;
}

.events__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  text-align: left;
}

.events__thead {
  background: rgba(15, 23, 42, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.events__th {
  padding: 1.15rem 1.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.events__tbody {
  background: #16191c;
}

.events__row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.2s ease;
}

.events__row:last-child {
  border-bottom: none;
}

.events__row:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.events__td {
  padding: 1.25rem 1.75rem;
  font-size: 1rem;
  vertical-align: middle;
}

.events__td--date {
  font-weight: 700;
  color: #a5b4fc;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.events__td--title {
  font-weight: 600;
  color: #f1f5f9;
}

.events__td--location {
  color: #cbd5e1;
}

.events__td--time {
  font-weight: 500;
  color: #94a3b8;
  white-space: nowrap;
}

/* ---------- İşbirliklerimiz (Collaborations) ---------- */
.section--collaborations {
  min-height: 100vh;
  padding: 6rem 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.collab__container {
  width: 100%;
}

.collab__main-title {
  margin-bottom: 3.5rem;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
  padding: 0 1.5rem;
}

.collab__block {
  width: 100%;
  margin-bottom: 1.5rem;
}

.collab__block--past {
  margin-top: 4rem;
  margin-bottom: 0;
}

.collab__subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #e2e8f0;
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 0 1.5rem;
  letter-spacing: 0.02em;
}

/* Sonsuz Kayan Logo Bandı (Infinite CSS Marquee) */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0.85rem 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 7%,
    black 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 7%,
    black 93%,
    transparent 100%
  );
}

.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-scroll 24s linear infinite;
}

.marquee--past .marquee__track {
  animation-duration: 38s;
}

/* Fare üzerine geldiğinde duraklama */
.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Logo Kartı */
.collab-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 94px;
  padding: 0.75rem 1.25rem;
  background: #1e2530;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              background 0.3s ease;
  flex-shrink: 0;
  user-select: none;
}

.collab-card:hover {
  transform: translateY(-4px) scale(1.02);
  background: #252d3a;
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(96, 165, 250, 0.2);
}

.collab-card img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.collab-card:hover img {
  transform: scale(1.04);
}

/* Statik 4'lü Grid (Mevcut İşbirliklerimiz) */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .collab-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.collab-grid .collab-card {
  width: 100%;
  height: 105px;
}

.collab-grid .collab-card img {
  max-height: 64px;
}

/* ---------- YAZGİG'26 Bölümü ---------- */
.yazgig26 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem;
  background-color: #16191c;
}

.yazgig26__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.yazgig26__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  transform: scale(1.06);
  transform-origin: center;
  will-change: transform, filter;
}

.yazgig26__bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(22, 25, 28, 0.78);
  background: linear-gradient(
    180deg,
    rgba(22, 25, 28, 0.72) 0%,
    rgba(22, 25, 28, 0.82) 50%,
    rgba(22, 25, 28, 0.95) 100%
  );
}

.yazgig26__inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.yazgig26__logo {
  height: 6rem;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
}

.yazgig26__desc {
  color: #f1f5f9;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
  margin-top: 1.5rem;
  max-width: 44rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.yazgig26__location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  margin-top: 1.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  font-size: 0.875rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.yazgig26__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 56rem;
  width: 100%;
}

.yazgig26__card {
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 14px 30px -6px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.yazgig26__card:hover {
  transform: translateY(-4px);
}

.yazgig26__card--red {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  box-shadow: 0 10px 25px -5px rgba(220, 38, 38, 0.4), 0 0 15px rgba(239, 68, 68, 0.2);
}

.yazgig26__card--red:hover {
  box-shadow: 0 16px 32px -5px rgba(220, 38, 38, 0.55), 0 0 25px rgba(239, 68, 68, 0.35);
}

.yazgig26__card--yellow {
  background: linear-gradient(135deg, #fde047 0%, #facc15 50%, #eab308 100%);
  color: #020617;
  box-shadow: 0 10px 25px -5px rgba(234, 179, 8, 0.35), 0 0 15px rgba(250, 204, 21, 0.2);
}

.yazgig26__card--yellow:hover {
  box-shadow: 0 16px 32px -5px rgba(234, 179, 8, 0.5), 0 0 25px rgba(250, 204, 21, 0.35);
}

.yazgig26__card--navy {
  background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
  color: #ffffff;
  border: 1px solid rgba(99, 102, 241, 0.3);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.6), 0 0 20px rgba(99, 102, 241, 0.15);
}

.yazgig26__card--navy:hover {
  box-shadow: 0 16px 32px -5px rgba(15, 23, 42, 0.8), 0 0 25px rgba(99, 102, 241, 0.35);
  border-color: rgba(99, 102, 241, 0.5);
}

.yazgig26__card-val {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.yazgig26__card-label {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Destekleyici utility sınıfları */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gap-6 { gap: 1.5rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.p-6 { padding: 1.5rem; }
.min-h-screen { min-height: 100vh; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.inline-flex { display: inline-flex; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-24 { height: 6rem; }
.w-auto { width: auto; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.shrink-0 { flex-shrink: 0; }
.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1rem; }
.bg-\[\#16191c\] { background-color: #16191c; }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.backdrop-blur { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.border { border-width: 1px; border-style: solid; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.rounded-xl { border-radius: 0.75rem; }
.bg-red-600 { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }
.bg-yellow-400 { background: linear-gradient(135deg, #fde047 0%, #facc15 50%, #eab308 100%); }
.bg-indigo-950 { background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%); }
.border-indigo-500\/30 { border-color: rgba(99, 102, 241, 0.3); }
.shadow-lg { box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3); }
.text-white { color: #ffffff; }
.text-slate-100 { color: #f1f5f9; }
.text-slate-200 { color: #e2e8f0; }
.text-slate-900 { color: #0f172a; }
.text-slate-950 { color: #020617; }
.text-red-500 { color: #ef4444; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-3xl { font-size: 1.875rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.tracking-wide { letter-spacing: 0.025em; }
.block { display: block; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.object-contain { object-fit: contain; }
.max-h-16 { max-height: 4rem; }
.w-full { width: 100%; }
.border-collapse { border-collapse: collapse; }
.overflow-x-auto { overflow-x-auto; }
.bg-slate-900\/80 { background-color: rgba(15, 23, 42, 0.8); }
.divide-y > * + * { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.divide-white\/10 > * + * { border-top-color: rgba(255, 255, 255, 0.1); }
.hover\:bg-white\/5:hover { background-color: rgba(255, 255, 255, 0.05); }
.transition-colors { transition-property: color, background-color, border-color; }
.duration-200 { transition-duration: 200ms; }

@media (min-width: 768px) {
  .yazgig26__logo { height: 8rem; }
  .yazgig26__desc { font-size: 1.25rem; }
  .yazgig26__location { font-size: 1rem; }
  .yazgig26__stats { grid-template-columns: repeat(3, 1fr); }
  .yazgig26__card-val { font-size: 2.25rem; }
  .yazgig26__card-label { font-size: 1.05rem; }
  .md\:h-7 { height: 1.75rem; }
  .md\:h-32 { height: 8rem; }
  .md\:text-base { font-size: 1rem; }
  .md\:text-xl { font-size: 1.25rem; }
  .md\:text-2xl { font-size: 1.5rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ---------- Hakkımızda ---------- */
.section--about {
  min-height: 100vh;
  max-width: 80rem;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
}

.about__text {
  max-width: 56rem;
  margin: 2.5rem auto 0;
  padding: 0 1rem;
  text-align: center;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  color: #f1f5f9;
}

/* ---------- İletişim ---------- */
.section--contact {
  min-height: 100vh;
  max-width: 72rem;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact__heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.contact__line {
  font-size: clamp(0.95rem, 1.8vw, 1.0625rem);
  line-height: 1.8;
  color: #e2e8f0;
  margin-bottom: 0.75rem;
}

.contact__line strong {
  color: #ffffff;
  font-weight: 600;
}

.contact__mail {
  color: #e2e8f0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, text-shadow 0.3s ease, border-color 0.25s ease;
}

.contact__mail:hover {
  color: #60a5fa;
  border-color: #3b82f6;
  text-shadow: 0 0 14px rgba(96, 165, 250, 0.55);
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 45px -20px rgba(0, 0, 0, 0.8);
  filter: grayscale(0.4) contrast(1.1);
  transition: filter 0.3s ease;
}

.contact__map iframe:hover {
  filter: grayscale(0) contrast(1);
}

/* ---------- Blog kart düzeni (ortalanmış, sarmalayan) ---------- */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem auto 0;
}

.blog-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 280px;
  padding: 1.5rem;
  background: #16191c;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

@media (min-width: 640px) {
  .blog-card {
    width: calc(50% - 1.5rem);
  }
}

@media (min-width: 1024px) {
  .blog-card {
    width: calc(25% - 1.5rem);
  }
}

.blog-card:hover {
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
}

.blog-card__image-wrap {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.05);
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__image {
  transform: scale(1.05);
}

.blog-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.blog-card__excerpt {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #cbd5e1;
}

.blog-card__more {
  margin-top: 1rem;
  display: inline-block;
  font-weight: 600;
  color: #60a5fa;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card__more {
  color: #93c5fd;
}

/* ---------- Tüm yazıları oku ---------- */
.blog-all {
  text-align: center;
  margin-top: 2.5rem;
}

.blog-all__link {
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #60a5fa;
  transition: color 0.2s ease, text-shadow 0.3s ease;
}

.blog-all__link:hover {
  color: #93c5fd;
  text-shadow: 0 0 16px rgba(96, 165, 250, 0.55);
}

/* ---------- Blog detay ---------- */
.post {
  max-width: 720px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  color: #cbd5e1;
}

.post__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.post p {
  margin-bottom: 1.1rem;
  line-height: 1.8;
}

.post__back {
  margin-top: 1.5rem;
  display: inline-block;
  font-weight: 600;
  color: #60a5fa;
}

.post__back:hover {
  color: #93c5fd;
}
