*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}


html{
    scroll-behavior:smooth;
}


body{

    background:#0b0b0b;
    color:white;

}




header{

    position:absolute;
    width:100%;
    top:0;
    left:0;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 8%;

    z-index:10;

}



.logo-area img{

    width:120px;

}



nav a{

    color:white;
    text-decoration:none;

    margin-left:30px;

    font-size:18px;

}



nav a:hover{

    color:#d4af37;

}




.hero{

height:100vh;


background:
linear-gradient(
rgba(0,0,0,0.65),
rgba(0,0,0,0.85)
),
url("images/background.jpg");


background-size:cover;

background-position:center;


display:flex;

justify-content:center;

align-items:center;

text-align:center;


}




.hero-content{

animation:fade 2s;

}



.hero h1{

font-size:70px;

color:#d4af37;

letter-spacing:3px;

}



.hero h2{

font-size:30px;

margin:20px;

font-weight:400;

}



.line{

height:2px;

width:150px;

background:#d4af37;

margin:30px auto;

}



.hero h3{

font-size:45px;

}



.hero p{

font-size:20px;

max-width:600px;

margin:20px auto;

line-height:1.6;

}



.button{

display:inline-block;

padding:15px 35px;

border:1px solid #d4af37;

color:#d4af37;

text-decoration:none;

margin-top:20px;

border-radius:30px;

}



.button:hover{

background:#d4af37;

color:black;

}




.about{

padding:80px 10%;

text-align:center;

background:#111;

}



.about h1,
.contact h1{

font-size:45px;

color:#d4af37;

margin-bottom:30px;

}



.about p{

font-size:20px;

line-height:1.8;

}



.features{

display:flex;

justify-content:center;

gap:30px;

margin-top:50px;

}



.features div{

background:#1a1a1a;

padding:30px;

border-radius:15px;

width:300px;

}



.features h2{

color:#d4af37;

margin-bottom:15px;

}





.contact{

padding:80px 10%;

text-align:center;

}



.contact h2{

font-size:32px;

margin-bottom:20px;

}



.contact p{

font-size:20px;

margin:15px;

}





footer{

background:black;

text-align:center;

padding:20px;

}




@keyframes fade{

from{

opacity:0;

transform:translateY(30px);

}

to{

opacity:1;

transform:translateY(0);

}

}





@media(max-width:768px){


header{

flex-direction:column;

}


nav{

margin-top:15px;

}


.hero h1{

font-size:45px;

}



.hero h3{

font-size:30px;

}



.features{

flex-direction:column;

align-items:center;

}


}