/* ═══════════════════════════════════════════════════════════
   FEDERASYON — ANASAYFA V2 (sıfırdan modern, standalone)
   Aydınlık · ferah · kırmızı vurgu · kurumsal
   ═══════════════════════════════════════════════════════════ */

.hv2 {
    --red: #e31e26;
    --red-2: #ff4a50;
    --red-dark: #c5161d;
    --navy: #14143a;
    --navy-2: #232357;
    --ink: #1d1d28;
    --text: #555566;
    --muted: #9494a4;
    --line: #ebecf2;
    --bg: #ffffff;
    --soft: #f6f7fb;
    --tint: #fbfbfe;
    --sh-sm: 0 4px 16px rgba(20,20,55,.06);
    --sh: 0 14px 38px rgba(20,20,55,.10);
    --sh-lg: 0 26px 64px rgba(20,20,55,.16);
    --r: 20px;
    --r-sm: 14px;

    font-family: 'Poppins', system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
}
.hv2 * { box-sizing: border-box; }
.hv2 img { max-width: 100%; display: block; }
.hv2 a { text-decoration: none; }

.hv2-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ───────── Bölüm ───────── */
.hv2-section { padding: 76px 0; }
.hv2-section--soft { background: var(--soft); }
.hv2-section--tight { padding: 50px 0; }

/* ───────── Başlık ───────── */
.hv2-head { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.hv2-head__kick {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 12.5px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--red); margin-bottom: 14px;
}
.hv2-head__kick::before, .hv2-head__kick::after {
    content: ""; width: 28px; height: 2px; background: var(--red); opacity: .55;
}
.hv2-head__title {
    font-size: 40px; font-weight: 800; line-height: 1.12;
    color: var(--navy); letter-spacing: -.6px; margin: 0;
}
.hv2-head__title b { color: var(--red); font-weight: 800; }
.hv2-head__sub { margin: 16px auto 0; font-size: 16px; color: var(--text); line-height: 1.65; }
.hv2-head--row {
    display: flex; align-items: flex-end; justify-content: space-between;
    text-align: left; max-width: 100%; gap: 24px;
}
.hv2-head--row .hv2-head__title { font-size: 32px; }

