:root{
  --bg:#0b1220;
  --panel:#0f1a2e;
  --text:#eaf0ff;
  --muted:#aab6d6;
  --line:rgba(255,255,255,.10);
  --brand:#4dc9d8;      /* logoya yakın turkuaz */
  --brand2:#a78bfa;
  --shadow: 0 14px 50px rgba(0,0,0,.35);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(167,139,250,.18), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(77,201,216,.14), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
.container{width:min(1100px, 92%); margin-inline:auto}

.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,18,32,.75);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0;
}

.brand{display:flex; align-items:center; gap:12px}
.brand-logo{
  width:100px; height:auto;
  display:block;
}
.brand-text small{display:block; color:var(--muted); margin-top:2px}

.nav{display:flex; align-items:center; gap:10px}
.nav a{
  padding:10px 12px;
  border-radius:12px;
  color:var(--muted);
  border:1px solid transparent;
}
.nav a:hover{color:var(--text); border-color:var(--line); background: rgba(255,255,255,.04)}
.nav a.active{color:var(--text); border-color:rgba(77,201,216,.35); background: rgba(77,201,216,.08)}

.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}

/* Hero */
.hero{padding:28px 0 18px}
.hero-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:stretch;
}
.hero-copy h1{margin:0 0 10px; font-size:44px}
.lead{color:var(--muted); font-size:16px; margin:0 0 12px}
.hero-badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.pill{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size:13px;
}

/* Kart */
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:16px;
}

.hero-art{
  padding:0;
  overflow:hidden;
}
.hero-art svg{display:block; width:100%; height:auto}

.section{padding:34px 0}
.section.alt{
  background: rgba(255,255,255,.02);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line)
}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:14px}
.section-head h1, .section-head h2{margin:0}
.muted{color:var(--muted)}

.grid{display:grid; gap:14px}
.grid.cards{grid-template-columns: repeat(3, 1fr)}
.grid.hosts{grid-template-columns: repeat(3, 1fr)}


.single-col {
    grid-template-columns: 1fr !important;
}

.meta{display:flex; gap:12px; flex-wrap:wrap; color:var(--muted); margin-top:10px}

.host{display:flex; gap:12px; align-items:flex-start}
.avatar{
  width:48px;height:48px;border-radius:16px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(77,201,216,.18), rgba(167,139,250,.18));
  border:1px solid var(--line);
  font-weight:800;
}
.chips{display:flex; gap:8px; flex-wrap:wrap; margin-top:8px}
.chip{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
}

.table-wrap{
  overflow:auto;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(0,0,0,.12);
}
.schedule{
  width:100%;
  border-collapse:collapse;
  min-width: 700px;
}
.schedule th, .schedule td{
  text-align:left;
  padding:12px 14px;
  border-bottom:1px solid var(--line);
}
.schedule th{color:var(--muted); font-weight:650; background: rgba(255,255,255,.03)}
.schedule tbody tr:hover{background: rgba(255,255,255,.03)}

/* İletişim */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.map-wrap{
  border-radius: 16px;
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(0,0,0,.12);
}
.map-wrap iframe{
  width:100%;
  height:320px;
  border:0;
  display:block;
}
.map-actions{margin-top:12px}

/* Buton */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(77,201,216,.35);
  background: rgba(77,201,216,.10);
  color:var(--text);
  cursor:pointer;
}
.btn:hover{background: rgba(77,201,216,.16)}
.btn-ghost{
  border-color: var(--line);
  background: rgba(255,255,255,.03);
}
.btn-ghost:hover{background: rgba(255,255,255,.06)}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.18);
  padding:22px 0 14px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap:18px;
}
.footer-links{list-style:none; padding:0; margin:10px 0 0; color:var(--muted)}
.footer-links li{margin:6px 0}
.footer-links a{color:var(--muted)}
.footer-links a:hover{color:var(--text)}
.footer-bottom{
  border-top:1px solid var(--line);
  margin-top:16px;
  padding-top:12px;
  color: var(--muted);
}

/* WhatsApp Floating Button */
.wa-fab{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(77,201,216,.38);
  background: rgba(11,18,32,.78);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  color: var(--text);
}
.wa-fab:hover{ background: rgba(77,201,216,.10); }
.wa-dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(77,201,216,.18);
}

/* Responsive */
@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .grid.cards, .grid.hosts{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .nav-toggle{display:inline-flex}
  .nav{
    position:absolute;
    right:4%;
    top:72px;
    flex-direction:column;
    align-items:stretch;
    padding:10px;
    border:1px solid var(--line);
    border-radius:16px;
    background: rgba(11,18,32,.92);
    display:none;
    min-width: 220px;
  }
  .nav.open{display:flex}
  .brand-logo{width:64px}
}


.photo-hero{
  position: relative;
  height: 520px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  overflow: hidden;
}
.photo-hero img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}
.photo-hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(11,18,32,.82) 0%, rgba(11,18,32,.45) 55%, rgba(11,18,32,.20) 100%),
    linear-gradient(180deg, rgba(11,18,32,.35) 0%, rgba(11,18,32,.75) 100%);
}
.photo-hero-content{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
}
.photo-hero-content h1{ margin:0; font-size:46px; }
.photo-hero-content p{ margin:0; color:#aab6d6; max-width: 560px; }

@media (max-width: 920px){
  .photo-hero{ height: 420px; }
  .photo-hero-content h1{ font-size: 38px; }
}

.footer-social{
  display:flex;
  gap:14px;
  margin-top:12px;
  flex-wrap:wrap;
}

.footer-social a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size:14px;
}

.footer-social a:hover{
  color: var(--text);
  background: rgba(77,201,216,.10);
  border-color: rgba(77,201,216,.35);
}

.footer-social svg{
  width:18px;
  height:18px;
  fill: currentColor;
}

