 /* --- CSS VARIABLES & LIGHT THEME RESET --- */
        :root {
            --primary: #2563eb;
            --primary-hover: #1d4ed8;
            --accent: #ff4757;
            --bg-light: #ffffff;
            --bg-alt: #f8fafc;
            --bg-card: #ffffff;
            --text-main: #0f172a;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 20px 35px -5px rgba(37, 99, 235, 0.12);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* --- NAVBAR --- */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 8%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            z-index: 1000;
            border-bottom: 1px solid var(--border);
            box-shadow: 0 2px 15px rgba(0,0,0,0.02);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-style: italic;
            color: var(--text-main);
        }

        .logo span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: 2.2rem;
            align-items: center;
        }

        .nav-links a {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-main);
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .btn-cta {
            background: var(--primary);
            color: #ffffff;
            padding: 0.65rem 1.6rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: var(--transition);
            display: inline-block;
            border: none;
            cursor: pointer;
        }

        .btn-cta:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
        }

        /* --- HERO SECTION --- */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(241, 245, 249, 0.85) 100%),
                        url('./img/background.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            padding: 0 8%;
            position: relative;
        }

        .hero-content {
            max-width: 700px;
            padding-top: 4rem;
        }

        .hero-subtitle {
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
            display: block;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.08;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            color: var(--text-main);
        }

        .hero-content h1 span {
            color: var(--primary);
            font-style: italic;
        }

        .hero-content p {
            font-size: 1.15rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
        }

        .hero-btns {
            display: flex;
            gap: 1.2rem;
            align-items: center;
        }

        .btn-secondary {
            border: 2px solid var(--border);
            background: var(--bg-light);
            color: var(--text-main);
            padding: 0.65rem 1.6rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }

        .btn-secondary:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--bg-alt);
        }

        /* --- STATS BAR --- */
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            background: var(--bg-card);
            padding: 2.5rem 8%;
            margin-top: -4rem;
            position: relative;
            z-index: 10;
            border-radius: 16px;
            margin-left: 8%;
            margin-right: 8%;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }

        .stat-item {
            text-align: center;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
        }

        .stat-item p {
            color: var(--text-muted);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        /* --- SECTION HEADINGS --- */
        section {
            padding: 5rem 8%;
        }

        .bg-alt-section {
            background-color: var(--bg-alt);
        }

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 4rem auto;
        }

        .section-header .tag {
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            text-transform: uppercase;
            margin-top: 0.3rem;
            color: var(--text-main);
        }

        /* --- SPORTS & FACILITIES --- */
        .sports-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
        }

        .sport-card {
            background: var(--bg-card);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .sport-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: var(--shadow-hover);
        }

        .sport-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .sport-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .sport-card:hover .sport-img img {
            transform: scale(1.08);
        }

        .sport-info {
            padding: 1.8rem;
        }

        .sport-info h3 {
            font-size: 1.3rem;
            margin-bottom: 0.6rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: var(--text-main);
        }

        .sport-info h3 i {
            color: var(--primary);
            font-size: 1.1rem;
        }

        .sport-info p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* --- PRICING SECTION --- */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            align-items: center;
        }

        .price-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 3rem 2rem;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            position: relative;
        }

        .price-card.featured {
            border: 2px solid var(--primary);
            background: #ffffff;
            box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.15);
            transform: scale(1.05);
        }

        .badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: #ffffff;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .price-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--text-main);
        }

        .price {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--text-main);
        }

        .price span {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        .price-features {
            margin-bottom: 2.5rem;
        }

        .price-features li {
            color: var(--text-muted);
            margin-bottom: 0.9rem;
            font-size: 0.95rem;
        }

        .price-features li i {
            color: var(--primary);
            margin-right: 0.5rem;
        }

        /* --- CONTACT SECTION --- */
        .contact-box {
            background: var(--bg-card);
            border-radius: 24px;
            padding: 4rem 8%;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .contact-details h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--text-main);
        }

        .contact-details p {
            color: var(--text-muted);
            margin-bottom: 2rem;
        }

        .info-row {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            margin-bottom: 1.5rem;
        }

        .info-row i {
            width: 45px;
            height: 45px;
            background: rgba(37, 99, 235, 0.08);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .form-group {
            margin-bottom: 1.2rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem 1.2rem;
            background: var(--bg-alt);
            border: 1px solid var(--border);
            border-radius: 12px;
            color: var(--text-main);
            font-family: inherit;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
        }

        /* --- FOOTER --- */
        footer {
            background: var(--bg-alt);
            padding: 3rem 8% 2rem 8%;
            border-top: 1px solid var(--border);
            text-align: center;
        }

        .footer-socials {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .footer-socials a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--border);
            color: var(--text-main);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }

        .footer-socials a:hover {
            background: var(--primary);
            color: #ffffff;
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        .copyright {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* --- RESPONSIVE MEDIA QUERIES --- */
        @media (max-width: 992px) {
            .hero-content h1 { font-size: 3rem; }
            .price-card.featured { transform: none; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hero-content h1 { font-size: 2.4rem; }
            section { padding: 4rem 5%; }
            .stats-container { margin-top: 2rem; margin-left: 5%; margin-right: 5%; }
            .contact-box { padding: 2rem; }
        }

        .center {
            display: block;
            margin-left: auto;
            margin-right: auto;
            width: 50%;
        }

        /* --- NEWS / MAGAZINE SECTION --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.news-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-img img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.news-source {
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.news-link {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.news-card:hover .news-link {
    color: var(--primary-hover);
}

.news-link i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.news-card:hover .news-link i {
    transform: translateX(3px);
}



/* Horizontal mobile menu directly under the header & Hero Height Fix */
@media screen and (max-width: 950px) {

  #button-upisi { display: none; }  
  
  .navbar {
    flex-direction: column !important;
    align-items: center !important;
    padding: 10px 5px !important;
  }

  .navbar .nav-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 10px 0 !important;
    padding: 0 !important;
    gap: 12px !important;
  }

  .navbar .nav-links a {
    font-size: 0.85rem !important;
  }

  .navbar .btn-cta {
    margin-top: 5px !important;
    padding: 6px 16px !important;
    font-size: 0.85rem !important;
  }

  /* --- HERO HEIGHT & SPACING ADJUSTMENTS --- */
  .hero {
    min-height: auto !important; /* Removes 100vh full-screen height constraint */
    padding-top: 140px !important; /* Adds top clearance for fixed mobile navbar */
    padding-bottom: 5rem !important;
  }

  .hero-content {
    padding-top: 0 !important; /* Removes desktop 4rem extra top padding */
  }

  .stats-container {
    margin-top: 0 !important; /* Prevents stats box from overlapping or leaving whitespace */
  }
}