:root{
--navy:#0B1C2D;
--gold:#C6A85A;
--text:#EDEDED;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
background:var(--navy);
color:var(--text);
font-family:'Inter',sans-serif;
line-height:2;
}

.container{
width:86%;
max-width:1000px;
margin:auto;
}

header{
padding:60px 0 40px 0;
display:flex;
justify-content:space-between;
align-items:center;
border-bottom:1px solid rgba(198,168,90,0.08);
}

.logo img{
height:45px;
width:auto;
}

nav a{
margin-left:60px;
text-decoration:none;
color:var(--text);
font-size:11px;
letter-spacing:2px;
text-transform:uppercase;
opacity:0.7;
position:relative;
}

nav a::after{
content:'';
position:absolute;
width:0;
height:1px;
background:var(--gold);
left:0;
bottom:-10px;
transition:0.4s;
}

nav a:hover{
opacity:1;
}

nav a:hover::after{
width:100%;
}

.hero{
position:relative;
padding:220px 0 160px 0;
max-width:680px;
background-image:url('../images/VIC-BG1.webp');
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(11,28,45,0.65);
z-index:1;
}

.hero > *{
position:relative;
z-index:2;
}


h1{
font-family:'Playfair Display',serif;
font-size:60px;
font-weight:500;
line-height:1.15;
margin-bottom:50px;
}

h2{
font-family:'Playfair Display',serif;
font-size:28px;
font-weight:500;
margin-bottom:20px;
}

.section{
padding:160px 0;
max-width:600px;
}

.divider{
width:50px;
height:1px;
background:var(--gold);
margin:35px 0 50px 0;
opacity:0.6;
}

p{
font-size:15px;
opacity:0.85;
}

.label{
text-transform:uppercase;
letter-spacing:2px;
font-size:10px;
opacity:0.5;
margin-top:30px;
}

.price{
font-size:30px;
margin:8px 0 40px 0;
}

.btn{
display:inline-block;
margin-top:60px;
padding:12px 34px;
border:1px solid var(--gold);
color:var(--gold);
text-decoration:none;
font-size:11px;
letter-spacing:2px;
text-transform:uppercase;
transition:0.3s;
}

.btn:hover{
background:var(--gold);
color:var(--navy);
}

footer{
padding:120px 0;
font-size:10px;
opacity:0.4;
border-top:1px solid rgba(198,168,90,0.08);
margin-top:120px;
}

@media(max-width:768px){

header{
flex-direction:column;
gap:25px;
}

nav a{
margin:0 15px;
}

.hero{
padding:140px 0 100px;
}

h1{
font-size:40px;
}

.section{
padding:120px 0;
}

}




/* MOBILE MENU */

.menu-toggle{
display:none;
font-size:11px;
letter-spacing:2px;
text-transform:uppercase;
cursor:pointer;
opacity:0.7;
}

.menu-toggle:hover{
opacity:1;
}

/* Default nav */
nav{
display:flex;
}

/* Mobile */
@media(max-width:768px){

.menu-toggle{
display:block;
}

nav{
position:absolute;
top:100px;
left:0;
width:100%;
background:#0B1C2D;
flex-direction:column;
align-items:center;
padding:40px 0;
display:none;
border-top:1px solid rgba(198,168,90,0.1);
}

nav a{
margin:15px 0;
}

nav.active{
display:flex;
}

header{
position:relative;
flex-direction:row;
justify-content:space-between;
}

.hero{
padding:120px 0 80px 0;
}

h1{
font-size:38px;
line-height:1.2;
}

.section{
padding:100px 0;
}

}