*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Verdana, Geneva, Tahoma, sans-serif
}

body{
    background:white;
    color:#111;
}

.clear{
    clear:both;
}

nav{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    background:rgba(0,0,0,0.5);
    padding:20px 50px;
    z-index:1000;
}

nav ul{
    list-style:none;
    float:right;
}

nav ul li{
    display:inline-block;
    margin-left:25px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    transition:0.3s;
}

nav ul li a:hover{
    color:#245BFF;
}

.hero{
    position:relative;
    height:100vh;
}

.hero-img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background:rgba(0,0,0,0.5);
}

.hero-text{
    position:absolute;
    top:50%;
    left:10%;
    transform:translateY(-50%);
    color:white;

    animation:fadeIn 1.5s;
}

.hero-text h1{
    font-size:70px;
    margin-bottom:20px;
}

.hero-text p{
    margin-bottom:30px;
    line-height:1.6;
}

.btn,
.btn-small,
button{
    display:inline-block;
    padding:15px 30px;
    background:#245BFF;
    color:white;
    text-decoration:none;
    border:none;
    border-radius:30px;
    cursor:pointer;

    transition:0.3s;
}

.btn:hover,
.btn-small:hover,
button:hover{
    background:#183fc2;
}

@keyframes fadeIn{
    from{
        opacity:0;
        top:60%;
    }

    to{
        opacity:1;
        top:50%;
    }
}

.projekt,
.stanovi,
.tlocrt,
.galerija,
.lokacija,
.kontakt{
    padding:100px 10%;
}

.projekt-left{
    float:left;
    width:60%;
}

.projekt-right{
    float:right;
    width:35%;
}

.projekt-right img{
    width:100%;
    border-radius:20px;
}

.stat-card{
    float:left;
    width:30%;
    margin:10px 1.5%;
    padding:20px;
    background:#f5f5f5;
    text-align:center;
    border-radius:15px;

    transition:0.3s;
}

.stat-card:hover{
    transform:translateY(-5px);
}

.section-title{
    margin-bottom:50px;
}

.section-title h4{
    color:#245BFF;
    margin-bottom:15px;
}

.section-title h2{
    font-size:40px;
}

.stan-card{
    float:left;
    width:47%;
    margin-right:3%;
    background:#fafafa;
    border-radius:20px;
    overflow:hidden;

    transition:0.3s;
}

.stan-card:hover{
    transform:translateY(-10px);
}

.stan-card img{
    width:100%;
}

.stan-content{
    padding:30px;
}

.stan-content ul{
    padding-left:20px;
    margin:20px 0;
}

.tlocrt-img{
    width:48%;
    margin-right:2%;
    border-radius:20px;
}

.galerija{
    background:#111827;
}

.white{
    color:white;
}

.gallery-img{
    float:left;
    width:31%;
    margin-right:2%;
    margin-bottom:20px;
}

.gallery-img img{
    width:100%;
    border-radius:15px;

    transition:0.3s;
}

.gallery-img img:hover{
    transform:scale(1.03);
}

.mapa{
    float:left;
    width:55%;
}

.mapa iframe{
    width:100%;
    height:400px;
    border:none;
    border-radius:20px;
}

.lokacija-text{
    float:right;
    width:40%;
}

.lokacija-text ul{
    padding-left:20px;
    margin-top:20px;
}

.lokacija-text li{
    margin-bottom:15px;
}

.kontakt{
    position:relative;
}

.footer-bg{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    object-fit:cover;
}

.overlay-footer{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background:rgba(0,0,0,0.7);
}

.kontakt-left{
    position:relative;
    z-index:2;
    float:left;
    width:55%;
    color:white;
}

.kontakt-right{
    position:relative;
    z-index:2;
    float:right;
    width:35%;
    color:white;
}

form input,
form textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border-radius:10px;
    border:none;
}

form textarea{
    height:120px;
}

footer{
    background:#111;
    color:white;
    padding:30px 10%;
}

footer p:first-child{
    float:left;
}

footer p:last-child{
    float:right;
}

@media(max-width:900px){

    .projekt-left,
    .projekt-right,
    .stan-card,
    .gallery-img,
    .mapa,
    .lokacija-text,
    .kontakt-left,
    .kontakt-right,
    .stat-card{
        width:100%;
        float:none;
        margin-bottom:30px;
    }

    .tlocrt-img{
        width:100%;
        margin-bottom:20px;
    }

    nav ul{
        float:none;
        text-align:center;
    }

    footer p{
        float:none;
        margin-bottom:10px;
    }
}