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

body{
    font-family: DM-Serif-Display, Inter;
}

.site-header{
    width: 100%;
    padding: 18px 20px;
    position: absolute;
    top:0;
    left: 0;
    z-index: 10;
}

.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100% ;
}

.nav-list{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list a{
    text-decoration: none;
    color: #FFFFFF;
    font-size: 18px;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-list a:hover{
    color: #d6b27a;
    opacity: 0.9;
}

.nav-list a.active{

    font-weight: bold;
}

.header--transparent{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.868), rgba(43, 42, 42, 0.08), transparent);

}



#hero {
    height: 100vh;
    background: url('../images/heroimages.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: white;
    padding: 0 80px;
    position: relative;
}

#hero::before{
    content: "";
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.25),
        rgba(0, 0, 0, 0.4)
    );

    z-index: 1;
}
.hero-content{
    max-width: 700px;
    margin-top: 500px;
    position: relative;
    z-index: 2;
    
}

.hero-content h1{
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero-content p{
    font-size: 20px;
    line-height: 1.5;
    max-width: 620px;
}

.logo img{
    display: block;
    height: 80px;
}

.header--solid{
    position: relative;
    background: linear-gradient(to bottom, #302323 75%, #FFFFFF)
}