/*
Theme Name: Hello Elementor Child (UniBasket)
Description: Čistá pod-šablona pro NBL vzhled SportsPressu a Elementoru.
Author: UniBasket
Template: hello-elementor
Version: 1.0.0
*/

/* ==============================================================================
   Základní CSS pro SportsPress NBL styl
   ============================================================================== */

:root {
    --ub-white: #ffffff;
    --ub-red: #e2272e;
    --ub-blue: #0c3882;
    --ub-black: #1a1a1a;
    --ub-shadow-medium: 0 4px 10px rgba(0, 0, 0, 0.15);
    --ub-font-main: 'Inter', sans-serif;
    --ub-font-heading: 'Inter', sans-serif;
}

/* Skrytí defaultních nepěkných SP prvků */
.sp-template-event-list h4,
.sp-template-standings h4,
.sp-template-player-list h4 {
    display: none;
}

/* Odstranění modrého podtržení linků v celém SP a úprava barvy na tmavou místo výchozí modré/červené globalně */
.sp-template a {
    box-shadow: none !important;
    color: var(--ub-text-main);
}

.sp-template a:hover {
    color: var(--ub-red);
}

/* Tlačítka a záložky ala NBL */
.sp-view-all-link {
    display: inline-block;
    background: #e2272e;
    color: #fff !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 15px;
    transition: background 0.3s;
}

.sp-view-all-link:hover {
    background: #0c3882;
}

/* Styly pro NBL Hlavičku v Elementoru (Nav Menu) */
.unibasket-nbl-header {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.unibasket-nbl-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.unibasket-nbl-nav a {
    color: #1a1a1a;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    text-decoration: none;
    padding: 15px 0;
    display: block;
    transition: color 0.3s;
}

.unibasket-nbl-nav a:hover {
    color: #e2272e;
}