footer small {
    color: #989898;
}
footer small a {
    color: #989898;
    text-decoration: none;
    transition: all .4s ease;
}
footer small a:hover {
    color: #515151;
    text-decoration: underline;
}
footer {margin-bottom: 40px;}
.logo-klubu {
    position: fixed;       /* fixní pozice vůči viewportu */
    bottom: -20%;          /* část loga mimo obrazovku */
    right: -20%;           /* část loga mimo obrazovku */
    width: 60%;            /* logo zabere 60 % šířky obrazovky */
    max-width: none;       /* žádné omezení šířky */
    height: auto;
    z-index: -1;           /* logo za obsahem stránky */
    pointer-events: none;  /* neblokuje klikání */
}
.teams-carousel {
    overflow: hidden;
    padding: 30px 0;
    padding-left: 0px !important; padding-right: 0px !important;
}

.teams-carousel__wrapper {
    width: 100%;
    overflow: hidden;
}

.teams-carousel__track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: teamsCarouselScroll 60s linear infinite;
}

.teams-carousel__item {
    min-width: 200px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2A2A2A;
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    transition: background 0.3s ease;
    cursor: pointer;
}

.teams-carousel__item:hover {
    background: #C80014;
    color: #ffffff;
}

@keyframes teamsCarouselScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}   .teams-carousel {
        overflow: hidden;
        padding: 30px 0;
    }

.teams-carousel__wrapper {
    width: 100%;
    overflow: hidden;
}

.teams-carousel__track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: teamsCarouselScroll 60s linear infinite;
}

.teams-carousel__item {
    min-width: 200px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2A2A2A;
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    transition: background 0.3s ease;
    cursor: pointer;
}

.teams-carousel__item:hover {
    background: #C80014;
    color: #ffffff;
}

@keyframes teamsCarouselScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


.navbar-light .navbar-nav .nav-link {
    color: black !important;
    font-weight: 400 !important;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}


/* ===== NAVBAR ===== */
.custom-navbar {
    background: url('/www/assets/im/design/grey_bg.svg');
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 9px 0;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #222;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #c60000;
}
.cppc0 {padding: 0;}

/* DROPDOWN */
/* DROPDOWN */
.dropdown-menu {
    border: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* SOCIAL */
.social-link {
    font-size: 1.3rem;
    color: #222;
    transition: 0.3s;
}

.social-link:hover {
    color: #c60000;
    transform: translateY(-3px);
}

@keyframes fadeDown {
    from {opacity:0; transform: translateY(-10px);}
    to {opacity:1; transform: translateY(0);}
}

/* SOCIAL ICONS */
.social-icons {
    gap: 15px;
}

.social-link {
    font-size: 1.3rem;
    color: #222;
    transition: 0.3s;
}

.bi-x-lg::before {color: black !important;}

.social-link:hover {
    color: #c60000;
    transform: translateY(-3px);
}

/* ===== FULLSCREEN MOBILE MENU ===== */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    background: url('/www/assets/im/design/grey_bg.svg');
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 2000;
}

.fullscreen-menu.active {
    transform: translateY(0);
}

.fullscreen-menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.fullscreen-menu li {
    margin: 25px 0;
}

.fullscreen-menu a {
    color: black !important;
    font-size: 1.4rem;
    font-weight: 400;
    text-decoration: none;
}

