﻿:root {
    /* Palette taken from webroot/images/logo-top.svg */
    --green: #0450a3; /* primary - logo blue */
    --green-dark: #023a7a; /* darker blue */
    --green-light: #7fb4e6; /* light blue accent */
    --white: #ffffff;
    --black: #111111;
    --gray: #f4f6f5;
    --gray-dark: #444;
    --shadow: 0 20px 50px rgba(0,0,0,.15);
    --radius: 25px;
    --transition: all .35s ease;
    --asset-hero: url("images/rekrutacja/hero.jpg");
    --color-d60000: #d60000;
    --color-fff5f5: #fff5f5;
    --color-rgb-1: rgba(0,0,0,.75);
    --color-rgb-2: rgba(0,0,0,.25);
    --color-55d98b: #e2cf66; /* map green accent -> logo light gold */
    --color-rgb-3: rgba(255,255,255,.15);
    --color-666: #666;
    --color-rgb-4: rgba(0,0,0,.4);
    --color-ddd: #ddd;
    --color-555: #555;
    --color-00b85c: #ddc338; /* map greens -> logo gold */
    --color-fff: #fff;
    --color-f7f9f8: #f7f9f8;
    --color-rgb-5: rgba(0,0,0,.08);
    --color-rgb-6: rgba(0,0,0,.12);
    --color-edf8f1: #edf8f1;
    --color-999: #999;
    --color-00a653: #ddc338;
    --color-9cffc0: #e2cf66;
    --color-111: #111;
    --color-f6f8f7: #f6f8f7;
    --color-f5f8f6: #f5f8f6;
    --color-f2f5f3: #f2f5f3;
    --color-ffb400: #ffb400;
    --color-e7eee9: #e7eee9;
    --color-a8ffc8: #e2cf66;
    --color-4bd681: #ddc338;
    --color-333: #333;
    --color-aaa: #aaa;
    --color-rgb-7: rgba(4,80,163,.25);
    --color-rgb-8: rgba(4,80,163,.35);
}

.phone-error {
            display:none;
            color:var(--color-d60000);
            font-size:14px;
            font-weight:700;
            margin-top:-10px;
            margin-bottom:15px;
        }
        .phone-error.show {
            display:block;
        }
        .input-error {
            border:2px solid var(--color-d60000) !important;
            background:var(--color-fff5f5);
        }
        /* =====================================================
           KS BIELIK PREMIUM REKRUTACJA
           CZĘŚĆ 1/6
        ===================================================== */

        /* RESET */
        * {
            margin:0;
            padding:0;
            box-sizing:border-box;
        }
        html {
            scroll-behavior:smooth;
        }
        body {
            font-family:
                    "Segoe UI",
                    Arial,
                    sans-serif;
            color:var(--black);
            background:var(--white);
            line-height:1.6;
        }
        .topbar {
            position:sticky;
            top:0;
            width:100%;
            z-index:1300;
            background:rgba(17,17,17,.88);
            backdrop-filter:blur(12px);
            box-shadow:0 8px 24px rgba(0,0,0,.18);
        }
        .topbar-inner {
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:30px;
            min-height:88px;
        }
        .topbar-brand {
            display:inline-flex;
            align-items:center;
            gap:14px;
            color:var(--white);
            font-size:24px;
            font-weight:900;
        }
        .topbar-brand img {
            width:58px;
            height:58px;
            object-fit:contain;
            flex-shrink:0;
        }
        .topbar-nav {
            display:flex;
            align-items:center;
            justify-content:flex-end;
            gap:6px;
            flex-wrap:wrap;
        }
        .topbar-nav a {
            padding:10px 16px;
            border-radius:999px;
            color:rgba(255,255,255,.92);
            font-weight:700;
            transition:var(--transition);
            white-space: nowrap;
        }
        .topbar-nav a:hover,
        .topbar-nav a.is-active {
            background:rgba(255,255,255,.12);
            color:var(--white);
        }
        img {
            max-width:100%;
            display:block;
        }
        a {
            text-decoration:none;
            color:inherit;
        }
        .container {
            width:min(1200px,92%);
            margin:auto;
        }
        /* =====================================================
           BUTTONS
        ===================================================== */
        .btn {
            display:inline-flex;
            align-items:center;
            justify-content:center;
            gap:10px;
            padding:16px 35px;
            border-radius:50px;
            font-weight:800;
            text-transform:uppercase;
            letter-spacing:.5px;
            transition:var(--transition);
            cursor:pointer;
        }
        .btn-green {
            background:var(--green);
            color:var(--white);
        }
        .btn-green:hover {
            background:var(--green-dark);
            transform:translateY(-4px);
            box-shadow:var(--shadow);
        }
        .btn-white {
            background:var(--white);
            color:var(--green);
        }
        .btn-white:hover {
            transform:translateY(-4px);
        }
        /* =====================================================
           ANIMATIONS
        ===================================================== */
        @keyframes fadeUp {
            from {
                opacity:0;
                transform:translateY(40px);
            }
            to {
                opacity:1;
                transform:none;
            }
        }
        .fade-up {
            animation:
                    fadeUp 1s ease forwards;
        }
        /* =====================================================
           HERO SECTION
        ===================================================== */
        .hero {
            min-height:95vh;
            position:relative;
            display:flex;
            align-items:center;
            padding:180px 0 110px;
            color:var(--white);
            overflow:hidden;
            background:
                    linear-gradient(
                            90deg,
                            var(--color-rgb-1),
                            var(--color-rgb-2)
                    ),
                    var(--asset-hero);
            background-size:cover;
            background-position:center;
        }
        .hero-content {
            max-width:750px;
        }
        .hero h1 {
            font-size:
                    clamp(42px,6vw,75px);
            line-height:1.05;
            font-weight:900;
            margin-bottom:25px;
        }
        .hero h1 span {
            color:var(--color-55d98b);
        }
        .hero p {
            font-size:22px;
            max-width:650px;
            margin-bottom:40px;
        }
        .hero-buttons {
            display:flex;
            gap:20px;
            flex-wrap:wrap;
        }
        /* badge */
        .hero-badge {
            display:inline-block;
            background:var(--color-rgb-3);
            backdrop-filter:blur(10px);
            padding:10px 22px;
            border-radius:50px;
            margin-bottom:25px;
            font-weight:700;
        }
        /* =====================================================
           QUICK NUMBERS
        ===================================================== */
        .stats {
            background:var(--white);
            margin-top:-80px;
            position:relative;
            z-index:5;
        }
        .stats-box {
            background:var(--white);
            border-radius:30px;
            box-shadow:var(--shadow);
            padding:45px 30px;
            display:grid;
            grid-template-columns:
    repeat(4,1fr);
            gap:30px;
        }
        .stat {
            text-align:center;
        }
        .stat strong {
            display:block;
            font-size:50px;
            font-weight:900;
            color:var(--green);
            line-height:1;
        }
        .stat span {
            display:block;
            margin-top:10px;
            color:var(--gray-dark);
            font-weight:600;
        }
        /* =====================================================
           SECTION GENERAL
        ===================================================== */
        .section {
            padding:100px 0;
        }
        .section-title {
            text-align:center;
            margin-bottom:60px;
        }
        .section-title h2 {
            font-size:
                    clamp(32px,5vw,52px);
            font-weight:900;
        }
        .section-title h2 span {
            color:var(--blue);
        }
        .section-title p {
            max-width:700px;
            margin:20px auto 0;
            color:var(--color-666);
            font-size:18px;
        }
        /* =====================================================
           MOBILE
        ===================================================== */
        @media(max-width:900px){
            main {
            }
            .topbar-inner {
                min-height:auto;
                padding:10px 0 10px;
                flex-direction:column;
                justify-content:center;
                gap:8px;
            }
            .topbar-brand {
                font-size:18px;
            }
            .topbar-brand img {
                width:45px;
                height:45px;
            }
            .topbar-nav {
                width:100%;
                justify-content:center;
                gap: 4px;
            }
            .topbar-nav a {
                padding:6px 10px;
                font-size:12px;
            }
            .stats-box {
                grid-template-columns:
    repeat(2,1fr);
            }
            .hero {
                min-height:90vh;
                padding-top:220px;
            }
            .hero p {
                font-size:18px;
            }
        }
        @media(max-width:550px){
            main {
                margin-top: 120px;
            }
            .topbar-inner {
                padding: 8px 0 8px;
                gap: 6px;
            }
            .topbar-brand {
                font-size: 16px;
            }
            .topbar-brand img {
                width: 40px;
                height: 40px;
            }
            .topbar-nav {
                gap: 3px;
            }
            .topbar-nav a {
                padding: 4px 8px;
                font-size: 11px;
            }
            .stats-box {
                grid-template-columns:1fr;
            }
            .hero-buttons {
                flex-direction:column;
            }
            .btn {
                width:100%;
            }
            .section {
                padding:70px 0;
            }
        }
        .popup {
            display:none;
            position:fixed;
            z-index:9999;
            left:0;
            top:0;
            width:100%;
            height:100%;
            background:
                    var(--color-rgb-1);
            align-items:center;
            justify-content:center;
        }
        .popup-content {
            background:var(--white);
            width:min(500px,90%);
            padding:40px;
            border-radius:30px;
            position:relative;
            box-shadow:0 30px 80px var(--color-rgb-4);
        }
        .popup-content h2 {
            font-size:32px;
            margin-bottom:15px;
            color:var(--green);
        }
        .popup-content input {
            width:100%;
            padding:15px;
            margin-bottom:15px;
            border-radius:12px;
            border:1px solid var(--color-ddd);
            font-size:16px;
        }
        .popup-content button {
            width:100%;
            border:0;
            margin-top: 15px;
        }
        .close-popup {
            position:absolute;
            right:25px;
            top:15px;
            font-size:35px;
            cursor:pointer;
            color:var(--color-555);
        }
        .promo-strip{
            width:min(1200px,92%);
            margin:0;
            position:fixed;
            top:102px;
            left:50%;
            transform:translateX(-50%);
            z-index:1200;
            background:linear-gradient(90deg,var(--green),var(--color-00b85c));
            color:var(--color-fff);
            text-align:center;
            padding:18px;
            font-size:22px;
            font-weight:800;
            border-radius:20px;
            animation:pulsePromo 2.5s infinite;
        }
        @keyframes pulsePromo{
            0%,100%{
                box-shadow:0 0 0 0 var(--color-rgb-7);
                filter:brightness(1);
            }
            50%{
                box-shadow:0 8px 26px 0 var(--color-rgb-8);
                filter:brightness(1.03);
            }
        }
        @media(max-width:700px){
            .promo-strip{
                width:calc(100% - 20px);
                top:132px;
                font-size:16px;
                padding:12px;
                border-radius:14px;
            }
        }

