/* ═══════════════════════════════════════
   SPORT — Full Styles (Merged)
   navbar/footer = sz- classes
   content = original index.php styles
   ═══════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #0f766e;
    --primary-light: #14b8a6;
    --primary-dark: #0d5c56;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --dark: #071832;
    --dark-card: #0c2340;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --glass: rgba(7,24,50,0.65);
    /* sz vars */
    --s-primary: #1a5fa8;
    --s-dark: #0d3f75;
    --s-light: #e8f2ff;
    --s-accent: #2e8bc0;
    --s-orange: #f07d2e;
    --s-muted: #5c7a96;
    --s-border: #d9e6f0;
    --s-radius: 14px;
    --s-shadow: 0 4px 24px rgba(26,95,168,.10);
    --s-shadow-lg: 0 12px 40px rgba(26,95,168,.16);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Noto Sans Georgian', 'Montserrat', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ═══════════════════════════════════════
   NAVBAR (sz- classes)
   ═══════════════════════════════════════ */
.sz-navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
    padding: 0 24px;
    transition: background 0.4s, box-shadow 0.4s;
}
.sz-navbar.scrolled {
    background: rgba(255,255,255,.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.sz-navbar-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 60px;
}
.sz-nav-brand {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
}
.sz-nav-logo {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--primary);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px; font-weight: 800;
}
.sz-nav-name {
    font-size: 15px; font-weight: 700; color: #1e293b;
}
.sz-nav-links {
    display: flex; align-items: center; gap: 24px;
}
.sz-nav-links a {
    font-size: 14px; font-weight: 500; color: #64748b;
    text-decoration: none; transition: color .2s;
}
.sz-nav-links a:hover { color: var(--primary); }
.sz-nav-btn {
    padding: 8px 20px !important;
    background: var(--primary) !important;
    color: #fff !important;
    border-radius: 10px;
    font-weight: 600 !important;
}
.sz-nav-btn:hover { background: var(--primary-dark) !important; }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex; align-items: center;
    background: linear-gradient(135deg, #071832 0%, #0c3547 50%, #0a3d2e 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1594737625785-a6cbdabd333c?w=1600&h=900&fit=crop') center/cover;
    opacity: 0.15;
}
.hero-orbs {
    position: absolute; inset: 0; pointer-events: none;
}
.hero-orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.3;
}
.hero-orb:nth-child(1) {
    width: 500px; height: 500px;
    background: var(--primary);
    top: -10%; right: -5%;
    animation: orbFloat1 18s ease-in-out infinite;
}
.hero-orb:nth-child(2) {
    width: 350px; height: 350px;
    background: var(--accent);
    bottom: -10%; left: 10%;
    animation: orbFloat2 22s ease-in-out infinite;
}
.hero-orb:nth-child(3) {
    width: 250px; height: 250px;
    background: #6366f1;
    top: 40%; left: 50%;
    animation: orbFloat3 15s ease-in-out infinite;
}
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,30px)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-40px)} }
@keyframes orbFloat3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-20px,-30px)} }

.hero-inner {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
    padding: 120px 24px 60px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(20,184,166,0.12);
    border: 1px solid rgba(20,184,166,0.25);
    border-radius: 24px; padding: 6px 16px; margin-bottom: 16px;
    color: var(--primary-light); font-size: 13px; font-weight: 600;
}
.hero-badge::before {
    content: ''; width: 8px; height: 8px;
    background: var(--primary-light); border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; color: #fff;
    line-height: 1.2; margin-bottom: 16px;
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-desc {
    font-size: 16px; color: rgba(255,255,255,0.7);
    margin-bottom: 28px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff; font-weight: 700; font-size: 15px;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(14,184,166,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14,184,166,0.4);
}
.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 12px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.2);
    color: #fff; font-weight: 600; font-size: 15px;
    text-decoration: none; transition: all 0.3s;
}
.btn-outline:hover {
    border-color: var(--primary-light);
    background: rgba(20,184,166,0.08);
}

.hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.stat-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 20px 16px;
    text-align: center; backdrop-filter: blur(10px);
}
.stat-num {
    font-size: 28px; font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    font-size: 12px; color: rgba(255,255,255,0.55);
    margin-top: 4px; font-weight: 500;
}

/* Hero image card */
.hero-visual {
    position: relative; display: flex; justify-content: center;
}
.hero-img-card {
    position: relative; border-radius: 24px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
}
.hero-img-card img {
    width: 100%; height: 420px; object-fit: cover; display: block;
}
.hero-img-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(0deg, rgba(7,24,50,0.9) 0%, transparent 100%);
    padding: 28px 24px 20px;
}
.hero-img-overlay h3 { color: #fff; font-size: 18px; font-weight: 700; }
.hero-img-overlay p { color: rgba(255,255,255,0.7); font-size: 13px; margin-top: 4px; }
.img-badge {
    position: absolute; top: 16px; right: 16px;
    background: var(--accent); color: var(--dark);
    padding: 6px 14px; border-radius: 20px;
    font-size: 12px; font-weight: 700;
}

/* ═══════════════════════════════════════
   SECTIONS (general)
   ═══════════════════════════════════════ */
.section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800; color: var(--dark);
    margin-bottom: 12px;
}
.section-subtitle {
    font-size: 16px; color: var(--text-light);
    margin-bottom: 48px; max-width: 560px;
}

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: center;
}
.about-text h3 {
    font-size: 24px; font-weight: 800;
    color: var(--dark); margin-bottom: 16px;
}
.about-text p {
    color: var(--text-light); font-size: 15px;
    line-height: 1.8; margin-bottom: 12px;
}
.about-img {
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.about-img img { width: 100%; height: 380px; object-fit: cover; display: block; }

/* ═══════════════════════════════════════
   ACHIEVEMENTS
   ═══════════════════════════════════════ */
.achievements {
    background: linear-gradient(135deg, var(--dark) 0%, #0c3547 100%);
    padding: 60px 24px;
}
.achieve-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.achieve-card {
    text-align: center; padding: 32px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}
.achieve-num {
    font-size: 36px; font-weight: 900;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.achieve-label { color: rgba(255,255,255,0.65); font-size: 14px; margin-top: 6px; font-weight: 500; }

/* ═══════════════════════════════════════
   STARS
   ═══════════════════════════════════════ */
.stars-section { background: linear-gradient(135deg, #f0fdfa 0%, #f0f9ff 100%); }
.stars-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.star-card {
    background: var(--white);
    border-radius: 20px; padding: 32px 24px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s ease;
    position: relative; overflow: hidden;
}
.star-card::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0); transition: transform 0.4s;
}
.star-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.star-card:hover::after { transform: scaleX(1); }
.star-avatar {
    width: 100px; height: 100px; border-radius: 50%;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--dark), #1a3a5c);
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; color: var(--primary-light); font-weight: 800;
    border: 3px solid rgba(14,184,166,0.3);
    overflow: hidden;
}
.star-avatar img { width: 100%; height: 100%; object-fit: cover; }
.star-card h4 { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.star-sport { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 12px; }
.star-achievements { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 12px; }
.star-badge {
    background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(245,158,11,0.05));
    color: #b45309; padding: 4px 12px; border-radius: 20px;
    font-size: 11px; font-weight: 700;
}
.star-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ═══════════════════════════════════════
   PROGRAMS
   ═══════════════════════════════════════ */
.programs-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.program-card {
    background: var(--white);
    border-radius: 16px; padding: 28px 24px;
    border: 1px solid var(--border);
    transition: all 0.35s ease;
    position: relative; overflow: hidden;
}
.program-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0; transition: opacity 0.3s;
}
.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: var(--primary-light);
}
.program-card:hover::before { opacity: 1; }
.program-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(14,184,166,0.1), rgba(14,184,166,0.05));
}
.program-card h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.program-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ═══════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    position: relative; border-radius: 16px;
    overflow: hidden; cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 240px; object-fit: cover;
    display: block; transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-cap {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(0deg, rgba(7,24,50,0.85), transparent);
    padding: 40px 16px 14px;
    color: #fff; font-size: 14px; font-weight: 600;
    transform: translateY(100%); transition: transform 0.35s ease;
}
.gallery-item:hover .gallery-cap { transform: translateY(0); }

