* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial,sans-serif;
    background: #111;
    color: white;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 13px;
}

.hero {
    height: 100vh;
    background: url('../images/hero.png') center center/cover;
    position: relative;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.15);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.left-content {
    max-width: 400px;
}

.left-content h2 {
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 1.8;
}

.line {
    width: 90px;
    height: 2px;
    background: #8a4d4d;
    margin: 40px 0;
}

.btn-header {
    color: white;
    text-decoration: none;
}

.btn-outline {
    display: inline-block;
    margin-top: 50px;
    padding: 18px 0px;
    /* border: 1px solid #8a4d4d; */
    color: white;
    text-decoration: none;
    font-size: 24px;
}

.features {
    background: #151515;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
    padding: 60px;
}

.feature h3 {
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-size: 14px;
}

.feature p {
    color: #aaa;
}