.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1800&q=80");

    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}

.hero-content{
    max-width:850px;
    padding:20px;
}

.hero h1{
    font-family:'Playfair Display',serif;
    font-size:70px;
    margin-bottom:20px;
    line-height:1.1;
}

.hero p{
    font-size:22px;
    margin-bottom:40px;
    color:#f1f1f1;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#D4AF37;
    color:#000;
    padding:16px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
}

.btn-primary:hover{
    background:#fff;
}

.btn-secondary{
    border:2px solid white;
    color:white;
    padding:16px 35px;
    border-radius:40px;
    text-decoration:none;
}

.btn-secondary:hover{
    background:white;
    color:black;
}