* {
    margin: 0;
    padding: 0;
}
.container {
    width: 100%; 
    background: url(hotelimage2.png); 
    background-position: center;
    background-size: cover;
    height: 100%;
    position: relative;
    font-family: sans-serif;
    padding-bottom: 10px;
}
.menu {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    display: flex;
    margin: auto;
    padding: 10px 0;
    align-items: center;
    justify-content: space-between;
    color: bisque;
}
.menu h3 {
    cursor: pointer;
    margin-left: 3%;
}
ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 16px;
}
ul li a {
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: bisque;
}
ul li a:hover {
    color: rgb(230, 104, 59);
    transition: .4s ease;
}
.hero {
    margin-top: 14%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: bisque;
    padding: 20px;
}
.hero h2 {
    font-size: 60px;
    border-top: 3px solid bisque;
}
.hero p {
    font-size: 18px;
    letter-spacing: 1px;
}
.hero span {
    font-weight: lighter;
}
.hero a {
    text-decoration: none;
    color: #fff;
    background: rgb(36, 32, 30);
    margin: 6px 0;
    padding: 15px 20px;
    border-radius: 10px;
    display: inline-block;
    transition: 0.4s ease;
}
.hero a:hover{
    background: #0c52d3;
}

.info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
    font-size: 16px;
}
.info .offer {
    background-color: rgba(0, 0, 0, 0.7);
    color: bisque;
    text-align: center;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    height: 60px;
}
.info .offer div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.info .offer div h4:first-child {
    border-bottom: 2px solid bisque;
}
.info .book {
    background-color: orange;
    padding: 20px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: bisque;
}
.info .book:hover {
    background-color: #cd8500;
}

@media screen and (max-width: 689px) {
    .menu {
        flex-direction: column;
    }
    .menu h3 {
    margin: 0;
    margin-bottom: 20px;
}

ul li a {
    font-size: 14px;
}
ul {
    gap: 15px;
}
.info {
    font-size: 14px;
}
}

@media screen and (max-width: 530px) {
    .info {
    font-size: 16px;
}
.info, .info .offer {
    flex-direction: column;
}
.info .offer, .info .book {
    height: auto;
    width: 250px;
}
}

@media screen and (max-width: 389px) {
 
ul {
    flex-direction: column;
}

.info, .info .offer {
    flex-direction: column;
}
.info .offer, .info .book {
    height: auto;
    width: 250px;
}
}
