/* Fullscreen Hero Fix */
.hero-section {
    position: relative;
    height: 100vh !important; /* Vynútenie 100% výšky viewportu */
    min-height: 600px !important; /* Minimálna výška pre menšie obrazovky */
    background-image: url('../images/city-skyline.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* Zabezpečenie, že obsah je správne umiestnený */
.hero-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 200px !important; /* Priestor pre sekciu výhod */
}

/* Overlay pre lepšiu čitateľnosť textu */
.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Sekcia výhod na spodku hero sekcie */
.features-section.features-on-hero {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    z-index: 3 !important;
    padding: 30px 0 !important;
}

/* Responzívne úpravy */
@media (max-width: 768px) {
    .hero-section {
        height: auto !important;
        min-height: 500px !important;
    }
    
    .hero-section .container {
        padding-bottom: 0 !important;
    }
    
    .features-section.features-on-hero {
        position: relative !important;
    }
}