.hockey-grid {
        display:grid;
        grid-template-columns:
1fr 1fr;
        gap:60px;
        align-items:center;
    }
    .hockey-image img {
        width:100%;
        height:550px;
        object-fit:cover;
        border-radius:var(--radius);
        box-shadow:var(--shadow);
    }
    .feature {
        display:flex;
        gap:20px;
        margin-bottom:35px;
    }
    .feature-icon {
        min-width:65px;
        height:65px;
        border-radius:50%;
        background:var(--green);
        color:var(--white);
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:30px;
    }
    .feature h3 {
        font-size:24px;
        margin-bottom:5px;
    }
    .feature p {
        color:var(--color-666);
    }
    .facts {
        background:var(--color-f7f9f8);
    }
    .facts-grid {
        display:grid;
        grid-template-columns:
repeat(4,1fr);
        gap:25px;
    }
    .fact-card {
        background:var(--white);
        padding:35px;
        border-radius:25px;
        box-shadow:
                0 10px 30px var(--color-rgb-5);
        transition:.3s;
    }
    .fact-card:hover {
        transform:translateY(-10px);
        box-shadow:var(--shadow);
    }
    .fact-number {
        font-size:45px;
        font-weight:900;
        color:var(--green-light);
        margin-bottom:20px;
    }
    .fact-card h3 {
        font-size:24px;
        margin-bottom:15px;
    }
    .cards-grid {
        display:grid;
        grid-template-columns:
repeat(3,1fr);
        gap:30px;
    }
    .big-card {
        background:var(--white);
        border-radius:var(--radius);
        overflow:hidden;
        box-shadow:
                0 15px 40px var(--color-rgb-6);
        transition:.35s;
    }
    .big-card:hover {
        transform:translateY(-10px);
    }
    .big-card img {
        width:100%;
        height:280px;
        object-fit:cover;
    }
    .card-body {
        padding:30px;
    }
    .card-body h3 {
        font-size:28px;
        margin-bottom:15px;
    }
    .card-body p {
        color:var(--color-666);
    }
    @media(max-width:900px){
        .hockey-grid,
        .cards-grid {
            grid-template-columns:1fr;
        }
        .facts-grid {
            grid-template-columns:
repeat(2,1fr);
        }
        .hockey-image img {
            height:350px;
        }
    }
    @media(max-width:550px){
        .facts-grid {
            grid-template-columns:1fr;
        }
    }

