body{
    margin:0;
    padding-top:95px;
    font-family:'Poppins',sans-serif;
    background:#0B1120;
    color:#ffffff;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.btn{
    display:inline-block;
    padding:18px 40px;
    border-radius:50px;
    background:#D4AF37;
    color:#000;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn:hover{
    background:#ffffff;
}

footer{
    background:#09111F;
    text-align:center;
    padding:30px;
}

/* ==================================
   Booking Search
================================== */

.booking-search{
    background:#ffffff;
    padding:80px 0;
}

.booking-search h2{
    text-align:center;
    font-size:40px;
    margin-bottom:40px;
    color:#222;
    font-family:'Playfair Display',serif;
}

.search-form{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.search-form input,
.search-form select{

    width:220px;
    padding:18px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    box-sizing:border-box;
}

.search-form button{

    padding:18px 35px;
    background:#D4AF37;
    border:none;
    border-radius:10px;
    color:#000;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.search-form button:hover{

    background:#c49b1c;
    color:#fff;

}