body { font-family: 'Roboto', sans-serif; font-weight: 300; }

h1, h2, h3, .brand-font { 
    font-family: 'Oswald', sans-serif; 
    text-transform: uppercase; 
    line-height: 1.2 !important; 
}

.hero-bg {
    /* Ujisti se, že soubor s obrázkem je ve stejné složce jako tento soubor */
    background-image: linear-gradient(rgba(0, 15, 50, 0.85), rgba(0, 20, 60, 0.7)), url('hero-pozadi-hemmi-caffee.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Oprava pro iOS, kde background-attachment: fixed může zlobit */
@supports (-webkit-touch-callout: none) {
    .hero-bg {
        background-attachment: scroll;
    }
}

/* Vylepšení pro mobilní menu */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}