/* ==========================================================================
   5i1 DİJİTAL — Ortak Stil Dosyası
   Tasarım dili: beyaz zemin, siyah/koyu yazı + amber "ON AIR" vurgusu.
   Bu dosyayı TÜM sayfalar <link> ile çağırır. Renk/tipografi değiştirmek
   istersen sadece buradaki :root değişkenlerini güncellemen yeterli.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500&display=swap');

:root{
  /* Renkler */
  --bg:        #FFFFFF;
  --bg-panel:  #F6F5F2;
  --bg-panel-2:#EFEDE7;
  --line:      #E2E0D9;
  --text:      #14171C;
  --text-muted:#5B5E64;
  --accent:    #E8A33D;  /* amber — "on air" ışığı */
  --accent-2:  #3E7C74;  /* koyu teal — ikincil vurgu / etiketler */
  --danger:    #C4482E;

  /* Tipografi */
  --f-display: 'Bebas Neue', sans-serif;
  --f-body:    'Inter', sans-serif;
  --f-mono:    'IBM Plex Mono', monospace;

  --radius: 4px;
  --wrap: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:hidden; }
body{ overflow-x:hidden; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--f-body);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3{ font-family:var(--f-display); font-weight:400; letter-spacing:.01em; margin:0 0 .3em; }
h1{ font-size:clamp(2.6rem,6vw,5rem); line-height:.98; }
h2{ font-size:clamp(1.8rem,3.6vw,2.8rem); line-height:1.02; }
h3{ font-size:1.4rem; }
p{ margin:0 0 1em; color:var(--text-muted); }
.container{ max-width:var(--wrap); margin:0 auto; padding:0 24px; }

/* Erişilebilirlik: klavye odağı her zaman görünür kalsın */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:3px;
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.01ms !important; transition-duration:.01ms !important; }
}

/* ---------- Üst bar / navigasyon ---------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 24px; max-width:var(--wrap); margin:0 auto;
}
.logo{ display:flex; align-items:center; gap:10px; font-family:var(--f-display); font-size:1.4rem; letter-spacing:.03em; }
.logo-img{ height:34px; width:auto; display:block; }
.rec-dot{
  width:9px; height:9px; border-radius:50%; background:var(--accent);
  box-shadow:0 0 0 0 rgba(232,163,61,.6);
  animation:pulse 2.4s infinite;
}
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(232,163,61,.55); }
  70%{ box-shadow:0 0 0 8px rgba(232,163,61,0); }
  100%{ box-shadow:0 0 0 0 rgba(232,163,61,0); }
}
.nav-links{ display:flex; gap:28px; list-style:none; margin:0; padding:0; font-size:.92rem; }
.nav-links a{ color:var(--text-muted); transition:color .15s; }
.nav-links a:hover, .nav-links a.active{ color:var(--accent); }
.nav-toggle{ display:none; background:none; border:0; color:var(--text); font-size:1.6rem; cursor:pointer; }

@media (max-width:820px){
  .nav-toggle{ display:block; }
  .nav-links{
    position:absolute; top:100%; left:0; right:0;
    flex-direction:column; gap:0; background:var(--bg-panel);
    border-bottom:1px solid var(--line);
    max-height:0; overflow:hidden; transition:max-height .25s ease;
  }
  .nav-links.open{ max-height:400px; }
  .nav-links a{ display:block; padding:14px 24px; border-top:1px solid var(--line); }
}

/* ---------- Etiket / eyebrow ---------- */
.eyebrow{
  font-family:var(--f-mono); font-size:.72rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--accent); display:inline-flex; align-items:center; gap:8px; margin-bottom:14px;
}
.eyebrow::before{ content:''; width:16px; height:1px; background:var(--accent); }

