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

body{
    background: linear-gradient(to bottom, #000000, #111111);
    color:white;
    min-height:100vh;
    font-family:'Montserrat', sans-serif;
}

/* HEADER */

header{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:30px 60px;
}

.logo-text{
    color:#d4af37;
    font-size:32px;
    font-family:'Cormorant Garamond', serif;
    letter-spacing:3px;
}

nav{
    display:flex;
    gap:40px;
}

nav a{
    text-decoration:none;
    color:white;
    font-size:15px;
    transition:0.3s;
}

nav a:hover{
    color:#d4af37;
}

/* HERO */

.hero{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;

    padding:60px 20px;
}

.logo{
    width:260px;
    margin-bottom:30px;

    filter: drop-shadow(0px 0px 15px rgba(212,175,55,0.4));
}

h1{
    font-size:110px;
    font-family:'Cormorant Garamond', serif;
    font-weight:400;
    letter-spacing:6px;

    background: linear-gradient(to right, #ffffff, #d4af37);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    margin-bottom:15px;
}

.subtitle{
    color:#d4af37;
    font-size:34px;
    font-family:'Cormorant Garamond', serif;

    margin-bottom:30px;
}

.description{
    max-width:650px;
    font-size:18px;
    line-height:1.8;

    color:#cccccc;

    margin-bottom:40px;
}

button{
    background:transparent;
    color:#d4af37;

    border:1px solid #d4af37;

    padding:18px 45px;

    font-size:14px;
    letter-spacing:2px;

    cursor:pointer;

    transition:0.4s;
}

button:hover{
    background:#d4af37;
    color:black;

    transform:scale(1.05);
}

/* RESPONSIVE */

@media(max-width:900px){

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

    nav{
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    h1{
        font-size:60px;
    }

    .subtitle{
        font-size:24px;
    }

    .logo{
        width:180px;
    }

}