* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #111;
    color: #fff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    background: rgba(0,0,0,0.95);
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
  height: 60px;
}

.logo h1 {
    color: #d4af37;
    font-size: 22px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    transition: 0.3s;
    font-weight: 500;
}

nav a:hover {
    color: #d4af37;
}

.hero {
    position: relative;
    height: 90vh;
    background:
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
        url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 54px;
    max-width: 700px;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    max-width: 650px;
}