

/**/
.bookinginfo {
    display: flex;
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    color: hsl(0, 0%, 100%); 
    margin-top: 60px;
    overflow: hidden;
    
    background-image: url('../images/booking/booking_bg2.jpg');
    background-size: cover; 
    background-position: center bottom;
    background-repeat: no-repeat;
}
.bookcolumn1 {
    flex: 1;
    padding: 20px; 
    display: flex;
    justify-content: center; 
    align-items: center; 
}

.contact-container{
    height: auto;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
}

.contact-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 15px;
}

.contact-left-title{
    font-weight: 600;
    color: #f4eef5;
    font-size: 40px;
    margin-bottom: 5px;
}

.contact-left-title hr{
    border: none;
    width: 120px;
    height: 5px;
    background-color: #f4eef5;
    border-radius: 10px;
    margin-bottom: 10px;
}
.contact-inputs{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 25px;
}
.contact-left textarea {
    height: 140px;
    border-radius: 20px;
    padding: 20px;
}
.contact-inputs:focus{  border: 2px solid #ff994f;}
.contact-inputs:placeholder{ color: #a9a9a9; }
.contact-left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg,#d89b6f,#cc6826);
    cursor: pointer;
}
.contact-left button img{    height: 15px;}

.bookcolumn2 {
    flex: 1;
    padding-top: 75px;
    display: flex;
    padding: 20px;
    background-color: none;
    align-items: center;
    justify-content: center; 
}

.bookcol2container {
    height: 75%;
    width: 80%;
    box-sizing: border-box;
    border-radius: 10px; 
    overflow: hidden;
}

.bookcol2container img {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1200px) {
    .bookcolumn2 {  padding: 10px;   }
}
@media screen and (max-width: 1120px) {
    .bookcol2container { height: 60%;}
}

@media screen and (max-width: 1000px) {
    .bookcolumn2 {  padding: 0px;   }
    .bookcol2container { height: 50%;}
}

@media screen and (max-width: 950px) {
    .bookcolumn2 {  display: none;  }
}

@media screen and (max-width: 450px) {
    .contact-inputs{ width: 350px;}
}
@media screen and (max-width: 400px) {
    .contact-inputs{ width: 300px;}
}

@media screen and (max-width: 350px) {
    .contact-left-title{  font-weight: 600;  font-size: 35px;}
    .contact-inputs{ width: 280px;}
}
@media screen and (max-width: 320px) {
    .contact-left-title{  font-weight: 500;  font-size: 30px;}
    .contact-inputs{ width: 260px;}
}
@media screen and (max-width: 300px) {
    .contact-left-title{  font-weight: 400;  font-size: 28px;}
    .contact-inputs{ width: 240px;}
}