* {

margin:0;
padding:0;
box-sizing:border-box;

}


html {

scroll-behavior:smooth;

}



body {

font-family:'Inter',sans-serif;

background:#0b0b0b;

color:white;

overflow-x:hidden;

}



h1,
h2,
h3 {

font-family:'Oswald',sans-serif;

}





/* NAV */


nav {

display:flex;

justify-content:space-between;

align-items:center;

padding:30px 8%;

background:#0b0b0b;

}



.logo {

font-family:'Oswald',sans-serif;

font-size:35px;

letter-spacing:4px;

color:#c6a15b;

text-decoration:none;

}



.menu a {

color:white;

text-decoration:none;

margin-left:25px;

transition:.3s;

}



.menu a:hover {

color:#c6a15b;

}







/* HERO */


.hero {

min-height:90vh;

background:

linear-gradient(
rgba(0,0,0,.65),
rgba(0,0,0,.65)
),

url("https://images.unsplash.com/photo-1503951914875-452162b0f3f1")

center/cover;



display:flex;

justify-content:center;

align-items:center;

text-align:center;

padding:40px 8%;

}



.hero-content {

max-width:900px;

}



.small {

letter-spacing:5px;

color:#c6a15b;

margin-bottom:20px;

}



.hero h1 {

font-size:100px;

letter-spacing:8px;

}



.hero p {

font-size:22px;

color:#ddd;

margin:30px 0;

}







.button {

display:inline-block;

background:#c6a15b;

color:#111;

padding:16px 40px;

text-decoration:none;

font-weight:bold;

transition:.3s;

}



.button:hover {

background:white;

}







section {

padding:90px 8%;

}







.intro {

text-align:center;

max-width:800px;

margin:auto;

}



.intro h2 {

font-size:50px;

margin-bottom:20px;

}



.intro p {

color:#aaa;

font-size:20px;

line-height:1.7;

}








.title {

text-align:center;

margin-bottom:50px;

}



.title h2 {

font-size:45px;

color:#c6a15b;

}








/* USLUGE */


.services {

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}



.service {

background:#151515;

padding:40px;

border:1px solid #292929;

}



.service h3 {

font-size:30px;

margin-bottom:20px;

color:#c6a15b;

}



.service p {

color:#aaa;

line-height:1.6;

}








/* CJENIK */


.prices {

max-width:700px;

margin:auto;

}



.prices div {

display:flex;

justify-content:space-between;

border-bottom:1px solid #333;

padding:20px 0;

font-size:20px;

}



.prices strong {

color:#c6a15b;

}








/* GALERIJA */


.gallery {

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

}



.gallery img {

width:100%;

height:400px;

object-fit:cover;

}








/* RADNO VRIJEME */


.hours {

background:#151515;

text-align:center;

}



.hours h2 {

color:#c6a15b;

font-size:45px;

margin-bottom:25px;

}



.hours p {

margin:10px;

color:#ccc;

}







/* KONTAKT */


.contact {

background:#c6a15b;

color:#111;

text-align:center;

}



.contact h2 {

font-size:45px;

margin-bottom:20px;

}



.contact .button {

background:#111;

color:white;

}







/* FOOTER */


footer {

background:#050505;

text-align:center;

padding:30px;

}



footer a {

display:inline-block;

margin-top:15px;

color:#c6a15b;

text-decoration:none;

}







@media(max-width:800px){


nav {

flex-direction:column;

gap:20px;

}



.menu a {

margin:0 8px;

}



.hero h1 {

font-size:55px;

}



.services,
.gallery {

grid-template-columns:1fr;

}



.prices div {

font-size:16px;

}


}