.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

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

.primary-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.primary-nav a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 8%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75));
}

.hero-content {
    position: relative;
    max-width: 600px;
    color: #fff;
}

.hero-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #c4a962;
}

.hero h1 {
    font-size: 3rem;
    margin: 20px 0;
}

.hero-buttons a {
    padding: 12px 25px;
    margin-right: 10px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background: #1e3a5f;
    color: #fff;
}

.btn-secondary {
    border: 1px solid #fff;
    color: #fff;
}