.coach-grid {
        display:grid;
        grid-template-columns:
repeat(3,1fr);
        gap:30px;
    }
    .coach-card {
        background:var(--white);
        border-radius:var(--radius);
        overflow:hidden;
        box-shadow:var(--shadow);
    }
    .coach-photo img {
        width:100%;
        height:330px;
        object-fit:cover;
    }
    .coach-info {
        padding:30px;
    }
    .coach-info h3 {
        font-size:30px;
        margin-bottom:5px;
    }
    .coach-info span {
        color:var(--green);
        font-weight:800;
    }
    .coach-tags {
        display:flex;
        gap:8px;
        flex-wrap:wrap;
        margin-top:20px;
    }
    .coach-tags span {
        background:var(--color-edf8f1);
        padding:8px 12px;
        border-radius:20px;
        font-size:14px;
        color:var(--green);
    }
    .placeholder-card {
        display:flex;
        align-items:center;
        justify-content:center;
    }
    .placeholder {
        height:100%;
        min-height:400px;
        display:flex;
        align-items:center;
        justify-content:center;
        text-align:center;
        color:var(--color-999);
        font-size:22px;
    }
    .location-grid {
        display:grid;
        grid-template-columns:
1fr 1fr;
        gap:50px;
        align-items:center;
    }
    .location-photo img {
        border-radius:var(--radius);
        height:550px;
        width:100%;
        object-fit:cover;
    }
    .place {
        display:flex;
        gap:20px;
        margin-bottom:35px;
    }
    .place-icon {
        font-size:40px;
    }
    .place h3 {
        font-size:25px;
    }
    .place p {
        color:var(--color-666);
    }
    .training-box {
        background:
                linear-gradient(
                        135deg,
                        var(--green-dark),
                        var(--color-00a653)
                );
        padding:60px;
        border-radius:35px;
        color:var(--white);
    }
    .training-box h2 {
        font-size:45px;
        margin-bottom:20px;
    }
    .training-box h2 span {
        color:var(--color-9cffc0);
    }
    .steps {
        display:flex;
        gap:20px;
        margin:40px 0;
    }
    .step {
        background:var(--white);
        color:var(--color-111);
        padding:20px;
        border-radius:20px;
        flex:1;
        text-align:center;
    }
    .step strong {
        display:block;
        font-size:40px;
        color:var(--green);
    }
    .benefit-grid {
        display:grid;
        grid-template-columns:
repeat(3,1fr);
        gap:25px;
    }
    .benefit {
        background:var(--color-f6f8f7);
        padding:35px;
        border-radius:25px;
        text-align:center;
    }
    .benefit div {
        font-size:45px;
        margin-bottom:20px;
    }
    @media(max-width:900px){
        .coach-grid,
        .location-grid,
        .benefit-grid {
            grid-template-columns:1fr;
        }
        .steps {
            flex-direction:column;
        }
        .training-box {
            padding:35px;
        }
    }

.timeline {
        position:relative;
        max-width:950px;
        margin:auto;
    }
    .timeline:before {
        content:"";
        position:absolute;
        left:50%;
        top:0;
        bottom:0;
        width:4px;
        background:var(--green);
        transform:translateX(-50%);
    }
    .timeline-item {
        display:flex;
        justify-content:center;
        margin-bottom:70px;
        position:relative;
    }
    .timeline-number {
        position:absolute;
        left:50%;
        transform:translateX(-50%);
        width:70px;
        height:70px;
        border-radius:50%;
        background:var(--green);
        color:var(--white);
        font-size:35px;
        font-weight:900;
        display:flex;
        align-items:center;
        justify-content:center;
    }
    .timeline-content {
        width:45%;
        background:var(--white);
        border-radius:25px;
        overflow:hidden;
        box-shadow:var(--shadow);
    }
    .timeline-content img {
        height:250px;
        width:100%;
        object-fit:cover;
    }
    .timeline-content h3 {
        font-size:28px;
        padding:25px 25px 10px;
    }
    .timeline-content p {
        padding:0 25px 25px;
        color:var(--color-666);
    }
    .timeline-item:nth-child(even) {
        justify-content:flex-start;
    }
    .timeline-item:nth-child(odd) .timeline-content {
        margin-left:auto;
    }
    .team-box {
        display:grid;
        grid-template-columns:
1fr 1fr;
        gap:50px;
        align-items:center;
        background:var(--color-f5f8f6);
        padding:50px;
        border-radius:35px;
    }
    .team-text h2 {
        font-size:45px;
        margin-bottom:25px;
    }
    .team-text ul {
        margin-top:30px;
        list-style:none;
    }
    .team-text li {
        font-size:22px;
        margin-bottom:15px;
    }
    .team-photo img {
        width:100%;
        height:500px;
        object-fit:cover;
        border-radius:25px;
    }
    .tournament-grid {
        display:grid;
        grid-template-columns:
repeat(2,1fr);
        gap:35px;
    }
    .tournament-card {
        display:grid;
        grid-template-columns:220px 1fr;
        background:var(--white);
        border-radius:25px;
        overflow:hidden;
        box-shadow:var(--shadow);
    }
    .tournament-card img {
        width:220px;
        height:220px;
        object-fit:cover;
    }
    .tournament-card div {
        padding:30px;
    }
    .tournament-card h3 {
        font-size:28px;
        margin-bottom:15px;
    }
    .tournament-card p {
        color:var(--color-666);
    }
    @media(max-width:900px){
        .timeline:before {
            left:35px;
        }
        .timeline-item {
            justify-content:flex-start!important;
            padding-left:80px;
        }
        .timeline-number {
            left:35px;
        }
        .timeline-content {
            width:100%;
        }
        .team-box {
            grid-template-columns:1fr;
        }
        .tournament-grid {
            grid-template-columns:1fr;
        }
    }
    @media(max-width:600px){
        .tournament-card {
            grid-template-columns:1fr;
        }
        .tournament-card img {
            width:100%;
            height:250px;
        }
    }

