/* HERO SECTION */

.hero{
    position:relative;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    overflow:hidden;

    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.55)),
    url('https://images.unsplash.com/photo-1513475382585-d06e58bcb0e0?auto=format&fit=crop&w=1800&q=80');

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,
    rgba(212,175,55,.20),
    rgba(255,255,255,.05));
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    color:#fff;
    padding:20px;
}

.tag{
    display:inline-block;
    padding:10px 24px;
    border:1px solid rgba(255,255,255,.3);
    border-radius:50px;
    backdrop-filter:blur(10px);
    margin-bottom:25px;
    font-size:15px;
    letter-spacing:2px;
}

.hero h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:20px;
    font-weight:700;
}

.hero p{
    font-size:22px;
    color:#f5f5f5;
    margin-bottom:40px;
}

.hero-btns{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    text-decoration:none;
    padding:18px 40px;
    border-radius:60px;
    transition:.35s;
    font-weight:600;
}

.btn-primary{
    background:#D4AF37;
    color:#fff;
}

.btn-primary:hover{
    transform:translateY(-6px);
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
}

.btn-secondary:hover{
    background:#fff;
    color:#111;
}