/* ===== VARIABLES ===== */
:root {
  --navy:        #0f2742;
  --navy-2:      #18365e;
  --copper:      #d97a2c;
  --copper-2:    #b85f17;
  --ivory:       #f7f3ec;
  --ivory-2:     #eee8dc;
  --text:        #1a1f29;
  --muted:       #6b7280;
  --white:       #ffffff;
  --shadow-sm:   0 4px 12px rgba(15,39,66,0.10);
  --shadow-md:   0 12px 32px rgba(15,39,66,0.14);
  --shadow-lg:   0 24px 56px rgba(15,39,66,0.20);
  --radius:      14px;
  --radius-sm:   8px;
  --container:   1120px;
  --section-pad: clamp(56px, 9vw, 104px);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--copper-2); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== HEADER / NAVBAR ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.header-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.header-logo-text {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-wrap: nowrap;
}
.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  position: relative;
  text-decoration: none;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10px; right: 10px;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transition: transform 0.18s;
  border-radius: 2px;
}
.nav-link:hover { color: var(--white); text-decoration: none; }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--white); }

.nav-cta {
  margin-left: 8px;
  padding: 8px 16px;
  background: var(--copper);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--copper-2); transform: translateY(-1px); text-decoration: none; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
  margin-left: auto;
  line-height: 1;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenburns 30s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes kenburns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15,39,66,0.72) 0%, rgba(0,0,0,0.45) 60%, rgba(217,122,44,0.20) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 24px;
}
.hero-badge {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(217,122,44,0.30);
  border: 1px solid rgba(217,122,44,0.55);
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.92);
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero h1 span { color: var(--copper); }
.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  opacity: 0.88;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  padding: 14px 28px;
  background: var(--copper);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 8px 20px rgba(217,122,44,0.40);
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--copper-2); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(217,122,44,0.50); text-decoration: none; color: var(--white); }
.btn-outline {
  padding: 13px 28px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.60);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.10); text-decoration: none; color: var(--white); }

/* ===== SECTIONS ===== */
.section { padding: var(--section-pad) 24px; }
.section--alt { background: var(--ivory); }
.section--navy { background: var(--navy); color: var(--white); }
.container { max-width: var(--container); margin: 0 auto; }

.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
  padding-left: 16px;
  border-left: 4px solid var(--copper);
}
.section--navy .section-title { color: var(--white); }
.section-lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.section--navy .section-lead { color: rgba(255,255,255,0.75); }

/* ===== STATS BAR ===== */
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  margin: -48px 24px 0;
  position: relative;
  z-index: 3;
  box-shadow: var(--shadow-lg);
}
.stat-item {
  flex: 1 1 160px;
  padding: 32px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.10);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  color: var(--copper);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  margin-top: 6px;
  letter-spacing: 0.3px;
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--copper);
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card-icon {
  font-size: 36px;
  line-height: 1;
}
.card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.card p {
  color: var(--muted);
  font-size: 14px;
  flex: 1;
  line-height: 1.65;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--copper-2);
  margin-top: 4px;
  transition: gap 0.15s;
}
.card-link:hover { gap: 10px; text-decoration: none; }
.section--alt .card { background: var(--white); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  padding: clamp(48px, 7vw, 80px) 24px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.page-hero p {
  font-size: 17px;
  opacity: 0.80;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.about-text { display: flex; flex-direction: column; gap: 24px; }
.about-text p {
  font-size: 16.5px;
  line-height: 1.80;
  color: var(--text);
}
.about-image {
  position: sticky;
  top: 90px;
}
.about-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 3/4;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 16px;
}
.value-item {
  background: var(--ivory);
  border-radius: var(--radius-sm);
  padding: 20px;
  border-left: 3px solid var(--copper);
}
.value-item h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.value-item p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.facebook-link-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #1877f2;
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.15s;
}
.facebook-link-inline:hover { background: #0e5fcb; text-decoration: none; color: var(--white); }

/* ===== EVENTS PAGE ===== */
.events-year-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0 16px;
}
.events-year-header:first-of-type { margin-top: 0; }
.year-badge {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.year-line {
  flex: 1;
  height: 1px;
  background: var(--ivory-2);
}
.events-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 8px;
}
.events-table th {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 18px;
  text-align: left;
}
.events-table td {
  padding: 12px 18px;
  font-size: 14.5px;
  border-bottom: 1px solid var(--ivory-2);
  vertical-align: middle;
}
.events-table tr:last-child td { border-bottom: none; }
.events-table tbody tr:nth-child(even) { background: var(--ivory); }
.events-table tbody tr:hover { background: rgba(217,122,44,0.07); }
.event-no {
  color: var(--muted);
  font-size: 12px;
  width: 40px;
  text-align: center;
}
.event-mekan { font-weight: 600; color: var(--navy); }
.event-lokasyon { color: var(--muted); font-size: 13px; }
.event-date { color: var(--muted); font-size: 13px; white-space: nowrap; }

/* ===== MEDIA PAGE ===== */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.press-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--copper);
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.press-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.press-source {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 700;
}
.press-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
  flex: 1;
}
.press-arrow {
  font-size: 20px;
  color: var(--copper);
  align-self: flex-end;
}
.press-card-link {
  text-decoration: none;
  color: inherit;
}
.press-card-link:hover { text-decoration: none; }