/* ═══════════════════════════════════════
   LEADER
   ═══════════════════════════════════════ */
.leader-card {
    display: flex; gap: 40px; align-items: center;
    background: var(--white);
    border-radius: 20px; padding: 40px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.leader-avatar {
    width: 140px; height: 140px; border-radius: 20px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--dark), #1a3a5c);
    display: flex; align-items: center; justify-content: center;
    font-size: 48px; color: var(--primary-light); font-weight: 800;
}
.leader-info h3 { font-size: 22px; font-weight: 800; color: var(--dark); }
.leader-info .leader-role {
    font-size: 14px; color: var(--text-light); margin: 6px 0 12px;
}
.leader-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.leader-tag {
    background: rgba(14,184,166,0.08);
    color: var(--primary-dark);
    padding: 5px 14px; border-radius: 20px;
    font-size: 13px; font-weight: 600;
}
.leader-contacts { display: flex; gap: 20px; flex-wrap: wrap; }
.leader-contacts a {
    display: flex; align-items: center; gap: 6px;
    color: var(--text); text-decoration: none;
    font-size: 14px; font-weight: 500;
    transition: color 0.3s;
}
.leader-contacts a:hover { color: var(--primary); }

/* ═══════════════════════════════════════
   MAP
   ═══════════════════════════════════════ */
.map-section {
    background: var(--dark);
    padding: 60px 24px;
}
.map-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 360px; gap: 32px;
    align-items: stretch;
}
.map-frame {
    border-radius: 16px; overflow: hidden;
    min-height: 320px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-info {
    display: flex; flex-direction: column; gap: 16px;
}
.map-info-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; padding: 20px;
    color: #fff;
}
.map-info-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.map-info-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.map-info-card a { color: var(--primary-light); text-decoration: none; font-weight: 600; }

.back-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--primary-light); text-decoration: none;
    font-weight: 600; font-size: 14px;
    padding: 16px 0; transition: gap 0.3s;
}
.back-link:hover { gap: 12px; }

/* ═══════════════════════════════════════
   FOOTER (sz- classes)
   ═══════════════════════════════════════ */
.sz-footer {
    background: #0f172a;
    padding: 50px 24px 25px;
    color: #94a3b8;
}
.sz-footer-inner { max-width: 1200px; margin: 0 auto; }
.sz-footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; margin-bottom: 30px;
}
.sz-footer-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; margin-bottom: 12px;
}
.sz-fl-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px; font-weight: 800;
}
.sz-fl-text { font-size: 15px; font-weight: 700; color: #fff; }
.sz-footer-brand p { font-size: 14px; line-height: 1.6; }
.sz-footer-grid h4 {
    font-size: 13px; font-weight: 600; color: #fff;
    text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px;
}
.sz-footer-grid ul { list-style: none; }
.sz-footer-grid ul li { margin-bottom: 10px; }
.sz-footer-grid ul li a {
    color: #94a3b8; text-decoration: none; font-size: 14px;
    transition: color .2s;
}
.sz-footer-grid ul li a:hover { color: #fff; }
.sz-footer-bottom {
    padding-top: 25px; border-top: 1px solid #334155;
    display: flex; justify-content: space-between; font-size: 13px;
}
.sz-footer-bottom a { color: #94a3b8; text-decoration: none; }

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   RESPONSIVE (desktop overrides)
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .programs-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .achieve-grid { grid-template-columns: repeat(2, 1fr); }
    .map-grid { grid-template-columns: 1fr; }
    .sz-footer-grid { grid-template-columns: 1fr 1fr; }
    .leader-card { flex-direction: column; text-align: center; }
    .leader-tags { justify-content: center; }
    .leader-contacts { justify-content: center; }
}
@media (max-width: 600px) {
    .programs-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .achieve-grid { grid-template-columns: 1fr 1fr; }
    .sz-footer-grid { grid-template-columns: 1fr; }
    .sz-nav-links a:not(.sz-nav-btn) { display: none; }
    .sz-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}