.countries-grid {
        display:grid;
        grid-template-columns:
repeat(5,1fr);
        gap:20px;
    }
    .country-card {
        background:var(--white);
        padding:30px;
        border-radius:25px;
        box-shadow:var(--shadow);
        text-align:center;
    }
    .flag {
        font-size:50px;
        margin-bottom:15px;
    }
    .logo-placeholder {
        margin-top:20px;
        height:100px;
        background:var(--color-f2f5f3);
        border-radius:15px;
        display:flex;
        align-items:center;
        justify-content:center;
        color:var(--color-999);
    }
    .map-box {
        display:grid;
        grid-template-columns:
1fr 1fr;
        gap:50px;
        align-items:center;
    }
    .map-box img {
        width:100%;
        border-radius:25px;
    }
    .map-text h2 {
        font-size:45px;
    }
    .map-text li {
        list-style:none;
        font-size:24px;
        margin:12px 0;
    }
    .gallery-grid {
        display:grid;
        grid-template-columns:
repeat(4,1fr);
        gap:20px;
    }
    .gallery-item {
        height:250px;
        overflow:hidden;
        border-radius:25px;
    }
    .gallery-item.big {
        grid-column:span 2;
        height:350px;
    }
    .gallery-item img {
        width:100%;
        height:100%;
        object-fit:cover;
    }
    .reviews-grid {
        display:grid;
        grid-template-columns:
repeat(3,1fr);
        gap:30px;
    }
    .review-card {
        background:var(--color-f5f8f6);
        padding:35px;
        border-radius:25px;
    }
    .stars {
        color:var(--color-ffb400);
        font-size:25px;
        margin-bottom:20px;
    }
    .faq-list {
        max-width:900px;
        margin:auto;
    }
    .faq-list details {
        background:var(--white);
        margin-bottom:15px;
        padding:25px;
        border-radius:20px;
        box-shadow:0 10px 25px var(--color-rgb-5);
    }
    .faq-list summary {
        font-size:22px;
        font-weight:800;
        cursor:pointer;
    }
    @media(max-width:1000px){
        .countries-grid {
            grid-template-columns:
repeat(2,1fr);
        }
        .gallery-grid {
            grid-template-columns:
repeat(2,1fr);
        }
        .reviews-grid {
            grid-template-columns:1fr;
        }
        .map-box {
            grid-template-columns:1fr;
        }
    }
    @media(max-width:600px){
        .countries-grid,
        .gallery-grid {
            grid-template-columns:1fr;
        }
        .gallery-item.big {
            grid-column:auto;
        }
    }
    .offer-section{
        background:var(--color-f5f8f6);
    }
    .offer-box{
        background:var(--white);
        border-radius:35px;
        padding:60px;
        box-shadow:var(--shadow);
    }
    .offer-title{
        text-align:center;
        max-width:850px;
        margin:0 auto 50px;
    }
    .offer-badge{
        display:inline-block;
        background:var(--green);
        color:var(--white);
        padding:10px 25px;
        border-radius:50px;
        font-weight:800;
        margin-bottom:20px;
    }
    .offer-title h2{
        font-size:clamp(35px,5vw,55px);
    }
    .offer-title h2 span{
        color:var(--green);
    }
    .offer-title p{
        font-size:20px;
        color:var(--color-666);
    }
    .offer-grid{
        display:grid;
        grid-template-columns:repeat(4,1fr);
        gap:25px;
    }
    .offer-card{
        background:var(--white);
        border:2px solid var(--color-e7eee9);
        border-radius:25px;
        padding:35px;
        text-align:center;
    }
    .offer-card.featured{
        border:3px solid var(--green);
    }
    .offer-icon{
        font-size:50px;
        margin-bottom:20px;
    }
    .offer-card h3{
        font-size:25px;
    }
    .offer-value{
        font-size:32px;
        font-weight:900;
        color:var(--green);
        margin:20px 0;
    }
    .offer-card p{
        color:var(--color-666);
        line-height:1.6;
    }
    .offer-card ul{
        text-align:left;
        list-style:none;
        padding:0;
    }
    .offer-card li{
        margin-bottom:12px;
        font-weight:700;
    }
    .offer-footer{
        margin-top:50px;
        padding-top:40px;
        text-align:center;
        border-top:2px dashed var(--color-ddd);
    }
    .offer-footer h3{
        font-size:30px;
        margin-bottom:30px;
    }
    @media(max-width:1100px){
        .offer-grid{
            grid-template-columns:repeat(2,1fr);
        }
    }
    @media(max-width:700px){
        .offer-box{
            padding:30px;
        }
        .offer-grid{
            grid-template-columns:1fr;
        }
    }

.final-cta {
        padding:100px 0;
        background:
                linear-gradient(
                        135deg,
                        var(--green-dark),
                        var(--color-00a653)
                );
        color:var(--white);
    }
    .cta-box {
        display:grid;
        grid-template-columns:
1fr 1fr;
        gap:50px;
        align-items:center;
    }
    .cta-content h2 {
        font-size:
                clamp(35px,5vw,60px);
        line-height:1.1;
    }
    .cta-content span {
        color:var(--color-a8ffc8);
    }
    .cta-content p {
        font-size:20px;
        margin:25px 0 40px;
    }
    .cta-buttons {
        display:flex;
        gap:20px;
        flex-wrap:wrap;
    }
    .btn-outline-white {
        border:2px solid var(--white);
        color:var(--white);
    }
    .cta-photo img {
        border-radius:30px;
        height:450px;
        width:100%;
        object-fit:cover;
    }
    .contact-grid {
        display:grid;
        grid-template-columns:
repeat(3,1fr);
        gap:30px;
    }
    .contact-card {
        padding:40px;
        background:var(--color-f5f8f6);
        border-radius:25px;
        text-align:center;
    }
    .contact-icon {
        font-size:45px;
        margin-bottom:20px;
    }
    .mobile-join {
        display:none;
    }
    footer {
        background:var(--color-111);
        color:var(--white);
        padding:70px 0 20px;
    }
    .footer-grid {
        display:grid;
        grid-template-columns:
repeat(3,1fr);
        gap:40px;
    }
    .footer-brand p {
        max-width:320px;
        color:var(--color-ddd);
    }
    .footer-logo {
        display:inline-flex;
        align-items:center;
        gap:16px;
        margin-bottom:20px;
    }
    .footer-logo img {
        width:74px;
        height:74px;
        object-fit:contain;
        flex-shrink:0;
    }
    .footer-logo span {
        font-size:35px;
        font-weight:900;
        color:var(--color-4bd681);
    }
    footer h3 {
        font-size:35px;
        color:var(--color-4bd681);
    }
    footer h4 {
        margin-bottom:20px;
    }
    footer a {
        display:block;
        margin-bottom:10px;
        color:var(--color-ddd);
    }
    .copyright {
        text-align:center;
        margin-top:50px;
        padding-top:20px;
        border-top:1px solid var(--color-333);
        color:var(--color-aaa);
    }
    @media(max-width:900px){
        .cta-box,
        .contact-grid,
        .footer-grid {
            grid-template-columns:1fr;
        }
        .cta-photo {
            order:-1;
        }
        .mobile-join {
            display:block;
            position:fixed;
            bottom:20px;
            left:20px;
            right:20px;
            z-index:999;
            background:var(--green);
            color:var(--white);
            padding:16px;
            border-radius:50px;
            text-align:center;
            font-weight:900;
            box-shadow:var(--shadow);
        }
        .footer-brand p {
            max-width:none;
        }
    }
    @media(max-width:550px){
        .topbar-nav {
            gap:8px;
        }
        .topbar-nav a {
            flex:1 1 calc(50% - 8px);
            text-align:center;
        }
        .footer-logo {
            align-items:center;
        }
        .footer-logo span {
            font-size:28px;
        }
    }