.video-section { margin-top: 56px; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 24px;
}
.video-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== SOCIAL RESPONSIBILITY PAGE ===== */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.social-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.15s, box-shadow 0.15s;
  border-top: 4px solid var(--copper);
}
.social-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.social-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(217,122,44,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.social-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}
.social-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.70;
  flex: 1;
}
.social-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--copper-2);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.social-card-link:hover { text-decoration: none; gap: 8px; }

/* ===== CULTURE / DIALECT PAGE ===== */
.dict-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.dict-search-wrap {
  position: relative;
  flex: 1;
  min-width: 220px;
}
.dict-search-wrap input {
  width: 100%;
  padding: 13px 46px 13px 18px;
  font-size: 16px;
  border: 1px solid rgba(15,39,66,0.15);
  border-radius: var(--radius-sm);
  outline: none;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.dict-search-wrap input:focus { border-color: var(--copper); box-shadow: 0 0 0 3px rgba(217,122,44,0.12); }
.dict-search-icon { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); opacity: 0.4; font-size: 18px; }
.dict-count {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}

.dict-table-wrap {
  max-height: 600px;
  overflow-y: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.dict-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.dict-table thead {
  position: sticky;
  top: 0;
  z-index: 2;
}
.dict-table th {
  background: var(--navy);
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 20px;
  text-align: left;
  font-weight: 600;
}
.dict-table td {
  padding: 10px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--ivory-2);
  vertical-align: top;
}
.dict-table tbody tr:nth-child(even) { background: var(--ivory); }
.dict-table tbody tr:hover { background: rgba(217,122,44,0.06); }
.dict-kibrisca {
  font-style: italic;
  font-weight: 600;
  color: var(--copper-2);
  width: 40%;
}
.dict-turkce { color: var(--text); }
.dict-row--hidden { display: none; }

/* ===== GALLERY PAGE ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.40s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 18px 16px;
  background: linear-gradient(transparent, rgba(15,39,66,0.80));
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.25s ease;
  letter-spacing: 0.3px;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* Lightbox */
.lightbox-target {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.90);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox-target:target { display: flex; }
.lightbox-target img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: var(--white);
  font-size: 36px;
  text-decoration: none;
  line-height: 1;
  opacity: 0.80;
  transition: opacity 0.15s;
}
.lightbox-close:hover { opacity: 1; text-decoration: none; color: var(--white); }
.lightbox-caption-lb {
  position: absolute;
  bottom: 24px;
  color: rgba(255,255,255,0.80);
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* ===== CONTACT PAGE ===== */
.contact-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-card h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
}
.contact-card p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.70;
}
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.btn-facebook {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #1877f2;
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.15s, transform 0.1s;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(24,119,242,0.35);
}
.btn-facebook:hover { background: #0e5fcb; transform: translateY(-2px); text-decoration: none; color: var(--white); }
.contact-divider {
  color: var(--muted);
  font-size: 13px;
  position: relative;
}
.contact-divider::before,
.contact-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: var(--ivory-2);
}
.contact-divider::before { right: calc(50% + 20px); }
.contact-divider::after  { left:  calc(50% + 20px); }
.btn-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid var(--copper);
  color: var(--copper-2);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14.5px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.btn-email:hover { background: var(--copper); color: var(--white); text-decoration: none; }

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  background: var(--ivory);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
}
.contact-info-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  align-items: flex-start;
}
.contact-info-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.contact-info-text { color: var(--muted); line-height: 1.5; }
.contact-info-text strong { color: var(--navy); display: block; font-size: 13px; letter-spacing: 0.3px; }

/* ===== SECTOR CHART ===== */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.sector-bar {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}
.sector-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.sector-track {
  height: 6px;
  background: var(--ivory-2);
  border-radius: 3px;
  overflow: hidden;
}
.sector-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--copper), var(--copper-2));
  border-radius: 3px;
}
.sector-count {
  font-size: 12px;
  color: var(--muted);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.70);
  border-top: 3px solid var(--copper);
  padding: 28px 24px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13.5px;
}
.footer-inner a {
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-inner a:hover { color: var(--copper); text-decoration: none; }
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-wrap img { height: 36px; opacity: 0.85; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 24px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  display: flex;
  gap: 6px;
  align-items: center;
}
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.breadcrumb a:hover { color: var(--copper); }
.breadcrumb-sep { opacity: 0.5; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px 20px 20px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.30);
    z-index: 99;
  }
  .site-nav.open { display: flex; }
  .nav-link { padding: 10px 12px; font-size: 15px; width: 100%; }
  .nav-cta { margin-left: 0; width: 100%; text-align: center; margin-top: 8px; padding: 12px; }
  .header-inner { position: relative; }
  .stats-bar { margin: -32px 12px 0; }
  .stat-item { padding: 22px 16px; }
  .events-table .event-lokasyon { display: none; }
  .press-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .cards-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stats-bar { flex-direction: column; margin: -20px 12px 0; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); padding: 18px; }
  .stat-item:last-child { border-bottom: none; }
  .contact-card { padding: 32px 24px; }
  .dict-table-wrap { max-height: 480px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .hero-subtitle { font-size: 15px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
}
