@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Raleway:wght@500&family=Yantramanav:wght@400;700&display=swap");
body {
  background-image: url(../img/fone.jpg);
  background-position: center;
  background-size: cover;
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

input, button, textarea {
  outline: none;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  color: white;
  font-family: "Saira Extra Condensed";
}

.container {
  width: 1150px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .container {
    width: 900px;
  }
}
@media (max-width: 950px) {
  .container {
    width: 100%;
    padding: 0px 15px;
  }
}

nav .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px 0px;
  row-gap: 20px;
}
@media (max-width: 800px) {
  nav .container .logo {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}
nav .container .logo a {
  transition: 0.3s;
}
nav .container .logo a img {
  transition: 0.3s;
}
nav .container .logo a:hover img {
  filter: drop-shadow(0px 0px 5px black);
}
nav .container .links {
  padding: 0px 15px;
  margin: auto 0px;
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 800px) {
  nav .container .links {
    width: 100%;
    justify-content: center;
  }
}
nav .container .links a {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 31px;
  text-decoration: none;
  padding: 15px 0px;
  transition: 0.3s;
}
@media (max-width: 600px) {
  nav .container .links a {
    width: 100%;
    text-align: center;
  }
}
nav .container .links a:last-child {
  padding: 15px 30px;
  background-color: rgb(255, 159, 165);
  border-radius: 8px;
}
nav .container .links a:hover {
  text-shadow: 0px 0px 10px black;
}

.banner {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)), url("../img/banner.jpg");
  background-size: cover;
  background-position: center;
  padding: 150px 0px;
  text-align: center;
}
.banner h1 {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 57px;
  color: #FFFFFF;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.banner h2 {
  margin-top: 10px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
  color: #FF9FA5;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.first {
  background-image: url("../img/1.jpg");
}

.second {
  background-image: url("../img/2.jpg");
}

.third {
  background-image: url("../img/3.jpg");
}

.hotel {
  width: 1250px;
  margin: 0 auto;
  margin-top: 60px;
  background-size: cover;
  background-position: center;
  border-radius: 17px;
  box-shadow: 0px 0px 10px 0px black;
}
@media (max-width: 1300px) {
  .hotel {
    width: 900px;
  }
}
@media (max-width: 950px) {
  .hotel {
    width: 95%;
  }
}
.hotel .text {
  width: 50%;
  padding: 30px 15px;
  background: rgba(85, 50, 53, 0.7);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  text-align: center;
  border-radius: 17px;
  box-sizing: border-box;
}
@media (max-width: 1300px) {
  .hotel .text {
    width: 70%;
  }
}
@media (max-width: 600px) {
  .hotel .text {
    width: 100%;
  }
}
.hotel .text h2 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  color: #FF9FA5;
}
.hotel .text h2:not(:first-child) {
  margin-top: 20px;
}
.hotel .text p {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  padding-top: 8px;
}
.hotel .text p b {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.message .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
  margin-bottom: 80px;
  row-gap: 40px;
}
.message .container .text {
  margin: auto 0;
  width: 48%;
}
@media (max-width: 600px) {
  .message .container .text {
    width: 100%;
  }
}
.message .container .text h3 {
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  color: #FF9FA5;
}
.message .container .text p {
  margin-top: 20px;
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 54px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
}
.message .container form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
  width: 48%;
}
@media (max-width: 600px) {
  .message .container form {
    width: 100%;
  }
}
.message .container form input {
  box-sizing: border-box;
  width: 45%;
  padding: 20px;
  background-color: transparent;
  border: 3px solid white;
  border-radius: 10px;
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: white;
}
@media (max-width: 600px) {
  .message .container form input {
    width: 100%;
  }
}
.message .container form input::-moz-placeholder {
  color: white;
}
.message .container form input::placeholder {
  color: white;
}
.message .container form .w100 {
  width: 100%;
}
.message .container form textarea {
  width: 100%;
  box-sizing: border-box;
  height: 150px;
  padding: 20px;
  background-color: transparent;
  border: 3px solid white;
  border-radius: 10px;
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: white;
}
.message .container form textarea::-moz-placeholder {
  color: white;
}
.message .container form textarea::placeholder {
  color: white;
}
.message .container form button {
  transition: 0.3s;
  font-family: "Yantramanav";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  padding: 16px 60px;
  background-color: rgb(255, 159, 165);
  border-radius: 8px;
}
.message .container form button:hover {
  transition: 0.3s;
  cursor: pointer;
  text-shadow: 0px 0px 8px black;
  box-shadow: inset 0px 0px 10px gray;
  background-color: rgb(235, 139, 145);
}