@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap");

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

h1 {
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  font-weight: 500;
  line-height: 1.2;
}

p {
  margin: 10px 0;
}

img {
  width: 100%;
  height: 100%;
}

/* HOME PAGE */

/* WELCOME SECTION */

.showcase {
  background: url("../img/index/showcase.jpg") no-repeat center center/cover;
  height: 100vh;
  color: #fff;
}

.showcase .showcase-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.125rem;
  color: #fff;
  height: 100%;
}

.showcase .showcase-content h1 {
  font-size: 4rem;
}

.showcase .showcase-content p {
  font-size: 1.438rem;
  max-width: 37.5rem;
  margin: 1.25rem 0 1.875rem;
}

/* FACILITIES PROVIDED */

.features {
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  height: 100%;
}

.features > div {
  padding: 3rem 1.7rem;
}

/* ABOUT US PAGE */

/* ABOUT THE HOTEL */

.about-columns {
  padding: 5rem 4.5rem 1.2rem;
}

.about-columns .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.about-columns .column-1 {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 2;
}

.about-columns .column-2 {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}

.about-columns .column-1 .about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}

.about-columns .column-2 .about-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.about-columns h1 {
  font-size: 2.5rem;
}

.about-columns p {
  margin: 1.25rem 0;
}

.about-columns .column-2 img {
  border-radius: 50%;
}

.about-columns .column-1 {
  padding-right: 2rem;
}
/* GUEST REVIEWS */

.container {
  padding: 0 4rem;
}

#testimonials {
  height: 100%;
  background: url("../img/about/bg-about.jpg") no-repeat center center/cover;
  padding-top: 6.25rem;
}

#testimonials h2 {
  color: #fff;
  text-align: center;
  padding-bottom: 2.5rem;
}

.testimonial img {
  width: 6.25rem;
  float: left;
  margin-right: 1.25rem;
  border-radius: 50%;
}

.testimonial {
  padding: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  height: 8.4rem;
}

/* WEB DESIGNER */

.web-designer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 2rem;
}

.web-designer img {
  width: 30%;
  height: 40%;
  border-radius: 50%;
}

/* BOOKINGS  PAGE*/

.choice-container {
  margin: 1rem 12rem 2.25rem;
}

.choice-container .form-wrap {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
}

.choice-container .form-wrap .form-group {
  padding-right: 0.3rem;
  padding-top: 0.4rem;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: space-between;
}

.choice-container .form-wrap .form-group label {
  padding-right: 0.7rem;
  font-size: 1.2rem;
  font-weight: 590;
}

.choice-container .form-wrap .form-group input,
.choice-container .form-wrap .form-group select {
  border: 1px solid #9ba2a6;
  border-radius: 2px;
  padding: 0.4rem;
  font-size: 1.2rem;
}

.choice-container .form-wrap .form-group input:focus,
.choice-container .form-wrap .form-group select:focus {
  outline: none;
  border-color: #f7c08a;
}

/* ROOMS SELECTION */

.border {
  border-top: 1px #9ba2a6 solid;
}

.rooms-selection {
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.rooms-selection img {
  width: 100%;
  height: 12.069rem;
}

.rooms-selection .grid {
  flex: 33.3%;
}

.rooms-selection > .grid {
  padding: 2rem 1rem;
}

.rooms-selection .grid h4 {
  font-size: 1.3rem;
}

#apply-button {
  padding: 0.8rem 3.5rem;
  font-size: 1.1rem;
}

.apply-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
}

/* REGISTERATION FORM */

.modal-content h3 {
  padding: 0.2rem 0 0.1rem 0;
}

.modal-content .group .form {
  padding-bottom: 5px;
  padding-right: 1rem;
}

.modal-content .group {
  display: flex;
  justify-content: start;
}

.modal-content .group .form label {
  display: block;
  padding: 5px 0 3px 0;
  font-weight: 500;
}

.modal-content .address-2 {
  padding-top: 2rem;
}

.modal-content input,
.modal-content select {
  border: 1px solid #9ba2a6;
  border-radius: 3px;
  padding: 0.5rem 0.4rem;
  font-size: 0.9rem;
}

.modal-content textarea {
  border: 1px solid #9ba2a6;
  border-radius: 3px;
  padding: 0.6rem;
  font-size: 1.2rem;
  resize: none;
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
  outline: none;
  border-color: #f7c08a;
}

.modal-content .register-btn {
  padding-top: 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* CONTACT PAGE */

#contact-form {
  padding-top: 5rem;
}

.form-group {
  margin-bottom: 20px;
}

#contact-form label {
  display: block;
  margin-bottom: 5px;
}

#contact-form input,
#contact-form textarea {
  padding: 10px;
  width: 70%;
  border: 1px #ddd solid;
}

textarea {
  height: 200x;
  resize: none;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: #f7c08a;
}

/* FOOTER */

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 9rem;
}

.footer a {
  color: #333;
}

.footer a:hover {
  color: #ffbf80;
}

.footer .social > * {
  margin-right: 1.875rem;
}