.fullscreen-menu a:hover {
    color: #c60000;
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.fullscreen-menu ul li {
    margin: 20px 0;
    text-align: center;
    position: relative;
}

.fullscreen-menu .submenu {
    display: none;
    margin-top: 10px;
    list-style: none;
    padding-left: 0;
}

.fullscreen-menu .submenu li {
    margin: 10px 0;
}

.fullscreen-menu a {
    color: white;
    font-size: 1.4rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
}

.fullscreen-menu a:hover {
    color: #c60000;
}

.arrow {
    font-size: 0.8rem;
    margin-left: 5px;
}

.btn-secondary {background: #2A2A2A !important; color: white; border-radius: 0px; border: 1px solid #2A2A2A !important;}
.bg-danger {background: #C80014 !important;}
.bg-denzr {background: #C80014 !important; border-radius: 0px !important;}
.vyhra_label {color: #095852; text-transform: uppercase; font-weight: 500;}
.prohra_label {color: #B73239; text-transform: uppercase; font-weight: 500;}
.remiza_label {color: #cf8514; text-transform: uppercase; font-weight: 500;}
.color-white {color: white !important;}

/* Kulaté tečky pro Owl Carousel */
.owl-dots {
    display: flex;
    justify-content: flex-end; /* vpravo */
    gap: 5px; /* mezery mezi tečkami */
    padding-right: 12px !important;
    padding-top: 20px;
}
.owl-dot {background: transparent; border: none; padding-left: 2px; padding-right: 2px;}
.owl-dot.active span {background: #575757 !important;}


.owl-dot span {
    width: 10px;
    height: 10px;
    background: #fff; /* barva tečky */
    border-radius: 50%; /* kulaté */
    display: block;
    transition: all 0.3s;
}

.owl-dot.active span {
    background: #575757 !important;
}
.btn-danger {border-radius: 0px !important; background: #C80014 !important;  }

.rozcestnik_box.active{
    background: #C80014;
}
.rozcestnik_box {
    transition: all 0.2s ease;
    background: #2A2A2A;
    border-radius: 0px !important;
}
.rozcestnik_box div {color: white; font-size: .9rem;}

.rozcestnik_box:hover {
    background-color: #C80014;
    transform: translateY(-3px);
}
.rozcestnik_box img {width: 50px;}
.bg-lajt {background: #D9D9D9 !important;}
.select {border-radius: 0px !important;}
.form-select {border-radius: 0px !important;}
.text-right {text-align: right;}
.badge {font-weight: 400 !important;}
.hrac_box .thumbnail {height: 250px; }
.hrac_box .thumbnail .cislo {color: black; font-size: 2rem; font-weight: 500; text-decoration: none;}
.hrac_box {text-decoration: none;}
.hrac_box .jmeno {background: linear-gradient(90deg, #EDEDED 0%, #E7E7E7 100%); color: #56b6e6; text-align: center;}
.detail_hrace h2 {font-size: 1.9rem;}
.detail_hrace h1 {font-size: 4.2rem;}
.detail_hrace .text-muted {color: #B0B0B0 !important;}
.detail_hrace .green {color: #C80014 !important;}
.dropdown-item {line-height: 32px; text-transform: uppercase;}
.navbar-light .navbar-nav .nav-link {text-transform: uppercase;}
.logo-box {
    width: 130px;       /* pevná šířka */
    height: 130px;      /* pevná výška */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: transparent;   /* volitelně, pok ud některá loga mají průhledné pozadí */
    border-radius: 8px; /* volitelně, aby design hezky ladil */
}

.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* zachová poměr stran a vejde se do boxu */
}
.logo_club_main {
    width: 70px;
    image-rendering: -webkit-optimize-contrast;
}

.carousel-item {
    height: 70vh; /* změněno z 100vh */
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Gradient overlay at the bottom */
.carousel-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
}

/* Labels "Aktualita" + datum */
.carousel-labels {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.carousel-label {
    background-color: #2A2A2A;
    padding: 0.40rem 0.8rem;
    border-radius: 0px;
    font-size: 0.75rem;
}

/* Main headline */
.carousel-title {
    font-size: 2.5rem;
    font-weight: 400;
}

/* White arrow on the right (otevírá detail) */
.carousel-arrow {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 10;
}

/* Animated progress bar at bottom */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: #C80014;
    width: 0%;
    transition: none;
}

@media (max-width: 768px) {
    .carousel-title {
        font-size: 1.2rem;
    }
    .carousel-arrow {
        font-size: 1.5rem;
        right: 0.5rem;
        bottom: 0.5rem;
    }
}

.carousel-arrow {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    font-size: 3rem;        /* větší */
    font-weight: 300;       /* méně tlustá */
    color: white;
    cursor: pointer;
    z-index: 10;

    /* šikmo doprava nahoru */
    transform: rotate(-45deg);
    transition: transform 0.2s ease, font-size 0.2s ease;
}

/* hover efekt – lehké zvětšení */
.carousel-arrow:hover {
    transform: rotate(-45deg) scale(1.2);
    color: white;
}

.carousel-gradient .container {
    position: relative; /* aby absolutní pozice šipky byla vůči containeru */
}

.carousel-arrow {
    position: absolute;
    right: 0;        /* úplně k pravému okraji containeru */
    bottom: 0;       /* nebo trochu posunout nahoru, pokud chceš */
    font-size: 3rem; /* větší šipka */
    font-weight: 300; /* tenčí vzhled */
    color: white;
    cursor: pointer;
    z-index: 10;
    transform: rotate(-45deg); /* šikmo doprava nahoru */
    transition: transform 0.2s ease, font-size 0.2s ease;
}

.carousel-arrow:hover {
    transform: rotate(-45deg) scale(1.2); /* mírné zvětšení při hover */
}

.carousel-inner {
    cursor: pointer;}

@media screen and (max-width: 767px) {
    .cppc0 {padding: 10px;}
    .carousel-item {height: 40vh;}
    .carousel-labels {margin-bottom: .5rem;}
    .carousel-label{font-size: 0.60rem;}
    .carousel-arrow {font-size: 2rem; right: 10px;}
    .teams-carousel__item {height: 39px; width: 140px; font-size: 14px;}
    .mobile_row_repairer {padding-left: 10px !important; padding-right: 10px !important;}
    .partneri_box h1 {font-size: 2rem !important;}
    .arrow {font-size: 1.8rem;}
    .submenu {padding: 10px;}
    .submenu li a {font-size: 1rem;}
    .fullscreen-menu .submenu {
        max-height: 40vh;
        overflow-y: auto;
        margin-left: 1rem;
    }
}