/* ---------- Buton ---------- */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--f-mono); font-size:.82rem; letter-spacing:.04em; text-transform:uppercase;
  padding:13px 26px; border-radius:var(--radius); border:1px solid var(--accent);
  transition:background .15s, color .15s;
}
.btn-solid{ background:var(--accent); color:#14171C; font-weight:600; }
.btn-solid:hover{ background:#f2b866; }
.btn-ghost{ color:var(--text); border-color:var(--line); }
.btn-ghost:hover{ border-color:var(--accent); color:var(--accent); }

/* ---------- Genel section ---------- */
.section{ padding:88px 0; }
.section-tight{ padding:56px 0; }
.section-alt{ background:var(--bg-panel); }
.section-head{ max-width:640px; margin-bottom:48px; }

/* ---------- Hizmet kartları ---------- */
.grid{ display:grid; gap:24px; }
.grid-4{ grid-template-columns:repeat(4,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }
@media (max-width:980px){ .grid-4{ grid-template-columns:repeat(2,1fr);} .grid-3{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:640px){ .grid-4,.grid-3,.grid-2{ grid-template-columns:1fr; } }

.card{
  background:var(--bg-panel); border:1px solid var(--line); border-radius:var(--radius);
  padding:28px; transition:border-color .15s, transform .15s;
}
.card:hover{ border-color:var(--accent); transform:translateY(-2px); }
.card .num{ font-family:var(--f-mono); color:var(--accent-2); font-size:.78rem; }

/* ---------- Yetenek / içerik üretici kartı ---------- */
.talent-card{
  position:relative; border-radius:var(--radius); overflow:hidden;
  aspect-ratio:3/4; background:var(--bg-panel-2); border:1px solid var(--line);
}
.talent-card img{ width:100%; height:100%; object-fit:cover; }
.talent-card .overlay{
  position:absolute; inset:auto 0 0 0; padding:16px 18px 18px;
  background:linear-gradient(0deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.65) 45%, rgba(0,0,0,0) 100%);
}
.talent-card .overlay .niche{ font-family:var(--f-mono); font-size:.68rem; color:var(--accent); text-transform:uppercase; letter-spacing:.08em; }
.talent-card .overlay h3{ margin:.15em 0 0; font-size:1.35rem; line-height:1.1; color:#F5F3EE; text-shadow:0 1px 3px rgba(0,0,0,.5); }
.talent-card:hover{ border-color:var(--accent); }

/* ---------- Footer ---------- */
.site-footer{ border-top:1px solid var(--line); padding:48px 0 32px; }
.footer-grid{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:32px; margin-bottom:32px; }
.footer-links{ list-style:none; padding:0; margin:0; display:flex; flex-wrap:wrap; gap:10px 20px; font-size:.85rem; color:var(--text-muted); }
.footer-links li{ white-space:nowrap; }
.footer-links a:hover{ color:var(--accent); }
.footer-fine{ font-family:var(--f-mono); font-size:.72rem; color:var(--text-muted); }

/* ---------- Form (İletişim) ---------- */
.form-field{ margin-bottom:18px; }
.form-field label{ display:block; font-family:var(--f-mono); font-size:.75rem; text-transform:uppercase; letter-spacing:.06em; color:var(--text-muted); margin-bottom:8px; }
.form-field input, .form-field select, .form-field textarea{
  width:100%; background:var(--bg-panel); border:1px solid var(--line); color:var(--text);
  padding:12px 14px; border-radius:var(--radius); font-family:var(--f-body); font-size:.95rem;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{ border-color:var(--accent); outline:none; }

/* ---------- Yetenek profil sayfası ---------- */
.profile-hero{ display:grid; grid-template-columns:320px 1fr; gap:48px; align-items:end; }
@media (max-width:780px){ .profile-hero{ grid-template-columns:1fr; } }
.profile-photo{ aspect-ratio:3/4; border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); }
.profile-photo img{ width:100%; height:100%; object-fit:cover; }
.tag-row{ display:flex; gap:10px; flex-wrap:wrap; margin:14px 0 20px; }
.tag{ font-family:var(--f-mono); font-size:.7rem; text-transform:uppercase; letter-spacing:.06em; color:var(--accent-2); border:1px solid var(--accent-2); padding:5px 10px; border-radius:20px; }
.gallery{ display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
@media (max-width:640px){ .gallery{ grid-template-columns:repeat(2,1fr);} }
.gallery a{ aspect-ratio:1/1; overflow:hidden; border-radius:var(--radius); border:1px solid var(--line); }
.gallery img{ width:100%; height:100%; object-fit:cover; transition:transform .2s; }
.gallery a:hover img{ transform:scale(1.06); }
.video-embed{ position:relative; width:100%; aspect-ratio:16/9; border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); }
.video-embed iframe{ width:100%; height:100%; border:0; }
.promo-note{ font-family:var(--f-mono); font-size:.72rem; color:var(--text-muted); border-left:2px solid var(--accent-2); padding-left:12px; margin-top:32px; }

/* ---------- Sosyal medya butonları ---------- */
.social-links{ display:flex; gap:10px; flex-wrap:wrap; }
.social-links a{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; color:var(--text);
  transition:border-color .15s, color .15s, background .15s;
}
.social-links a:hover{ border-color:var(--accent); color:var(--accent); }
.social-links svg{ width:17px; height:17px; fill:currentColor; }
.social-links-sm a{ width:30px; height:30px; }
.social-links-sm svg{ width:14px; height:14px; }
