.mobile-nav {
    display: block;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: max-height 0.3s ease-in-out;
}

.mobile-nav.open {
    max-height: 360px;
}

.mobile-nav ul li {
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
}

.mobile-nav ul li a {
    color: #333;
    text-decoration: none;
    display: block;
}

.mobile-menu-container {
    display: none;
}

.logo img {
    width: 90px;
}

.about-area2 .swiper-container-gallery img {
    width: 100%;
}

@media (max-width: 1199px) {
    .container-fluid {
        padding: 0 25px;
    }
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 10;
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.open .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.partner-img {
    height: 120px !important;
}

.partner-img img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

#recaptcha-container {
    transform: scale(0.85);
    transform-origin: 0;
    padding: 0 !important;
    width: 100%;
}
/* Full-width map area */
.map-area {
    background-size: cover;
    background-position: center;
}

.map-wrap {
    position: relative;
}

.map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 40%; /* výška desktopu */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.header-area .menu-wrapper .main-menu ul li a {
    font-size: 16px;
    letter-spacing: 2px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .map-responsive {
        padding-bottom: 65%;
        border-radius: 10px;
    }
}

@media (max-width: 991px) {
    .mobile-menu-container {
        display: block;
    }

    .mobile-nav ul li {
        padding: 10px 63px;
        font-size: 14px;
    }

    .header-area .main-header {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .header-area .main-header .sticky-bar {
        padding-top: 25px;
    }

    .border-btn.hero-btn {
        font-size: 15px;
        padding: 10px 35px;
    }

    .logo img {
        width: 75px;
    }

    .main-menu, .header-btns {
        display: none;
    }

    /*.hamburger {*/
    /*    font-size: 30px;*/
    /*    background: none;*/
    /*    border: none;*/
    /*    cursor: pointer;*/
    /*}*/

    .pt-80 {
        padding-top: 65px;
    }

    .pb-80 {
        padding-bottom: 65px;
    }

    .section-tittle2 h2 {
        margin-bottom: 15px;
    }

    .section-tittle2 p {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .main-header .container-fluid {
        padding: 0 15px !important;
    }

    .mobile-nav ul li {
        padding: 10px 48px;
    }

    .swiper-container-gallery img {
        height: 400px !important;
        object-fit: cover;
    }

    .gallery-area .box .big-img {
        height: 400px;
    }

    /*.hamburger {*/
    /*    font-size: 25px !important;*/
    /*}*/

    .border-btn.hero-btn {
        font-size: 14px !important;
        padding: 8px 30px !important;
    }

    .contact-us-btn {
        font-size: 16px !important;
        padding: 17px 30px !important;
    }

    .join-us-btn {
        font-size: 16px !important;
        padding: 12px 30px !important;
    }

    .pt-80 {
        padding-top: 50px;
    }

    .pb-80 {
        padding-bottom: 50px;
    }

    .section-tittle2 p {
        font-size: 14px;
    }
}

/* How it works (Ambitious theme) */
.how-it-works-area {
    position: relative;
}

.hitw-subtitle {
    color: rgba(255,255,255,.75);
    max-width: 720px;
    margin: 0 auto;
}

.hitw-steps {
    position: relative;
    padding-left: 12px;
}

.hitw-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
}

.hitw-step::before {
    content: "";
    position: absolute;
    left: 21px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,.05),
        rgba(227,27,35,.6),
        rgba(255,255,255,.05)
    );
}

.hitw-step:first-child::before {
    top: 24px;
}

.hitw-step:last-child::before {
    bottom: 24px;
}

.hitw-dot {
    flex: 0 0 44px;
    height: 44px;
    width: 44px;
    border-radius: 999px;
    background: #E31B23;
    color: #fff;
    font-weight: 800;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 30px rgba(227,27,35,.35);
    position: relative;
    z-index: 2;
    border: 2px solid rgba(255,255,255,.12);
}

.hitw-card {
    flex: 1;
    background: rgba(0,0,0,.55);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 18px 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,.35);
    backdrop-filter: blur(6px);
}

.hitw-card h5 {
    color: #fff;
    margin-bottom: 6px;
    font-weight: 800;
    letter-spacing: .2px;
    font-size: 16px;
}

.hitw-card p {
    color: rgba(255,255,255,.78);
    margin-bottom: 10px;
}

.hitw-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hitw-btn {
    background: #E31B23;
    border: 1px solid #E31B23;
    color: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 700;
}

.hitw-btn:hover {
    filter: brightness(1.05);
    color: #fff;
}

.hitw-btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
}

.hitw-btn-outline:hover {
    border-color: #E31B23;
    color: #fff;
}

.hitw-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.hitw-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(227,27,35,.14);
    border: 1px solid rgba(227,27,35,.35);
    color: rgba(255,255,255,.9);
    font-weight: 700;
    font-size: 13px;
}

/* Multisport block */
.hitw-multisport {
    background: rgba(0,0,0,.65);
    border: 1px solid rgba(227,27,35,.35);
    border-radius: 20px;
    padding: 26px 26px;
    box-shadow: 0 20px 40px rgba(0,0,0,.45);
}

.hitw-ms-header {
    margin-bottom: 18px;
}

.hitw-ms-badge {
    display: inline-block;
    background: #E31B23;
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.hitw-ms-header h4 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 6px;
}

.hitw-ms-header p {
    color: rgba(255,255,255,.75);
    margin-bottom: 0;
}

.hitw-ms-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
}

.hitw-ms-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.hitw-ms-step span {
    flex: 0 0 32px;
    height: 32px;
    width: 32px;
    border-radius: 999px;
    background: rgba(227,27,35,.15);
    border: 1px solid rgba(227,27,35,.5);
    color: #fff;
    font-weight: 800;
    display: grid;
    place-items: center;
    font-size: 14px;
}

.hitw-ms-step p {
    color: rgba(255,255,255,.85);
    margin-bottom: 0;
}

.hitw-ms-info {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.85);
}

@media (max-width: 575.98px) {
    .hitw-step {
        gap: 12px;
    }
    .hitw-card {
        padding: 16px;
        border-radius: 14px;
    }
}

.single-slider {
    position: relative;
}

.single-slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); /* tmavý overlay */
    z-index: 1;
}

.hero__caption {
    position: relative;
    z-index: 2;
}