main {
        }
        /* =====================================================
           CAROUSEL
        ===================================================== */
        .carousel {
            position: relative;
        }
        .carousel-inner {
            height: 550px;
            overflow: hidden;
        }
        .carousel-item {
            height: 550px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #000;
        }
        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .carousel-control-prev,
        .carousel-control-next {
            opacity: 0.7;
            transition: opacity 0.3s;
        }
        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
        }
        @media(max-width: 900px) {
            .carousel-inner,
            .carousel-item {
                height: 400px;
            }
        }
        @media(max-width: 600px) {
            .carousel-inner,
            .carousel-item {
                height: 280px;
            }
        }
/* =====================================================
   SEKCJE KS CIESZYN
===================================================== */

.sekcje-section {
    background: #f5f7fa;
}


.sekcje-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


.sekcja-card {
    overflow: hidden;
    background: #fff;
    border-radius: 25px;
    transition: transform .35s ease, box-shadow .35s ease;
}


.sekcja-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0,0,0,.15);
}


/* LOGO */

.sekcja-logo {
    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: #fff;

    border-bottom: 1px solid #eee;
}


.sekcja-logo a {
    display: flex;

    width: 100%;
    height: 100%;

    align-items: center;
    justify-content: center;
}


.sekcja-logo img {
    max-width: 70%;
    max-height: 160px;

    width: auto;
    height: auto;

    object-fit: contain;

    transition: transform .35s ease;
}


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


/* TREŚĆ */

.sekcja-card .card-body {
    padding: 30px;
}


.sekcja-card h3 {
    font-size: 30px;

    margin: 0 0 15px;
}


.sekcja-card p {
    color: #666;

    font-size: 17px;

    line-height: 1.65;

    margin-bottom: 20px;
}


/* LINK */

.sekcja-link {
    display: inline-block;

    font-weight: 800;

    text-decoration: none;

    color: #0057b8;

    transition: .25s ease;
}


.sekcja-link:hover {
    color: #003f87;

    transform: translateX(5px);
}


/* MOBILE */

@media (max-width: 800px) {

    .sekcje-grid {
        grid-template-columns: 1fr;
    }


    .sekcja-logo {
        height: 190px;
    }


    .sekcja-logo img {
        max-height: 135px;
    }


    .sekcja-card h3 {
        font-size: 26px;
    }

}
/* =====================================================
   O KS CIESZYN
===================================================== */

.about-ks-section {
    background: #ffffff;
}


.about-ks-box {

    display: grid;

    grid-template-columns: 35% 65%;

    background: #f5f7fa;

    border-radius: 35px;

    overflow: hidden;

    box-shadow: 0 20px 50px rgba(0,0,0,.10);

}


/* LOGO */

.about-ks-logo {

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 60px;

    background: #ffffff;

}


.about-ks-logo img {

    width: 80%;

    max-width: 300px;

    height: auto;

    object-fit: contain;

}


/* TREŚĆ */

.about-ks-content {

    padding: 60px;

}


.about-ks-badge {

    display: inline-block;

    padding: 8px 18px;

    margin-bottom: 20px;

    border-radius: 50px;

    background: #0057b8;

    color: #ffffff;

    font-size: 14px;

    font-weight: 800;

}


.about-ks-content h3 {

    margin: 0 0 25px;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;

}


.about-ks-content h3 span {

    color: #0057b8;

}


.about-ks-content p {

    margin-bottom: 18px;

    font-size: 17px;

    line-height: 1.75;

    color: #555;

}


/* BENEFITY */

.about-benefits {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    margin-top: 35px;

}


.about-benefit {

    padding: 30px;

    background: #ffffff;

    border: 1px solid #e5e9ee;

    border-radius: 22px;

    text-align: center;

    transition: .3s ease;

}


.about-benefit:hover {

    transform: translateY(-6px);

    box-shadow: 0 15px 35px rgba(0,0,0,.10);

}


.about-benefit-icon {

    font-size: 42px;

    margin-bottom: 15px;

}


.about-benefit h3 {

    margin-bottom: 12px;

    font-size: 22px;

}


.about-benefit p {

    margin: 0;

    color: #666;

    line-height: 1.6;

}


/* SPORTY */

.about-sports {

    margin-top: 45px;

    padding: 45px;

    border-radius: 30px;

    background:

        linear-gradient(

            135deg,

            #0057b8,

            #003f87

        );

    color: #ffffff;

    text-align: center;

}


.about-sports h3 {

    margin-bottom: 15px;

    font-size: 34px;

}


.about-sports > p {

    max-width: 850px;

    margin: 0 auto 30px;

    font-size: 18px;

    line-height: 1.7;

    opacity: .95;

}


/* TAGI SEKCJI */

.about-sports-tags {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

}


.about-sports-tags a {

    display: inline-block;

    padding: 12px 20px;

    border-radius: 50px;

    background: #ffffff;

    color: #0057b8;

    font-weight: 800;

    text-decoration: none;

    transition: .25s ease;

}


.about-sports-tags a:hover {

    background: #ffd200;

    color: #111111;

    transform: translateY(-3px);

}


/* MOBILE */

@media(max-width: 1000px) {

    .about-ks-box {

        grid-template-columns: 1fr;

    }


    .about-ks-logo {

        padding: 40px;

    }


    .about-ks-logo img {

        max-width: 220px;

    }


    .about-ks-content {

        padding: 40px;

    }


    .about-benefits {

        grid-template-columns: repeat(2, 1fr);

    }

}


