#uvod {
    min-height: 100vh;
    position: relative; 
    overflow: hidden; 
    display: flex;
    align-items: center;
    padding-left: 5%;
    padding-top: 80px;
}


.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center; 
    z-index: 1;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 2; 
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #e6dfd5;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 56px;
    font-family: Georgia, serif;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: normal;
}

.zlata-cara {
  width: 82%;            
  height: 2px;             
  background-color: #b0854f; 
  margin-top: 25px;         
  margin-bottom: 30px;    
}

.hero-content h2 {
    font-size: 38px;
    font-family: Georgia, serif;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: normal;
}
.hero-content .subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.4;
}
.hero-content .hesla-firmy {
    margin-bottom: 20px;
}
.hero-content .hesla-firmy p {
    margin-bottom: 5px;
}

.hero-content .subtitle span {
    color: #bfa38a;
    font-style: italic;
    font-family: Georgia, serif;
}

.hero-content .desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #d1c8bd;
}

@media (max-width: 992px) {
    .hero-content h1 { font-size: 46px; }
    .hero-content h2 { font-size: 32px; }
}


@media (max-width: 768px) {
    #uvod {
        padding: 100px 6% 60px 6%; 
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 { 
        font-size: 36px; 
        margin-bottom: 15px;
    }

    .hero-content h2 { 
        font-size: 26px; 
    }

    .hero-content .subtitle { 
        font-size: 18px; 
    }

    .zlata-cara {
        width: 100%; 
        margin-top: 15px;
        margin-bottom: 20px;
    }
}


@media (max-width: 480px) {
    .hero-content h1 { font-size: 30px; }
    .hero-content h2 { font-size: 22px; }
    
    .btn {
        width: 100%; 
        text-align: center;
    }
}