.hero-section {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/zolty_smok_tlo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomIn 10s ease forwards;
}
#hero-addres{
    font-size: 1.25rem;
    
}

@keyframes zoomIn {
    0% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

.hero-overlay {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    padding: 20px;
}

.phone-number {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 25px;
}
h1 {
    font-size: 70px;
    font-family: "Risque", serif;
    font-weight: 200;
    font-style: normal;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.additionalInfo {
    font-size: 0.7rem;
    margin-top: 25px;
}

.zestawDniaImg{
    width: 50%;
    height: auto;
    
}
.zestawDniaImg:first-child {
    margin-right: 10px;
}