@media(max-width: 600px) {

    .about-ks-content {

        padding: 30px;

    }


    .about-benefits {

        grid-template-columns: 1fr;

    }


    .about-sports {

        padding: 30px 20px;

    }


    .about-sports h3 {

        font-size: 28px;

    }

}
/* =====================================================
   PARTNERZY
===================================================== */

.partners-section {
    background: #f5f7fa;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #0057b8;
}


/* GRID */

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


/* KAFEL */

.partner-card {

    display: flex;
    align-items: center;
    justify-content: center;

    height: 220px;

    padding: 35px;

    background: #ffffff;

    border: 1px solid #e5e9ef;

    border-radius: 24px;

    text-decoration: none;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.partner-card:hover {

    transform: translateY(-7px);

    border-color: #0057b8;

    box-shadow:
        0 20px 45px rgba(0,0,0,.12);
}


/* LOGO */

.partner-card img {

    max-width: 200px;

    max-height: 130px;

    width: auto;

    height: auto;

    object-fit: contain;

    transition: transform .35s ease;
}


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


/* DÓŁ */

.partners-footer {

    margin-top: 40px;

    padding: 25px;

    border-radius: 20px;

    background: #ffffff;

    text-align: center;

    font-size: 18px;

    color: #0057b8;
}


/* TABLET */

@media(max-width:1000px) {

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* TELEFON */

@media(max-width:600px) {

    .partners-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }


    .partner-card {

        height: 170px;

        padding: 20px;

        border-radius: 18px;
    }


    .partner-card img {

        max-width: 140px;

        max-height: 95px;
    }

}
/* =====================================================
   SZYBKI KONTAKT
===================================================== */

.contact-anchor {

    height: 1px;

    margin-top: -1px;

}


/* SEKCJA */

.contact-section {

    background: #ffffff;

}


/* GRID */

.contact-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;

}


/* KARTA */

.contact-card {

    display: flex;

    flex-direction: column;

    align-items: center;

    padding: 30px 25px;

    background: #f7f9fb;

    border: 1px solid #e5e9ef;

    border-radius: 25px;

    text-align: center;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}


.contact-card:hover {

    transform: translateY(-7px);

    border-color: #0057b8;

    box-shadow:
        0 20px 45px rgba(0,0,0,.12);

}


/* GÓRA KARTY */

.contact-card-top {

    width: 100%;

    color: #222;

    text-decoration: none;

}


.contact-card-top h3 {

    margin: 18px 0 0;

    font-size: 22px;

}


/* IKONA */

.contact-icon {

    width: 130px;

    height: 130px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--blue);

}


.contact-icon img {

    max-width: 120px;

    max-height: 120px;

    width: auto;

    height: auto;

    object-fit: contain;

    transition: transform .35s ease;

}


.contact-card:hover .contact-icon img {

    transform: scale(1.08);

}


/* OSOBA */

.contact-person {

    margin-top: 22px;

    margin-bottom: 15px;

    font-size: 17px;

}


/* TELEFON */

.contact-phone {

    display: inline-block;

    margin-bottom: 8px;

    color: #0057b8;

    font-size: 17px;

    font-weight: 800;

    text-decoration: none;

}


.contact-phone:hover {

    color: #003f87;

}


/* EMAIL */

.contact-email {

    display: inline-block;

    color: #555;

    font-size: 15px;

    text-decoration: none;

    word-break: break-word;

}


.contact-email:hover {

    color: #0057b8;

}


/* LINK DO SEKCJI */

.contact-more {

    margin-top: 22px;

    padding-top: 15px;

    width: 100%;

    border-top: 1px solid #dde2e7;

    color: #0057b8;

    font-weight: 800;

    text-decoration: none;

}


.contact-more:hover {

    color: #003f87;

}


/* OGÓLNY KONTAKT */

.contact-general {

    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 35px;

    padding: 30px 35px;

    background: linear-gradient(
        135deg,
        #0057b8,
        #003f87
    );

    border-radius: 25px;

    color: #ffffff;

}


.contact-general-icon {

    font-size: 45px;

    flex-shrink: 0;

}


.contact-general h3 {

    margin: 0 0 7px;

    font-size: 23px;

}


.contact-general p {

    margin: 0;

    opacity: .9;

    line-height: 1.5;

}


.contact-general-button {

    margin-left: auto;

    flex-shrink: 0;

    padding: 14px 24px;

    border-radius: 50px;

    background: #ffffff;

    color: #0057b8;

    font-weight: 900;

    text-decoration: none;

    transition: .25s ease;

}


.contact-general-button:hover {

    background: #ffd200;

    color: #111;

    transform: translateY(-2px);

}


/* TABLET */

@media(max-width:1050px) {

    .contact-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* TELEFON */

@media(max-width:600px) {

    .contact-grid {

        grid-template-columns: 1fr;

        gap: 15px;

    }


    .contact-card {

        padding: 25px 20px;

    }


    .contact-general {

        flex-direction: column;

        text-align: center;

        padding: 30px 20px;

    }


    .contact-general-button {

        margin-left: 0;

    }

}
/* =====================================================
   STOPKA KS CIESZYN
===================================================== */

.site-footer {

    background: #101820;

    color: #ffffff;

    margin-top: 0;

}


/* GŁÓWNA CZĘŚĆ */

.footer-main {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1.3fr;

    gap: 50px;

    padding: 70px 0 55px;

}


/* LOGO */

.footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    color: #ffffff;

    text-decoration: none;

    font-size: 28px;

    font-weight: 900;

}


.footer-logo img {

    width: 75px;

    height: 75px;

    object-fit: contain;

}


.footer-brand > p {

    max-width: 420px;

    margin: 25px 0;

    color: #b9c1c8;

    line-height: 1.7;

    font-size: 16px;

}


/* SEKCJE */

.footer-sections {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

}


.footer-sections span {

    padding: 7px 11px;

    border-radius: 20px;

    background: rgba(255,255,255,.08);

    color: #dce2e6;

    font-size: 12px;

}


/* KOLUMNY */

.footer-column h4 {

    margin: 5px 0 20px;

    color: #ffffff;

    font-size: 18px;

}


.footer-column a {

    display: block;

    margin-bottom: 12px;

    color: #b9c1c8;

    text-decoration: none;

    transition: .25s ease;

}


.footer-column a:hover {

    color: #ffd200;

    transform: translateX(4px);

}


.footer-contact p {

    color: #b9c1c8;

    line-height: 1.6;

}


.footer-contact a {

    color: #ffffff;

    font-weight: 700;

}


.footer-note {

    margin-top: 20px;

    font-size: 14px;

}


