/*
Theme Name: İzmir 1461 Spor Kulübü
Theme URI: https://example.com/
Author: ChatGPT
Description: İzmir 1461 Spor Kulübü için profesyonel, mobil uyumlu WordPress tema paketi. Yapım aşamasında sayfası, maç durumu, puan durumu, duyurular, antrenörler ve takımlar bölümleri içerir.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: izmir-1461-spor-kulubu
*/

:root{
  --navy:#06172f;
  --navy-dark:#020b18;
  --blue:#00a9e8;
  --red:#d9081b;
  --white:#ffffff;
  --muted:rgba(255,255,255,.72);
  --line:rgba(255,255,255,.14);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, Arial, Helvetica, sans-serif;
  background:var(--navy-dark);
  color:var(--white);
}

a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto}

.site-bg{
  min-height:100vh;
  background:
    linear-gradient(120deg, rgba(3,16,38,.96), rgba(6,23,47,.84)),
    radial-gradient(circle at 18% 30%, rgba(0,169,232,.32), transparent 28%),
    radial-gradient(circle at 84% 70%, rgba(217,8,27,.32), transparent 30%);
  position:relative;
  overflow:hidden;
}

.site-bg:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to right, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:64px 64px;
  opacity:.65;
  pointer-events:none;
}

.container{
  width:min(1180px, calc(100% - 36px));
  margin:auto;
  position:relative;
  z-index:2;
}

.header{
  padding:22px 0;
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.brand img{
  width:58px;
  height:58px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid var(--blue);
  box-shadow:0 0 0 3px rgba(217,8,27,.28);
}

.menu{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  font-size:14px;
  color:rgba(255,255,255,.82);
  font-weight:700;
}

.menu a:hover{color:var(--blue)}

.hero{
  min-height:720px;
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:34px;
  align-items:center;
  padding:58px 0;
}

.card{
  border:1px solid var(--line);
  border-radius:32px;
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  box-shadow:0 30px 80px rgba(0,0,0,.42);
  backdrop-filter:blur(14px);
}

.logo-card{
  padding:34px;
  min-height:560px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.logo-card img{
  width:210px;
  height:210px;
  object-fit:cover;
  border-radius:50%;
  border:5px solid var(--blue);
  box-shadow:0 0 0 8px rgba(217,8,27,.34),0 26px 60px rgba(0,0,0,.46);
}

.logo-card h2{
  margin:28px 0 10px;
  font-size:34px;
  line-height:1.1;
  text-transform:uppercase;
}

.logo-card h2 span{
  display:block;
  color:var(--blue);
  text-shadow:2px 2px 0 var(--red);
}

.logo-card p{
  color:var(--muted);
  line-height:1.7;
  margin:0;
}

.hero-content{
  padding:48px;
  position:relative;
  overflow:hidden;
}

.eyebrow{
  color:var(--blue);
  font-weight:900;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:14px;
  margin-bottom:18px;
}

h1{
  font-size:clamp(42px, 6vw, 86px);
  line-height:.95;
  text-transform:uppercase;
  letter-spacing:-2px;
  margin:0 0 24px;
}

h1 strong{
  color:var(--red);
  text-shadow:0 0 28px rgba(217,8,27,.34);
}

.lead{
  color:var(--muted);
  font-size:20px;
  line-height:1.7;
  margin:0 0 34px;
}

.status-box{
  display:grid;
  grid-template-columns:1fr auto;
  gap:18px;
  align-items:center;
  padding:22px;
  border-radius:22px;
  background:rgba(0,0,0,.22);
  border:1px solid var(--line);
  margin-bottom:28px;
}

.progress-title{
  display:flex;
  justify-content:space-between;
  gap:18px;
  margin-bottom:12px;
  font-weight:800;
}

.progress{
  height:12px;
  border-radius:999px;
  overflow:hidden;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.10);
}

.bar{
  width:72%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg, var(--red), var(--blue));
  animation:pulseWidth 2.8s ease-in-out infinite alternate;
}

@keyframes pulseWidth{from{width:62%}to{width:82%}}

.launch{
  min-width:112px;
  text-align:center;
  padding:16px 14px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(217,8,27,.92), rgba(157,4,18,.92));
  box-shadow:0 18px 36px rgba(217,8,27,.22);
}

.launch small{
  display:block;
  font-size:11px;
  letter-spacing:1px;
  text-transform:uppercase;
  opacity:.8;
  margin-bottom:4px;
}

.launch b{font-size:20px;text-transform:uppercase}

.features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

.feature{
  padding:18px 12px;
  border-radius:18px;
  background:rgba(255,255,255,.075);
  border:1px solid var(--line);
  text-align:center;
  font-weight:800;
  font-size:13px;
  min-height:86px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:9px;
}

.feature span{font-size:24px}

.section{
  padding:60px 0;
}

.section-title{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:20px;
  margin-bottom:22px;
}

.section-title h2{
  margin:0;
  font-size:34px;
  text-transform:uppercase;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.info-card{
  padding:24px;
  border-radius:24px;
  background:rgba(255,255,255,.075);
  border:1px solid var(--line);
}

.info-card h3{margin:0 0 10px;font-size:20px}
.info-card p{margin:0;color:var(--muted);line-height:1.7}

.table-card{
  overflow:hidden;
  border-radius:24px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.075);
}

table{
  width:100%;
  border-collapse:collapse;
}

th,td{
  padding:16px;
  border-bottom:1px solid var(--line);
  text-align:left;
}

th{
  color:var(--blue);
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:1px;
}

.footer{
  padding:34px 0;
  border-top:1px solid var(--line);
  color:rgba(255,255,255,.58);
  font-size:14px;
}

@media(max-width:900px){
  .nav{align-items:flex-start;flex-direction:column}
  .hero{grid-template-columns:1fr;min-height:auto}
  .logo-card{min-height:auto}
  .features,.grid-3{grid-template-columns:repeat(2,1fr)}
  .status-box{grid-template-columns:1fr}
}

@media(max-width:560px){
  .container{width:min(100% - 24px, 1180px)}
  .hero-content,.logo-card{padding:26px;border-radius:24px}
  h1{letter-spacing:-1px}
  .lead{font-size:17px}
  .features,.grid-3{grid-template-columns:1fr}
  .menu{gap:12px}
}
