/**
 * Sekundární navigační menu pro stránky týmů
 * Responsivní design s ikonami a texty
 */

/* Mobilní hlavička - scrolluje se pryč, zobrazí se pouze na mobilu/tabletu */
.team-submenu-header-mobile {
    background: var(--bg-primary);
    padding: 0;
    border-bottom: 1px solid var(--border-color-light);
    display: none; /* Defaultně skrytá */
}

/* Wrapper pro submenu - sticky */
.team-submenu-wrapper {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 56px;
    z-index: 1030;
    box-shadow: var(--shadow-md);
    margin-top: 0 !important;
}

/* Hlavička s názvem týmu - zobrazí se pouze na desktopu */
.team-submenu-header {
    background: var(--bg-primary);
    padding: 0.375rem 0 0.25rem 0;
    border-bottom: 1px solid var(--border-color-light);
}

.team-submenu-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.team-submenu-season {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* Kontejner pro submenu */
.team-submenu {
    width: 100%;
}

/* Seznam položek menu */
.team-submenu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Skrýt scrollbar pro Webkit */
.team-submenu-list::-webkit-scrollbar {
    display: none;
}

/* Jednotlivé položky menu */
.team-submenu-item {
    flex-shrink: 0;
}

/* Linky v menu */
.team-submenu-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    padding: 0.3rem 0.625rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    min-height: 40px;
}

/* Hover efekt */
.team-submenu-link:hover {
    color: var(--primary-color);
    background: var(--card-bg-hover);
}

/* Aktivní položka */
.team-submenu-item.active .team-submenu-link {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}

/* Ikony */
.team-submenu-icon {
    font-size: 1.05rem;
    flex-shrink: 0;
}

/* Popisky */
.team-submenu-label {
    font-size: 0.7rem;
    white-space: nowrap;
    text-align: center;
    line-height: 1.1;
}

/* Desktop - zobrazit ikony i text */
@media (min-width: 768px) {
    /* Na desktopu top: 0 a nižší z-index, aby celý zajel pod navbar */
    .team-submenu-wrapper {
        top: 0;
        z-index: 1000;
    }

    .team-submenu-list {
        gap: 0.375rem;
        justify-content: center;
    }

    .team-submenu-link {
        padding: 0.3rem 0.875rem;
        min-height: 42px;
        gap: 0.125rem;
    }

    .team-submenu-icon {
        font-size: 1.2rem;
    }

    .team-submenu-label {
        font-size: 0.75rem;
        line-height: 1.1;
    }

    .team-submenu-header {
        padding: 0.25rem 0 0.2rem 0;
    }

    .team-submenu-title {
        font-size: 1.3rem;
    }

    .team-submenu-season {
        font-size: 0.8rem;
    }
}

/* Tablet - menší mezery */
@media (min-width: 576px) and (max-width: 767px) {
    /* Zobrazit mobilní hlavičku - stejná výška jako hlavní menu (56px) */
    .team-submenu-header-mobile {
        display: flex;
        align-items: center;
        height: 56px;
    }

    .team-submenu-header-mobile .container {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .team-submenu-header-mobile .team-submenu-title {
        font-size: 1.2rem;
    }

    .team-submenu-header-mobile .team-submenu-season {
        font-size: 0.8rem;
    }

    /* Skrýt desktop hlavičku ve wrapperu */
    .team-submenu-header {
        display: none;
    }

    /* Navigace s ikonami a textem */
    .team-submenu {
        border-top: 1px solid var(--border-color);
    }

    .team-submenu-link {
        padding: 0.35rem 1rem;
        min-height: 40px;
        gap: 0.125rem;
    }

    .team-submenu-icon {
        font-size: 1.15rem;
    }

    .team-submenu-label {
        font-size: 0.7rem;
        line-height: 1.1;
    }
}

/* Mobilní verze - pouze ikony bez textu */
@media (max-width: 575px) {
    /* Zobrazit mobilní hlavičku - kompaktní výška */
    .team-submenu-header-mobile {
        display: flex;
        align-items: center;
        height: 48px !important;
    }

    .team-submenu-header-mobile .container {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .team-submenu-header-mobile .team-submenu-title {
        font-size: 1rem;
        gap: 0.3rem;
        font-weight: 600;
    }

    .team-submenu-header-mobile .team-submenu-season {
        font-size: 0.75rem;
    }

    /* Skrýt desktop hlavičku ve wrapperu */
    .team-submenu-header {
        display: none;
    }

    /* Navigace pouze s ikonami */
    .team-submenu {
        border-top: 1px solid var(--border-color);
    }

    .team-submenu-list {
        gap: 0;
        justify-content: space-evenly;
        padding: 0;
    }

    .team-submenu-link {
        padding: 0.3rem 0.5rem;
        min-height: 36px;
        gap: 0;
    }

    .team-submenu-icon {
        font-size: 1.15rem;
    }

    /* Skrýt text na mobilu */
    .team-submenu-label {
        display: none !important;
    }

    /* Na velmi malých displejích ještě menší ikony */
    @media (max-width: 380px) {
        .team-submenu-header-mobile .team-submenu-title {
            font-size: 0.85rem;
        }

        .team-submenu-header-mobile .team-submenu-season {
            font-size: 0.65rem;
        }

        .team-submenu-icon {
            font-size: 1.05rem;
        }

        .team-submenu-link {
            padding: 0.25rem 0.35rem;
            min-height: 34px;
        }
    }
}

/* Animace při načtení */
.team-submenu-wrapper {
    animation: slideDown 0.3s ease-out;
}

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

/* Přizpůsobení pro sticky menu při scrollování */
.team-submenu-wrapper.scrolled {
    box-shadow: var(--shadow-md);
}

/* Zvýraznění při focus (přístupnost) */
.team-submenu-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

/* Vylepšení pro touch zařízení */
@media (hover: none) {
    .team-submenu-link:active {
        background: var(--card-bg-hover);
        transform: scale(0.97);
    }
}

/* Odsazení obsahu pod submenu */
.team-submenu-wrapper + .container,
.team-submenu-wrapper + main,
.team-submenu-wrapper + .hometeam-wrapper {
    margin-top: 1rem !important;
}

@media (max-width: 767px) {
    .team-submenu-wrapper + .container,
    .team-submenu-wrapper + main,
    .team-submenu-wrapper + .hometeam-wrapper {
        margin-top: 0.75rem !important;
    }
}