/* =====================================================
   WSPARCIE
===================================================== */

.footer-support {

    padding: 40px 0;

    border-top: 1px solid rgba(255,255,255,.1);

    border-bottom: 1px solid rgba(255,255,255,.1);

}


.footer-support-title {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 30px;

}


.footer-support-title > span {

    font-size: 35px;

}


.footer-support-title h3 {

    margin: 0 0 5px;

    font-size: 24px;

}


.footer-support-title p {

    margin: 0;

    color: #aeb7be;

}


/* LOGA DOFINANSOWAŃ */

.footer-funding-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.footer-funding {

    min-height: 190px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: #ffffff;

    border-radius: 20px;

    text-decoration: none;

    transition: .3s ease;

}


.footer-funding:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.25);

}


.footer-funding img {

    max-width: 150px;

    max-height: 80px;

    width: auto;

    height: auto;

    object-fit: contain;

    margin-bottom: 18px;

}


.footer-funding span {

    color: #333333;

    font-size: 13px;

    line-height: 1.45;

}


/* =====================================================
   DOLNA BELKA
===================================================== */

.footer-bottom {

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    gap: 20px;

    padding: 25px 0;

    color: #89939b;

    font-size: 13px;

}


.footer-bottom > div:last-child {

    text-align: right;

}


.footer-bottom img {

    display: block;

    max-width: 180px;

    max-height: 55px;

    width: auto;

    height: auto;

    object-fit: contain;

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:1000px) {

    .footer-main {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 40px;

    }


    .footer-funding-grid {

        grid-template-columns: 1fr;

    }

}


@media(max-width:600px) {

    .footer-main {

        grid-template-columns: 1fr;

        padding: 50px 0 40px;

        gap: 35px;

    }


    .footer-logo {

        font-size: 25px;

    }


    .footer-support {

        padding: 35px 0;

    }


    .footer-support-title {

        align-items: flex-start;

    }


    .footer-funding {

        min-height: 170px;

    }


    .footer-bottom {

        grid-template-columns: 1fr;

        text-align: center;

    }


    .footer-bottom > div:last-child {

        text-align: center;

    }


    .footer-bottom > div:nth-child(2) {

        order: -1;

    }


    .footer-bottom img {

        margin: 0 auto;

    }

}
/* =====================================================
   REKRUTACJA I NABORY
===================================================== */

.recruitment-section {

    background: #f5f7fa;

}


/* GRID */

.recruitment-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


/* KARTA */

.recruitment-card {

    display: flex;

    flex-direction: column;

    overflow: hidden;

    background: #ffffff;

    border-radius: 28px;

    text-decoration: none;

    color: #222;

    border: 1px solid #e5e9ef;

    box-shadow:
        0 8px 25px rgba(0,0,0,.06);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.recruitment-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 25px 55px rgba(0,0,0,.14);

}


/* GÓRNA CZĘŚĆ */

.recruitment-image {

    position: relative;

    height: 240px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #0057b8,
            #003f87
        );

}


/* JUDO */

.recruitment-judo .recruitment-image {

    background:
        linear-gradient(
            135deg,
            #0057b8,
            #ffd200
        );

}


/* ŁYŻWIARSTWO */

.recruitment-ice .recruitment-image {

    background:
        linear-gradient(
            135deg,
            #0099d8,
            #0057b8
        );

}


/* IKONA */

.recruitment-image img {

    width: 180px;

    height: 180px;

    object-fit: contain;

    transition:
        transform .4s ease;

}


.recruitment-card:hover
.recruitment-image img {

    transform:
        scale(1.12)
        rotate(-3deg);

}


/* BADGE */

.recruitment-badge {

    position: absolute;

    top: 18px;

    right: 18px;

    padding: 8px 15px;

    border-radius: 30px;

    background: #ffd200;

    color: #111;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1px;

}


/* BODY */

.recruitment-body {

    position: relative;

    padding: 28px;

}


.recruitment-number {

    position: absolute;

    top: 20px;

    right: 25px;

    font-size: 40px;

    font-weight: 900;

    color: #edf0f3;

    line-height: 1;

}


.recruitment-body h3 {

    position: relative;

    margin: 0 0 12px;

    padding-right: 40px;

    font-size: 25px;

}


.recruitment-body p {

    margin: 0;

    color: #667078;

    line-height: 1.65;

}


/* BUTTON */

.recruitment-button {

    display: inline-block;

    margin-top: 22px;

    color: #0057b8;

    font-weight: 900;

    transition: .25s ease;

}


.recruitment-card:hover
.recruitment-button {

    color: #003f87;

    transform: translateX(5px);

}


/* DÓŁ */

.recruitment-bottom {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px 20px;

    margin-top: 35px;

    padding: 25px 30px;

    background: #ffffff;

    border-radius: 22px;

    text-align: center;

}


.recruitment-bottom strong {

    font-size: 17px;

}


.recruitment-bottom span {

    color: #667078;

}


.recruitment-bottom a {

    color: #0057b8;

    font-weight: 900;

    text-decoration: none;

}


.recruitment-bottom a:hover {

    color: #003f87;

}


/* TABLET */

@media(max-width:950px) {

    .recruitment-grid {

        grid-template-columns:
            1fr;

    }


    .recruitment-image {

        height: 220px;

    }

}


/* TELEFON */

@media(max-width:600px) {

    .recruitment-grid {

        gap: 15px;

    }


    .recruitment-card {

        border-radius: 22px;

    }


    .recruitment-image {

        height: 190px;

    }


    .recruitment-image img {

        width: 140px;

        height: 140px;

    }


    .recruitment-body {

        padding: 23px;

    }


    .recruitment-body h3 {

        font-size: 22px;

    }


    .recruitment-bottom {

        padding: 22px 18px;

        flex-direction: column;

    }

}
/* =====================================================
   WYDARZENIA
===================================================== */

.events-section {

    background: #f5f7fa;

}


/* GRID */

.events-grid {

    display: grid;

    grid-template-columns:
        1.25fr 1fr 1fr;

    gap: 25px;

}


/* KARTA */

.event-card {

    display: flex;

    flex-direction: column;

    overflow: hidden;

    background: #ffffff;

    border-radius: 28px;

    border: 1px solid #e5e9ef;

    color: #222;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(0,0,0,.06);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.event-card:hover {

    transform: translateY(-9px);

    box-shadow:
        0 25px 55px rgba(0,0,0,.14);

}


/* GŁÓWNE WYDARZENIE */

.event-main {

    border: 2px solid #0057b8;

}


