/* Header */
.hlavni_header {
    background-color: #0B3D77;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hlavni_container {
    width: 1440px;
    max-width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo_wrapper {
    display: flex;
    align-items: center;
}

.logo {
    height: auto;
    max-height: 60px;
}

.hlavni_navigace {
    display: flex;
    gap: 40px;
    align-items: center;
}

.navigace_odkaz {
    font-family: Roboto, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.navigace_odkaz:hover {
    opacity: 0.8;
}

/* Hamburger menu */
.hamburger_menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.hamburger_cara {
    width: 100%;
    height: 3px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

.hamburger_menu.active .hamburger_cara:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger_menu.active .hamburger_cara:nth-child(2) {
    opacity: 0;
}

.hamburger_menu.active .hamburger_cara:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}


/* Responsive Header */
@media (max-width: 1024px) {
    .hamburger_menu {
        display: flex;
    }
    
    .hlavni_navigace {
        position: fixed;
        top: 100px;
        right: -100%;
        width: 160px;
        height: auto;
        max-height: calc(100vh - 100px);
        background-color: #0B3D77;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 40px 20px;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
        border-radius: 10px;
    }
    
    .hlavni_navigace.active {
        right: 0;
    }
    
    .navigace_odkaz {
        width: 100%;
        text-align: left;
        font-size: 20px;
    }
}

/* Footer */
.hlavni_paticka {
    background-color: #0B3D77;
    width: 100%;
    min-height: 588px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 0 31px 0;
}

.paticka_container {
    width: 1440px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.paticka_vnitrni_obal {
    width: 1200px;
    max-width: 100%;
}

.paticka_nadpis {
    width: 429px;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 38px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #4CA7DD;
    margin: 0 0 57px 0;
}

.paticka_sloupce {
    display: flex;
    justify-content: flex-start;
    gap: 143px;
    margin-bottom: 130px;
}

.paticka_sloupec {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 157px;
}

.paticka_odkaz {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 36px;
    letter-spacing: 0%;
    color: #FFFFFF;
    text-decoration: none;
}

.paticka_odkaz:hover {
    text-decoration: underline;
}

.paticka_kontakt {
    display: flex;
    gap: 19px;
    align-items: flex-start;
}

.kontakt_foto {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.kontakt_udaje {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.kontakt_text {
    font-family: Roboto, sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin: 0;
}

.kontakt_info_wrapper {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.kontakt_ikona_velika {
    width: 24px;
    height: 41px;
    flex-shrink: 0;
    margin-top: 2px;
}

.kontakt_info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.paticka_delici_cara {
    width: 1200px;
    height: 0;
    border: none;
    border-top: 1px solid rgba(242, 242, 242, 0.2);
    margin: 0 0 31px 0;
}

.paticka_copyright {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0%;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .hlavni_paticka {
        padding: 40px 20px 20px 20px;
        min-height: auto;
    }
    
    .paticka_nadpis {
        width: 100%;
        font-size: 28px;
        margin: 0 0 40px 0;
    }
    
    .paticka_sloupce {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .paticka_sloupec {
        width: 100%;
    }
    
    .paticka_kontakt {
        margin-top: 20px;
    }
    
    .paticka_delici_cara {
        width: 100%;
        margin: 0 0 20px 0;
    }
}
