/* KOMPLETNÍ STYL PRO IVA-UKLID-EKO.CZ (SAMBA ŠABLONA)
   - Oprava loga (zmenšení a přiblížení)
   - Velké písmo v menu (18px, Bold, Uppercase)
   - Oprava hoveru (Bílý text na zeleném pozadí)
*/

/* 1. LOGO - Zmenšení a odstranění efektu bílých okrajů */
#header #logo, .header #logo, #logo a {
    display: block !important;
    max-width: 100px !important; 
    height: auto !important;
    margin: 0 auto !important;
    overflow: visible !important;
}

#header #logo img, .header #logo img, .logo img {
    width: 100% !important;
    max-width: 100px !important;
    height: auto !important;
    /* Trik: Přiblížíme logo, aby nápis nebyl tak malý kvůli bílým okrajům v obrázku */
    transform: scale(1.6) !important; 
    transition: transform 0.3s ease !important;
}

/* 2. MENU - ZÁKLADNÍ STYL (Velké a tučné) */
header nav a,
.header-navigation a,
.main-navigation a,
.navigation a,
.menu-helper > ul > li > a {
    font-size: 18px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    color: #3F5F52 !important; /* Tmavě zelená */
    padding: 10px 15px !important;
    transition: all 0.2s ease-in-out !important;
    display: inline-block !important;
}

/* 3. MENU - HOVER (Zelené pozadí + BÍLÝ TEXT) */
/* Tohle opravuje to, aby byl text při najetí vidět */
header nav a:hover,
.header-navigation a:hover,
.main-navigation a:hover,
.navigation a:hover,
.menu-helper > ul > li:hover > a,
.menu-helper > ul > li > a:hover {
    background-color: #8DC63F !important; /* Světle zelená */
    color: #FFFFFF !important; /* BÍLÝ TEXT - vynuceně */
    text-decoration: none !important;
    border-radius: 4px !important;
}

/* 4. AKTIVNÍ POLOŽKA (Stránka, na které uživatel je) */
.menu-helper > ul > li.active > a,
.menu-helper > ul > li.selected > a {
    background-color: #8DC63F !important;
    color: #FFFFFF !important;
    border-radius: 4px !important;
}

/* 5. MEZERY MEZI POLOŽKAMI */
header nav li,
.navigation li {
    padding: 0 5px !important;
}
