/* =============================================
   NIHAT BALIK — KARŞILAMA SAYFASI STİLLERİ
   ============================================= */

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

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ARKA PLAN VİDEOSU ===== */
.hero-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* ===== BEYAZ OVERLAY — 2.5s sonra gelir ===== */
.hero-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.87);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1;
  opacity: 0;
  animation: overlay-in 1.4s cubic-bezier(0.4, 0, 0.2, 1) 2.4s forwards;
}

@keyframes overlay-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ===== İÇERİK — overlay ile birlikte beliriyor ===== */
.welcome-page {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 40px 24px 32px;
  opacity: 0;
  animation: content-in 1.2s ease-out 2.8s forwards;
}

@keyframes content-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== LOGO ===== */
.welcome-logo {
  width: 260px;
  max-width: 80vw;
  height: auto;
  display: block;
  margin-bottom: 8px;
}

.logo-text-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.logo-nihat {
  color: #C0392B;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 2px;
}

.logo-balik {
  color: #1B3A5C;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
}

/* ===== KIRMIZI ÇİZGİ ===== */
.welcome-divider {
  width: 44px;
  height: 2px;
  background: #C0392B;
  margin: 20px 0 18px;
  border-radius: 2px;
}

/* ===== ALT BAŞLIK ===== */
.welcome-subtitle {
  color: #888888;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 24px;
}

/* ===== DİL BUTONLARI ===== */
.lang-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 320px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  text-decoration: none;
  color: #1A1A1A;
  transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  -webkit-tap-highlight-color: transparent;
}

.lang-btn:hover,
.lang-btn:active {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.lang-flag {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.lang-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lang-native {
  font-size: 15px;
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.2;
}

.lang-sub {
  font-size: 11px;
  color: #C0392B;
  font-weight: 400;
}

.lang-arrow {
  font-size: 20px;
  color: #BBBBBB;
  flex-shrink: 0;
  font-weight: 300;
}

/* ===== ALT YAZI ===== */
.welcome-footer {
  margin-top: 32px;
  color: #AAAAAA;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
