/* ==========================================================
   kofteciyusuf.ru — "Yakında" Sayfası
   Tasarım: Sıcak, minimalist, turuncu odaklı
   ========================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@400;500;600&display=swap');

/* ── CSS Değişkenleri ── */
:root {
  --orange: #F07C00;
  --orange-light: #FF9A2E;
  --orange-dark: #C46200;
  --black: #111111;
  --gray: #555555;
  --gray-light: #F5F0EB;
  --white: #FFFFFF;
  --radius: 14px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--white);
  color: var(--black);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Arkaplan Doku ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(240,124,0,0.08) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F07C00' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── Container ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
header {
  padding: 20px 0 0;
  text-align: center;
}

/* ── "Yapım Aşamasında" Rozeti ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  animation: badgePulse 2.5s ease-in-out infinite;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--white);
  border-radius: 50%;
  animation: dotBlink 1.2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240,124,0,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(240,124,0,0); }
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── Dekoratif Çizgi ── */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(240,124,0,0.3), transparent);
}

.divider-icon {
  font-size: 20px;
  opacity: 0.6;
}

/* ── Ana İçerik ── */
main {
  padding: 12px 0 40px;
}

/* ── Dil Bölümü ── */
.lang-section {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--transition) forwards;
}

.lang-section:first-child { animation-delay: 0.1s; }
.lang-section:last-child  { animation-delay: 0.3s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* text-card kalan alanı doldursun → kutular eşit yüksekte */
.lang-section .text-card {
  flex: 1;
}

/* ── Başlık ── */
.lang-section h1,
.lang-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 20px;
}

.lang-section h1 {
  font-size: clamp(20px, 2.8vw, 32px);
  text-align: left;
}

.lang-section h2 {
  font-size: clamp(20px, 2.8vw, 32px);
  text-align: left;
}

/* "Köfteci Yusuf" vurgulu ── */
.brand-name {
  color: var(--orange);
  position: relative;
  white-space: nowrap;
}

.brand-name::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  opacity: 0.3;
}

/* ── Metin Kartı ── */
.text-card {
  background: var(--gray-light);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 28px 32px;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  position: relative;
}

.text-card p + p {
  margin-top: 12px;
}

/* ── Dil Etiketi — kaldırıldı ── */

/* ── İletişim Bölümü ── */
.contact-section {
  text-align: center;
  padding: 60px 0 80px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--transition) 0.5s forwards;
}

.contact-section p {
  color: var(--gray);
  margin-bottom: 28px;
  font-size: 15px;
}

/* ── İletişim Butonu ── */
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(240,124,0,0.35);
  position: relative;
  overflow: hidden;
}

.btn-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn-contact:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(240,124,0,0.45);
}

.btn-contact:hover::before {
  opacity: 1;
}

.btn-contact:active {
  transform: translateY(-1px);
}

/* Buton ikon ── */
.btn-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-contact:hover .btn-icon {
  transform: rotate(15deg) scale(1.2);
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 24px 0 40px;
  color: #aaa;
  font-size: 13px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

footer a {
  color: var(--orange);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ── Dekoratif Köfte İkon ── */
.hero-emoji {
  font-size: 36px;
  display: block;
  text-align: center;
  margin-bottom: 12px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── Yan Yana Grid ── */
.lang-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 28px;
  align-items: stretch;
}

/* Dikey ayırıcı — sadece ince çizgi */
.divider-v {
  width: 1px;
  background: rgba(240,124,0,0.25);
  margin: 0;
}

/* Mobil: alt alta */
@media (max-width: 760px) {
  .lang-grid {
    grid-template-columns: 1fr;
  }
  .divider-v {
    display: none;
  }
  .lang-section + .lang-section {
    border-top: 1px solid rgba(240,124,0,0.15);
    padding-top: 28px;
    margin-top: 4px;
  }
}
