body{
margin:0;
font-family: 'Segoe UI', Arial;
background:#0c0c0c;
color:#eee;
}

/* HEADER */
.top{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 10%;
background:rgba(0,0,0,.85);
backdrop-filter:blur(10px);
position:sticky;
top:0;
z-index:1000;
border-bottom:1px solid rgba(255,215,0,.2);
}

.logo{height:90px}

nav a{
color:#eee;
margin-left:25px;
text-decoration:none;
font-size:15px;
letter-spacing:1px;
position:relative;
}

nav a:after{
content:'';
position:absolute;
bottom:-5px;
left:0;
width:0;
height:2px;
background:#d4af37;
transition:.3s;
}
nav a:hover:after{width:100%}

.cta{
background:linear-gradient(45deg,#d4af37,#ffcc55);
padding:14px 30px;
color:black;
font-weight:bold;
border-radius:50px;
box-shadow:0 0 30px rgba(212,175,55,.8);
animation:pulse 2s infinite;
}

/* HERO */
.hero{
background:url("slike/nadstresek.webp") center/cover fixed;
height:80vh;
display:flex;
align-items:center;
justify-content:center;
position:relative;
}

.hero:before{
content:'';
position:absolute;
inset:0;
background:
linear-gradient(rgba(0,0,0,.8), rgba(0,0,0,.85)),
url("slike/logo.png") center/400px no-repeat;
opacity:.25;
}

.hero-box{
position:relative;
color:white;
padding:60px;
text-align:center;
border-radius:25px;
background:rgba(0,0,0,.7);
box-shadow:0 0 80px rgba(212,175,55,.4);
}

.hero-box h1{
font-size:56px;
letter-spacing:3px;
margin:0;
color:#d4af37;
}

.hero-box p{
font-size:22px;
letter-spacing:2px;
}

/* SECTIONS */
section{
padding:80px 10%;
background:#0f0f0f;
}

h2{
text-align:center;
margin-bottom:50px;
font-size:36px;
color:#d4af37;
}

/* SERVICES */
.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
}

.service-card{
  background:white;
  padding:40px 20px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  transition:0.4s;
  position:relative;
  overflow:hidden;
}

.service-card:hover{
  transform:translateY(-12px);
  box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

.service-card img{
  width:80px;
  margin-bottom:15px;
  filter: drop-shadow(0 0 10px rgba(255,179,0,0.6));
}

.service-card h3{
  margin:10px 0;
  font-size:20px;
}

.service-card p{
  font-size:14px;
  color:#666;
}


/* GALLERY */
.masonry{
column-count:3;
column-gap:25px;
}

.masonry img{
width:100%;
margin-bottom:25px;
border-radius:18px;
transition:.4s;
}

.masonry img:hover{
transform:scale(1.04);
box-shadow:0 20px 40px rgba(0,0,0,.8);
}

/* CONTACT */
.contact-wrap{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
}

form{
display:flex;
flex-direction:column;
gap:15px;
background:#141414;
padding:40px;
border-radius:20px;
border:1px solid rgba(212,175,55,.2);
}

input,textarea{
padding:14px;
border-radius:8px;
border:none;
background:#1f1f1f;
color:white;
}

button{
background:linear-gradient(45deg,#d4af37,#ffcc55);
border:none;
padding:14px;
font-size:16px;
border-radius:30px;
font-weight:bold;
cursor:pointer;
}

/* MAP + FB */
iframe{
width:100%;
height:300px;
border-radius:20px;
border:0;
}

.fb{
display:block;
margin-top:20px;
background:#1877f2;
color:white;
padding:15px;
text-align:center;
border-radius:30px;
text-decoration:none;
}

/* FOOTER */
footer{
text-align:center;
padding:40px;
background:#000;
color:#aaa;
letter-spacing:2px;
}

/* MOBILE */
@media(max-width:800px){
.hero-box h1{font-size:36px}
.masonry{column-count:1}
.contact-wrap{grid-template-columns:1fr}
}

/* MOBILE IMPROVEMENTS */
@media (max-width: 600px){

.top{
  flex-direction:column;
  gap:15px;
}

nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
}

nav a{
  margin:10px;
}

.hero-box{
  padding:30px;
}

.hero-box h1{
  font-size:32px;
}

.hero-box p{
  font-size:16px;
}

section{
  padding:60px 8%;
}

.service-grid{
  grid-template-columns:1fr;
}

.service-grid div{
  font-size:16px;
  padding:25px;
}

.masonry img{
  border-radius:12px;
}

.contact-wrap{
  gap:30px;
}

form{
  padding:25px;
}

}
.call-btn{
display:none;
}

@media(max-width:800px){
.call-btn{
  display:block;
  position:fixed;
  bottom:20px;
  right:20px;
  background:linear-gradient(45deg,#d4af37,#ffcc55);
  color:black;
  padding:15px 25px;
  border-radius:50px;
  font-weight:bold;
  box-shadow:0 10px 30px rgba(212,175,55,.8);
  z-index:9999;
  text-decoration:none;
}
}

#seo{
background:#0c0c0c;
}

.seo-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.seo-grid div{
background:#141414;
padding:30px;
border-radius:15px;
border:1px solid rgba(212,175,55,.2);
box-shadow:0 0 20px rgba(0,0,0,.8);
}

.seo-grid h3{
color:#d4af37;
margin-bottom:10px;
}
