body {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #0f0f0f;
    color: #f5f5f5;
}

header {
    position: absolute;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.6);
}

header h1 {
    margin: 0;
    color: #c8a45d;
    font-size: 24px;
}

nav a {
    color: white;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
}

.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    background: #c8a45d;
    padding: 14px 35px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    border-radius: 5px;
}

.section {
    padding: 100px 20px;
    text-align: center;
    background: #141414;
}

.section h2 {
    color: #c8a45d;
    margin-bottom: 20px;
}

footer {
    background: #000;
    text-align: center;
    padding: 30px;
    font-size: 14px;
}
