* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    color: white;
    background: black;
    overflow-x: hidden;
}
header {
    position: fixed;
    width: 100%;
    height: 80px;
    background: rgba(10,10,10,0.6);
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    z-index: 1000;
}
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 80px;
    background: linear-gradient(to right, #000000cc, #00000000), url('https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D')
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    margin-bottom: 20px;
}
.hero-content p {
    max-width: 500px;
    margin-bottom: 30px;
    color: #bbb;
}
.btn {
    padding: 14px 32px;
    border: 1px solid gold;
    color: gold;
    text-decoration: none;
    transition: 0.3s;
}
.btn:hover {
    background: gold;
    color: black;
}
nav a {
    color: #ccc;
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
    transition: 0.3s;
}
nav a:hover {
    color: gold;
}