/* ZDJĘCIE */

.event-image {

    position: relative;

    height: 270px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #0057b8,
            #003f87
        );

}


.event-main .event-image {

    height: 310px;

}


.event-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;

}


.event-card:hover
.event-image img {

    transform: scale(1.06);

}


/* PRZYCIEMNIENIE */

.event-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 45%,
            rgba(0,0,0,.55)
        );

}


/* BADGE */

.event-badge {

    position: absolute;

    top: 18px;

    left: 18px;

    padding: 9px 15px;

    border-radius: 30px;

    background: #ffd200;

    color: #111;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: .7px;

    z-index: 2;

}


/* TREŚĆ */

.event-body {

    padding: 28px;

}


.event-label {

    display: block;

    margin-bottom: 8px;

    color: #0057b8;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1px;

}


.event-body h3 {

    margin: 0 0 13px;

    font-size: 27px;

    line-height: 1.15;

}


.event-body p {

    margin: 0;

    color: #667078;

    line-height: 1.65;

}


/* LINK */

.event-link {

    display: inline-block;

    margin-top: 22px;

    color: #0057b8;

    font-weight: 900;

    transition: .25s ease;

}


.event-card:hover
.event-link {

    transform: translateX(5px);

    color: #003f87;

}


/* DOLNY BOX */

.events-bottom {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px 20px;

    margin-top: 35px;

    padding: 25px 30px;

    background: #ffffff;

    border-radius: 22px;

    text-align: center;

}


.events-bottom strong {

    font-size: 17px;

}


.events-bottom span {

    color: #667078;

}


/* TABLET */

@media(max-width:950px) {

    .events-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .event-main {

        grid-column:
            1 / -1;

    }

}


/* TELEFON */

@media(max-width:600px) {

    .events-grid {

        grid-template-columns:
            1fr;

        gap: 15px;

    }


    .event-main {

        grid-column:
            auto;

    }


    .event-image,
    .event-main .event-image {

        height: 240px;

    }


    .event-body {

        padding: 23px;

    }


    .event-body h3 {

        font-size: 23px;

    }


    .events-bottom {

        flex-direction: column;

        padding: 22px 18px;

    }

}
.section-bar {
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #e5e5e5;
}

.section-bar-inner {
    display: flex;
    align-items: center;
    min-height: 82px;
    gap: 40px;
}

.section-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.section-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.section-brand span {
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}

.section-menu {
    display: flex;
    align-items: stretch;
    align-self: stretch;
    gap: 2px;
    overflow-x: auto;
}

.section-menu a {
    display: flex;
    align-items: center;
    padding: 0 14px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: .2s ease;
}

.section-menu a:hover {
    color: #16843a;
}

.section-menu a.is-active {
    color: #16843a;
    border-bottom-color: #16843a;
}

.facebook-section {
    padding: 60px 0;
    background: #f6f7f8;
}

.facebook-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.facebook-kicker {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #16843a;
}

.facebook-header h2 {
    margin: 0 0 8px;
    font-size: 32px;
    font-weight: 800;
}

.facebook-header p {
    margin: 0;
    color: #666;
    font-size: 16px;
}

.facebook-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 6px;
    background: #1877f2;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    transition: .2s ease;
}

.facebook-button:hover {
    color: #fff;
    transform: translateY(-2px);
}

.facebook-button img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.facebook-feed {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.facebook-feed .fb-page,
.facebook-feed .fb-page > span {
    width: 100% !important;
    max-width: 100% !important;
}

.facebook-feed iframe {
    width: 100% !important;
    max-width: 100% !important;
}

@media (max-width: 767px) {

    .facebook-section {
        padding: 40px 0;
    }

    .facebook-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 25px;
    }

    .facebook-header h2 {
        font-size: 26px;
    }

    .facebook-button {
        width: 100%;
        justify-content: center;
    }

    .facebook-feed {
        width: 100%;
    }
}
.cms-page {
    padding: 40px 0 70px;
}

.cms-content {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.cms-content img {
    max-width: 100%;
    height: auto;
}

.cms-content h1,
.cms-content h2,
.cms-content h3 {
    line-height: 1.25;
}

.cms-footer {
    max-width: 1000px;
    margin: 45px auto 0;
    padding-top: 25px;
    border-top: 1px solid #e5e5e5;
}

.cms-back {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all .2s ease;
}

.cms-back:hover {
    color: #16843a;
    border-color: #16843a;
    text-decoration: none;
    transform: translateX(-2px);
}

.cms-back-icon {
    font-size: 19px;
    line-height: 1;
}
.section-partners {
    padding: 60px 0;
    background: #f6f7f8;
}

.section-partners-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-partners-header > span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #16843a;
}

.section-partners-header h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
}

.section-partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: stretch;
}

.section-partner {
    min-height: 150px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: .2s ease;
}

.section-partner:hover {
    transform: translateY(-3px);
    border-color: #16843a;
    box-shadow: 0 5px 18px rgba(0,0,0,.08);
}

.section-partner img {
    display: block;
    max-width: 180px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
}
@media (max-width: 991px) {

    .section-partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 767px) {

    .section-partners {
        padding: 45px 0;
    }

    .section-partners-header h2 {
        font-size: 26px;
    }

    .section-partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .section-partner {
        min-height: 120px;
        padding: 15px;
    }

    .section-partner img {
        max-width: 140px;
        max-height: 70px;
    }

}

.klub-pro {
    padding: 60px 0;
}

.klub-pro-box {
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    align-items: center;
    gap: 50px;
    padding: 40px;
    background: #f6f7f8;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
}

.klub-pro-image {
    display: flex;
    justify-content: center;
}

.klub-pro-image img {
    display: block;
    max-width: 100%;
    max-height: 480px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.klub-pro-kicker {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #16843a;
}

.klub-pro-content h2 {
    margin: 0 0 20px;
    font-size: 34px;
    font-weight: 800;
}

.klub-pro-content p {
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.klub-pro-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    padding: 12px 20px;
    border-radius: 6px;
    background: #16843a;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: .2s ease;
}

.klub-pro-button:hover {
    color: #fff;
    transform: translateY(-2px);
}

.klub-pro-button span {
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 767px) {

    .klub-pro {
        padding: 40px 0;
    }

    .klub-pro-box {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px 20px;
    }

    .klub-pro-image img {
        max-height: 400px;
    }

    .klub-pro-content h2 {
        font-size: 27px;
    }

    .klub-pro-button {
        width: 100%;
        justify-content: center;
    }

}
