*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#000;
}

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px;

    color:white;
}

.logo{
    font-size:1.4rem;
    font-weight:700;
}

.logo span{
    color:#d4a64d;
}

.menu-btn{
    background:none;
    border:none;
    color:white;
    font-size:2rem;
}

.nav-links{
    display:none;
}

.hero{
    height:100vh;
    position:relative;
    overflow:hidden;
}

.hero-video{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.35),
        rgba(0,0,0,.60)
    );
}

.hero-content{
    position:relative;
    z-index:2;

    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:30px;

    color:white;
}

.hero-tag{
    color:#d4a64d;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:3rem;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    max-width:500px;
    font-size:1rem;
    line-height:1.6;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.btn-primary,
.btn-secondary{
    text-decoration:none;
    text-align:center;
    padding:16px;
    border-radius:8px;
}

.btn-primary{
    background:#d4a64d;
    color:white;
}

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