@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;1,400&display=swap");

/* #957554 */
* {
  margin: 0;
  padding: 0;
  font-family: Ubuntu, sans-serif;
}

html {
  scroll-behavior: smooth;
}

.header {
  background: black;
  display: flex;
  flex-direction: column;
}

.header .logo {
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .logo img {
  width: 150px;
  height: 100%;
}

.header .menu {
  display: flex;
  /* height: 100px; */
  justify-content: center;
  align-items: center;
}
.menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}
.menu ul li {
  margin: 7px 12px;
  position: relative;
  color: #957554;
  cursor: pointer;
  transition: 0.3s;
}
.menu ul li::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: 0.3s;
  bottom: 0;
  left: 0;
}
.menu ul li:hover:before {
  width: 100%;
}
.menu ul li:hover {
  color: white;
}
ul a {
  margin: 0px 15px;
}
.hero {
  height: 790px;
  background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.14),
      #dfaa5b6a
    ),
    url("./hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-info h1 {
  font-size: 70px;
  font-weight: 700;
  color: #ffffff;
  line-height: 106px;
  letter-spacing: 0em;
}

.hero-info p {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0em;
  color: #ffffff;
}

.button {
  height: 76px;
  width: 371px;
  border-radius: 10px;
  background-color: #dfaa5b;
  color: #ffffff;
  transition: 0.3s;
  border: 1px solid #dfaa5b;
}
.button:hover {
  background: white;
  color: #dfaa5b;
}

.about-section {
  height: 289px;
  position: relative;
}

.about-card {
  height: 100%;
  width: 80%;
  border-radius: 10px;
  position: absolute;
  top: -50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
  background-color: white;
}

.facilities-info {
  margin-top: 30px;
}
.facilities-info h2 {
  font-family: "Ubuntu", sans-serif;
  font-size: 45px;
  font-weight: 500;
  line-height: 52px;
  color: #957554;
  letter-spacing: 0em;
}

.facilities-imgs {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.facility-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.room-info {
  display: flex;
  justify-content: center;
  align-items: center;
}

.room-info h2 {
  font-family: "Ubuntu", sans-serif;
  font-size: 45px;
  font-weight: 500;
  line-height: 52px;
  letter-spacing: 0em;
  color: #957554;
}

.room-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  justify-content: center;
}

.room-card {
  height: 450px;
  width: 500px;
  border-radius: 10px;
  position: relative;
}

.room-card img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.card-info {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  color: white;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 7.48%,
    #9574548a 100%
  );
  height: 450px;
  z-index: 10;
  top: 0;
}

.contact-section {
  display: flex;
  flex-direction: column;
}
.contact-section h2 {
  text-align: center;
  font-family: "Ubuntu", sans-serif;
  color: #957554;
  font-size: 45px;
  font-weight: 500;
  line-height: 52px;
  letter-spacing: 0em;
  margin: 20px;
}
.cards-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 25px;
  padding: 25px 0px;
}

.card-contact {
  height: 250px;
  border: 2px solid #957554;
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  border-radius: 14px;
}

.card-contact span {
  font-size: 23px;
  color: #957554;
  margin-bottom: 30px;
}
.card-contact h3 {
  color: #007aff;
}

.card-contact h3:hover {
  cursor: pointer;
  text-decoration: underline;
}

.footer footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
.footer {
  padding: 25px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
