.hero{
   min-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;
    width:100%;
    padding:20px;
    box-sizing:border-box;
}

.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{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    background:#D4AF37;
    color:#000;
    padding:16px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    box-sizing:border-box;
    transition:.3s;
}

.btn-primary:hover{
    background:#fff;
}

.btn-secondary{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    border:2px solid white;
    color:white;
    padding:16px 35px;
    border-radius:40px;
    text-decoration:none;
    box-sizing:border-box;
    transition:.3s;

}

.btn-secondary:hover{
    background:white;
    color:black;
}/* ==========================================
   HERO RESPONSIVE
========================================== */

@media(max-width:992px){

.hero{

min-height:90vh;
padding:120px 20px 80px;

}

.hero-content{

max-width:700px;

}

.hero h1{

font-size:52px;

}

.hero p{

font-size:20px;

}

}

@media (max-width:768px){

.hero{

    min-height:100vh;
    padding:140px 18px 70px;
    box-sizing:border-box;

}

.hero-content{

    width:100%;
    max-width:100%;
    padding:0;

}

.hero h1{

    font-size:36px;
    line-height:1.25;
    margin-bottom:18px;

}

.hero p{

    font-size:17px;
    line-height:1.8;
    margin-bottom:35px;
    padding:0 6px;

}

.hero-buttons{

    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;

}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary{

    width:calc(100% - 30px);
    max-width:360px;
    min-height:56px;
    padding:16px 20px;
    margin:0 auto;

}

}

@media (max-width:480px){

.hero{

    padding:130px 16px 60px;

}

.hero h1{

    font-size:30px;

}

.hero p{

    font-size:15px;

}

}