/* ───────── Buton ───────── */
.hv2-btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 28px; border-radius: 40px; font-size: 14.5px; font-weight: 700;
    cursor: pointer; border: none; transition: all .28s cubic-bezier(.2,.7,.3,1);
}
.hv2-btn--primary {
    background: linear-gradient(135deg, var(--red), var(--red-2));
    color: #fff; box-shadow: 0 8px 22px rgba(227,30,38,.32);
}
.hv2-btn--primary:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(227,30,38,.42); color: #fff; }
.hv2-btn--ghost { background: #fff; color: var(--navy); border: 1.5px solid var(--line); }
.hv2-btn--ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════
   HERO BÖLÜMÜ — Liderler + Slider + Sponsor
   ═══════════════════════════════════════════════════════════ */
.hv2-hero { padding: 26px 0 40px; }
.hv2-hero__grid {
    display: grid;
    grid-template-columns: 230px 1fr 180px;
    gap: 22px;
    align-items: stretch;
}

/* Lider kartları */
.hv2-leaders { display: flex; flex-direction: column; gap: 18px; }
.hv2-leader {
    background: #fff; border-radius: var(--r-sm); overflow: hidden;
    box-shadow: var(--sh-sm); transition: transform .3s, box-shadow .3s;
    flex: 1; display: flex; flex-direction: column;
}
.hv2-leader:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.hv2-leader__photo { width: 100%; aspect-ratio: 4/5; overflow: hidden; background: #eef0f5; }
.hv2-leader__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s; }
.hv2-leader:hover .hv2-leader__photo img { transform: scale(1.06); }
.hv2-leader__info {
    position: relative; padding: 13px 15px;
    background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff;
}
.hv2-leader__info::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--navy); }
.hv2-leader__info h6 { margin: 0 0 3px; font-size: 14px; font-weight: 700; line-height: 1.25; color: #fff; }
.hv2-leader__info p { margin: 0; font-size: 11.5px; line-height: 1.3; opacity: .92; }

/* Slider sarmalayıcı */
.hv2-slider-wrap { border-radius: var(--r); overflow: hidden; box-shadow: var(--sh); min-height: 100%; }

/* Sponsor sütunu */
.hv2-sponsors {
    background: #fff; border-radius: var(--r-sm); box-shadow: var(--sh-sm);
    border: 1px solid var(--line); padding: 14px 10px;
    display: flex; flex-direction: column; gap: 10px;
}

@media (max-width: 1100px) {
    .hv2-hero__grid { grid-template-columns: 200px 1fr; }
    .hv2-sponsors { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 768px) {
    .hv2-hero__grid { grid-template-columns: 1fr; }
    .hv2-leaders { flex-direction: row; }
    .hv2-leader { flex: 1; }
}

/* ═══════════════════════════════════════════════════════════
   ÖZET İSTATİSTİK ŞERİDİ (yeni)
   ═══════════════════════════════════════════════════════════ */
.hv2-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    background: var(--line); border-radius: var(--r); overflow: hidden;
    box-shadow: var(--sh-sm); margin-top: 8px;
}
.hv2-stat { background: #fff; padding: 26px 20px; text-align: center; }
.hv2-stat__num { font-size: 34px; font-weight: 800; color: var(--red); line-height: 1; }
.hv2-stat__lbl { margin-top: 6px; font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
@media (max-width: 768px) { .hv2-stats { grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════════════════════════════════════════════════
   DUYURU KARTLARI
   ═══════════════════════════════════════════════════════════ */
.hv2-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.hv2-card {
    background: #fff; border-radius: var(--r-sm); overflow: hidden;
    box-shadow: var(--sh-sm); transition: transform .3s, box-shadow .3s;
    border: 1px solid var(--line);
}
.hv2-card:hover { transform: translateY(-7px); box-shadow: var(--sh); }
.hv2-card__img { aspect-ratio: 16/10; overflow: hidden; background: #eef0f5; }
.hv2-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.hv2-card:hover .hv2-card__img img { transform: scale(1.07); }
.hv2-card__body { padding: 18px 20px 22px; }
.hv2-card__date { font-size: 12px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .5px; }
.hv2-card__title {
    margin: 8px 0 0; font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
@media (max-width: 992px) { .hv2-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hv2-cards { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════ */
.hv2-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.hv2-reveal.in { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   MODERN FOOTER
   ═══════════════════════════════════════════════════════════ */
.ftr2 { font-family: 'Poppins', system-ui, sans-serif; }
.ftr2-container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.ftr2-main { background: #14143a; color: #fff; padding: 64px 0 48px; }
.ftr2-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; }
.ftr2-logo { height: 64px; width: auto; margin-bottom: 18px; }
.ftr2-about { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.6); margin: 0 0 20px; }
.ftr2-social { display: flex; gap: 10px; }
.ftr2-social a {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,.08); color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: all .25s;
}
.ftr2-social a:hover { background: #e31e26; transform: translateY(-3px); }
.ftr2-title { font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 20px; position: relative; padding-bottom: 12px; }
.ftr2-title::after { content: ""; position: absolute; bottom: 0; left: 0; width: 32px; height: 3px; background: #e31e26; border-radius: 2px; }
.ftr2-links, .ftr2-contact { list-style: none; margin: 0; padding: 0; }
.ftr2-links li { margin-bottom: 11px; }
.ftr2-links a { color: rgba(255,255,255,.65); font-size: 14px; transition: all .2s; display: inline-flex; align-items: center; gap: 8px; }
.ftr2-links a::before { content: "›"; color: #e31e26; font-size: 16px; }
.ftr2-links a:hover { color: #fff; transform: translateX(4px); }
.ftr2-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 14px; }
.ftr2-contact i { color: #e31e26; margin-top: 3px; flex-shrink: 0; }
.ftr2-contact a { color: rgba(255,255,255,.7); line-height: 1.6; transition: color .2s; }
.ftr2-contact a:hover { color: #fff; }
.ftr2-bottom { background: #0e0e2a; padding: 18px 0; }
.ftr2-bottom__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.ftr2-copy { margin: 0; font-size: 13px; color: rgba(255,255,255,.5); }
.ftr2-bottom__links { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.ftr2-bottom__links a { color: rgba(255,255,255,.6); transition: color .2s; }
.ftr2-bottom__links a:hover { color: #e31e26; }
.ftr2-bottom__links span { color: rgba(255,255,255,.25); }
@media (max-width: 992px) { .ftr2-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) {
    .ftr2-grid { grid-template-columns: 1fr; }
    .ftr2-bottom__in { flex-direction: column; text-align: center; }
}
