@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
zoom:0.8;
}

body{

font-family:'Montserrat',sans-serif;
background:#0b0b0b;
color:#fff;
line-height:1.8;
overflow-x:hidden;
font-size:16px;

}


img{

max-width:100%;
display:block;

}


a{

text-decoration:none;
color:white;
transition:.3s;

}


h1,h2,h3{

font-family:'Cormorant Garamond',serif;
font-weight:600;

}



/* HEADER */


header{

position:fixed;
top:0;
left:0;
width:100%;

display:flex;
align-items:center;
justify-content:space-between;

padding:18px 7%;

background:rgba(0,0,0,.65);
backdrop-filter:blur(15px);

z-index:9999;

}



.logo img{

width:200px;
height:auto;

}



.site-nav{

display:flex;
gap:35px;

}



.site-nav a{

font-size:16px;
text-transform:uppercase;
letter-spacing:1px;

}



.site-nav a:hover{

color:#c9a45c;

}




/* LANGUAGE */


.language-switcher{

display:flex;
gap:8px;

}



.language-switcher button{

background:transparent;

color:white;

border:1px solid #c9a45c;

padding:8px 16px;

border-radius:30px;

font-size:14px;

cursor:pointer;

transition:.3s;

}



.language-switcher button:hover{

background:#c9a45c;
color:#000;

}




/* HERO */


.hero{

height:100vh;

display:flex;
align-items:center;


background:

linear-gradient(
90deg,
rgba(0,0,0,.82),
rgba(0,0,0,.35)
),

url("assets/wedding1.jpg");


background-size:cover;

background-position:center;

}



.hero-content{

max-width:650px;

margin-left:8%;

}



.hero h1{

font-size:72px;

color:#c9a45c;

margin-bottom:10px;

}



.hero h2{

font-size:54px;

line-height:1.1;

margin-bottom:25px;

}



.hero p{

font-size:19px;

color:#ddd;

max-width:600px;

}



.buttons{

margin-top:40px;

display:flex;
gap:20px;
flex-wrap:wrap;

}



.buttons a{

display:inline-block;

padding:15px 35px;

border:1px solid #c9a45c;

border-radius:40px;

font-size:16px;

letter-spacing:.5px;

}



.buttons a:hover{

background:#c9a45c;

color:#000;

}

/* SEKCIJE */


section{

padding:110px 8%;

text-align:center;

}



section h2{

font-size:48px;

color:#c9a45c;

margin-bottom:25px;

}



section p{

max-width:850px;

margin:auto;

font-size:20px;

color:#d6d6d6;

line-height:1.8;

}




/* ABOUT */


#about{

background:#111;

}




/* SERVICES */


.cards{

display:flex;

justify-content:center;

gap:35px;

margin-top:60px;

flex-wrap:wrap;

}



.card{

background:#151515;

width:320px;

padding:45px 35px;

border:1px solid #242424;

border-radius:12px;

transition:.35s;

}



.card:hover{

transform:translateY(-10px);

border-color:#c9a45c;

box-shadow:0 20px 40px rgba(0,0,0,.35);

}



.card h3{

font-size:30px;

color:#c9a45c;

margin-bottom:18px;

}



.card p{

font-size:18px;

color:#ddd;

}




/* PORTFOLIO */


.gallery{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

margin-top:50px;

}



.gallery img{

width:100%;

height:460px;

object-fit:cover;

border-radius:12px;

transition:.4s;

cursor:pointer;

}



.gallery img:hover{

transform:scale(1.03);

}




/* LOCATIONS */


.locations{

background:#111;

}




/* CONTACT */


form{

max-width:650px;

margin:45px auto;

}



input,
textarea,
select{

width:100%;

padding:16px;

margin-bottom:18px;

background:#151515;

border:1px solid #333;

border-radius:8px;

color:white;

font-size:16px;

outline:none;

transition:.3s;

}



input:focus,
textarea:focus,
select:focus{

border-color:#c9a45c;

}



textarea{

height:180px;

resize:none;

}



select{

cursor:pointer;

}



form button{

width:100%;

padding:18px;

background:#c9a45c;

color:#000;

font-weight:600;

font-size:16px;

border:none;

border-radius:8px;

cursor:pointer;

transition:.3s;

}



form button:hover{

background:#ddb86d;

}




/* DRON NAPOMENA */


.drone-note{

font-size:14px;

color:#999;

margin-top:-10px;

margin-bottom:25px;

}




/* USPJESNA PORUKA */


.success-message{

display:none;

margin-top:25px;

color:#c9a45c;

font-size:18px;

text-align:center;

}




/* SOCIAL ICONS */


.social-icons{

display:flex;

justify-content:center;

gap:25px;

margin-top:30px;

}



.social-icons a{

width:52px;

height:52px;

border:1px solid #c9a45c;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

transition:.3s;

overflow:hidden;

}



.social-icons img{

width:24px;

height:24px;

object-fit:contain;

}



/* Facebook korekcija jer je njegova ikonica vizuelno manja */

.social-icons img[alt="Facebook"]{

width:55px;

height:55px;

}



.social-icons a:hover{

background:#c9a45c;

}



.social-icons a:hover img{

filter:brightness(0);

}


/* FOOTER */


footer{

background:#050505;

padding:35px 20px;

text-align:center;

border-top:1px solid #222;

}



.footer-logo img{

width:200px;

max-width:200px;

height:auto;

margin:20px auto;

}



footer p{

color:#999;

font-size:14px;

letter-spacing:1px;

}





/* SCROLLBAR */


::-webkit-scrollbar{

width:10px;

}



::-webkit-scrollbar-track{

background:#111;

}



::-webkit-scrollbar-thumb{

background:#c9a45c;

border-radius:20px;

}



::-webkit-scrollbar-thumb:hover{

background:#d8b56f;

}





/* ANIMACIJE */


.card,
.gallery img,
.buttons a,
.site-nav a,
.language-switcher button{

transition:all .35s ease;

}





@media(max-width:900px){

html{
zoom:1;
}


header{

padding:15px 10px;

flex-direction:column;

gap:12px;

position:relative;

}


.logo img{

width:180px;

}


.site-nav{

display:flex;

flex-wrap:wrap;

justify-content:center;

gap:14px;

}


.site-nav a{

font-size:12px;

}


.language-switcher{

justify-content:center;

}


.language-switcher button{

padding:5px 10px;

font-size:11px;

}


.hero{

padding:140px 25px 80px;

justify-content:center;

text-align:center;

}


.hero-content{

margin:0;

max-width:100%;

}


.hero h1{

font-size:46px;

}


.hero h2{

font-size:34px;

}


.hero p{

font-size:17px;

}


.buttons{

flex-direction:column;

align-items:center;

}


.buttons a{

width:260px;

text-align:center;

}


.cards{

flex-direction:column;

align-items:center;

}


.card{

width:100%;

max-width:360px;

}


.gallery{

grid-template-columns:1fr;

}


.gallery img{

height:340px;

}


section{

padding:80px 25px;

}


form{

width:100%;

}


input,
textarea,
select{

font-size:18px;

}


.social-icons a{

width:48px;

height:48px;

}


.social-icons img{

width:22px;

height:22px;

}


.footer-logo img{

width:180px;

max-width:220px;

}

}