@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #c19a6f;
  --primary-color-dark: #171717;
  --text-dark: #0c0a09;
  --text-light: #78716c;
  --white: #ffffff;
  --max-width: 1200px;
}

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

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__subheader {
  margin-bottom: 0.5rem;
  position: relative;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-dark);
}

.section__subheader::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(1rem, -50%);
  height: 2px;
  width: 4rem;
  background-color: var(--primary-color);
}

.section__header {
  max-width: 600px;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3rem;
  color: var(--text-dark);
}

.section__description {
  max-width: 600px;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--text-light);
}

img {
  width: 100%;
  display: flex;
}

a {
  text-decoration: none;
}

/* .logo {
  max-width: 120px;
} */

/* Logo styling */
.logo a {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.logo a:hover {
  color: var(--white);
}


html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

.header {
  background-image:linear-gradient(rgba(0, 0, 0, 0.5),
  rgba(0, 0, 0, 0.5)), url("assets/room-1.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.language-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.language-switcher button {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.language-switcher button:hover {
  background: white;
  color: var(--primary-color);
}

nav {
  position: fixed;
  isolation: isolate;
  top: 0;
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  z-index: 9;
}

.nav__bar {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background-color: var(--primary-color-dark);
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  list-style: none;
  position: absolute;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  background-color: rgba(0, 0, 0, 0.904);
  transform: translateY(-100%);
  transition: 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  position: relative;
  isolation: isolate;
  padding-bottom: 8px;
  color: var(--white);
  transition: 0.3s;
}

.nav__btn {
  display: none;
}

.header__container {
  padding-block: 10rem 15rem;
}

.header__container p {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 3.8vw, 1.2rem);
  color: var(--white);
  text-align: center;
  opacity: 0.6;
}

.header__container h1 {
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  text-align: center;
  margin: 0 auto;
  max-width: 20ch;
}

.header__container h2 {
  font-size: clamp(1.35rem, 5vw, 2.4rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
  text-align: center;
  margin: 0 auto;
  max-width: 24ch;
}

.header__container h1 span {
  color: var(--primary-color);
}

.booking__container {
  padding-block: 0;
}

.booking__form {
  padding: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: var(--white);
  border-radius: 10px;
  transform: translateY(-50%);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.input__group {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.input__group span {
  font-size: 1.75rem;
  color: var(--primary-color);
}

.input__group label {
  font-weight: 500;
  color: var(--text-dark);
}

.input__group input {
  display: block;
  width: 100%;
  max-width: 150px;
  padding-block: 5px;
  color: var(--text-dark);
  font-size: 0.9rem;
  outline: none;
  border: none;
}

.input__group input::placeholder {
  color: var(--text-light);
}

.about__container {
  overflow: hidden;
  display: grid;
  gap: 2rem;
}

.about__image img {
  max-width: 450px;
  margin: auto;
  border-radius: 5px;
}

.room__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1rem;
}

.room__card {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.room__card__image {
  position: relative;
  isolation: isolate;
}

.room__card__icons {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 1;
}

.room__card__icons span {
  display: inline-block;
  padding: 2px 8px;
  font-size: 1.5rem;
  background-color: var(--white);
  border-radius: 100%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.room__card__icons span:nth-child(1) {
  color: #f472b6;
}

.room__card__icons span:nth-child(2) {
  color: #c084fc;
}

.room__card__icons span:nth-child(3) {
  color: #60a5fa;
}

.room__card__details {
  padding: 1rem;
}

.room__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.room__card p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.room__card h5 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.room__card h5 span {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.service {
  background-image: url("assets/service.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.service__container {
  padding-block: 0;
  display: grid;

  grid-template-columns: repeat(2, 1fr);
}

.service__content {
  grid-column: 1/3;
  padding: 2rem 4rem;
  background-color: var(--white);
}

.service__list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}

.service__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.service__list span {
  padding: 5px 12px;
  font-size: 1.75rem;
  color: var(--text-dark);
  background-color: var(--text-light);
  border-radius: 100%;
}

.service__list li:nth-child(1) span {
  color: #c19a6f;
  background-color: #171717;
}

.service__list li:nth-child(2) span {
  color: #c19a6f;
  background-color: #171717;
}

.service__list li:nth-child(3) span {
  color: #c19a6f;
  background-color: #171717;
}

.service__list li:nth-child(4) span {
  color: #c19a6f;
  background-color: #171717;
}

.banner__content {
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.banner__card {
  text-align: center;
  flex: 1 1 180px;
}

.banner__card h4 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.banner__card p {
  color: var(--text-light);
}

.explore :is(.section__subheader, .section__header) {
  text-align: center;
  margin-inline: auto;
}

.explore__bg {
  margin-top: 4rem;
  padding-block: 3rem;
  display: grid;
  grid-template-columns:
    minmax(1rem, 1fr)
    minmax(0, var(--max-width))
    minmax(1rem, 1fr);
  background-image: url("assets/explore.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.explore__content {
  grid-column: 2/3;
  max-width: 400px;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.explore__content p {
  margin-bottom: 0.5rem;
}

.explore__content h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5rem;
  color: var(--text-dark);
}

.explore__content .btn {
  color: var(--primary-color);
  background-color: var(--white);
  border: 1px solid var(--primary-color);
}

.explore__content .btn:hover {
  color: var(--white);
  background-color: var(--primary-color);
}

.subpage__header {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url("assets/Sumelahead.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.subpage__header :is(.section__subheader, .section__header, .section__description) {
  color: var(--white);
}

.subpage__header .section__subheader::after {
  background-color: rgba(193, 154, 111, 0.85);
}

.reviews__header {
  background-image: linear-gradient(
      rgba(23, 23, 23, 0.65),
      rgba(23, 23, 23, 0.8)
    ),
    url("assets/reviews.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about__hero {
  padding-block: 10rem 6rem;
  text-align: center;
}

.about__hero .section__header,
.about__hero .section__description {
  margin-inline: auto;
}

.about__hero .section__description {
  max-width: 650px;
}

.story__container {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.story__image img {
  border-radius: 1rem;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.15);
}

.founder__section {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.founder__image img {
  border-radius: 1rem;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.1);
}

.founder__role {
  font-weight: 600;
  color: var(--primary-color);
}

.goals__section {
  text-align: center;
}

.goals__grid {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
}

.goal__card {
  padding: 2rem;
  border-radius: 1rem;
  background-color: var(--white);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  text-align: left;
}

.goal__card h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.tips__header {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.65)
    ),
    url("assets/tipsheader.png");
}

.tips__hero .section__description {
  max-width: 720px;
}

.tips__section {
  text-align: center;
}

.tips__grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.tip__card {
  background-color: var(--white);
  padding: 1.75rem;
  border-radius: 1rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
  text-align: left;
  display: grid;
  gap: 1rem;
}

.tip__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: rgba(193, 154, 111, 0.12);
  color: var(--primary-color);
  font-size: 1.4rem;
}

.guides__section {
  background-color: rgba(193, 154, 111, 0.05);
  border-radius: 1.25rem;
}

.guides__content {
  max-width: 900px;
  margin-inline: auto;
}

.guides__list {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
  text-align: left;
}

.guides__list li {
  padding: 1rem 1.25rem;
  border-radius: 0.85rem;
  background-color: var(--white);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.06);
}

.tips__cta {
  display: grid;
  align-items: center;
}

.tips__cta__card {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1.75rem;
  border-radius: 1rem;
  background-color: var(--text-dark);
  color: var(--white);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.tips__cta__card .section__description {
  color: rgba(255, 255, 255, 0.9);
}

.tips__cta__card .btn {
  justify-self: start;
  background-color: var(--primary-color);
  color: var(--white);
}

.about__btn--center {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.footer {
  background-color: var(--text-dark);
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
}

.footer__col .section__description {
  margin-block: 1.5rem;
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
}

.footer__links {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.footer__links a {
  color: var(--text-light);
  transition: 0.3s;
}

.footer__links a:hover {
  color: var(--white);
}

.reviews__hero {
  padding-block: 10rem 6rem;
  text-align: center;
}

.reviews__hero :is(.section__header, .section__description) {
  margin-inline: auto;
}

.overall-rating {
  margin: 2rem auto 0;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(193, 154, 111, 0.15), rgba(193, 154, 111, 0.35));
  color: var(--primary-color-dark);
  font-weight: 600;
}

.overall-rating__label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: var(--text-light);
}

.destinations__section {
  display: grid;
  gap: 3rem;
}

.destinations__header {
  text-align: center;
}

.destinations__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.destination__card {
  position: relative;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.destination__image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 0.85rem;
  margin-bottom: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
}

.destination__badge {
  position: absolute;
  top: -0.9rem;
  left: 1.25rem;
  background: var(--primary-color);
  color: var(--white);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

.destination__card h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.explore__cta {
  background: linear-gradient(135deg, rgba(63, 112, 255, 0.08), rgba(63, 112, 255, 0.16));
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  display: grid;
  justify-content: center;
}

.explore__cta__content {
  max-width: 720px;
  text-align: center;
  margin-inline: auto;
  display: grid;
  gap: 1rem;
}

.explore__cta .btn {
  justify-self: center;
}

.overall-rating__value {
  font-size: 2.25rem;
  color: var(--primary-color);
}

.overall-rating__scale {
  font-size: 1rem;
  color: var(--text-light);
}

.reviews__hero-btn {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.reviews__hero-btn::after {
  content: "\ea6c";
  font-family: "remixicon";
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.reviews__hero-btn:hover::after {
  transform: translateX(4px);
}

.reviews__intro {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  text-align: left;
}

.reviews__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.reviews__metric {
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  background-color: var(--white);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reviews__metric::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
}

.reviews__metric--google::after {
  background: linear-gradient(135deg, #4285f4, #ea4335);
}

.reviews__metric--booking::after {
  background: linear-gradient(135deg, #003580, #1e90ff);
}

.reviews__metric--tripadvisor::after {
  background: linear-gradient(135deg, #34e0a1, #00a680);
}

.reviews__metric__label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
}

.reviews__metric__value {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--primary-color);
}

.reviews__metric__value small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.reviews__metric__note {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.reviews__summary .section__subheader {
  display: inline-block;
}

.reviews__grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 2rem;
}

.reviews__card {
  padding: 2rem;
  border-radius: 1.2rem;
  background-color: var(--white);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.1);
}

.reviews__card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.reviews__icon {
  font-size: 2rem;
  color: var(--primary-color);
}

.reviews__platform {
  font-weight: 600;
  color: var(--text-dark);
}

.reviews__rating {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reviews__score {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
}

.reviews__stars {
  font-size: 1rem;
  color: var(--text-light);
  letter-spacing: 0.25rem;
}

.reviews__testimonials {
  background-color: #f9f7f4;
}

.reviews__nav {
  margin: 2rem 0 3rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.reviews__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background-color: var(--white);
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.08);
  font-weight: 500;
  color: var(--text-dark);
  transition: transform 0.3s ease, color 0.3s ease;
}

.reviews__nav-link i {
  font-size: 1.25rem;
  color: var(--primary-color);
}

.reviews__nav-link:hover {
  transform: translateY(-2px);
  color: var(--primary-color);
}

.reviews__carousel + .reviews__carousel {
  margin-top: 3rem;
}

.reviews__carousel {
  padding: 2.5rem;
  border-radius: 1.5rem;
  background-color: var(--white);
  box-shadow: 0 2rem 3.5rem rgba(0, 0, 0, 0.08);
  position: relative;
}

.carousel__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.carousel__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.4rem;
  color: var(--text-dark);
}

.carousel__title i {
  font-size: 1.6rem;
  color: var(--primary-color);
}

.carousel__subtitle {
  max-width: 520px;
  color: var(--text-light);
}

.carousel__rating {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--text-dark);
}

.carousel__rating-value {
  font-size: 2rem;
  color: var(--primary-color);
}

.carousel__rating-scale {
  font-size: 1rem;
  color: var(--text-light);
}

.carousel__rating-note {
  margin-left: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
}

.carousel__viewport {
  overflow: hidden;
}

.carousel__track {
  display: grid;
  gap: 2rem;
}

.reviews__carousel.is-carousel .carousel__track {
  display: flex;
  gap: 0;
  transition: transform 0.6s ease;
}

.review__slide {
  padding-right: 0;
}

.reviews__carousel.is-carousel .review__slide {
  min-width: 100%;
  padding-right: 2rem;
}

.review__quote {
  font-size: 1.05rem;
  line-height: 1.8rem;
  color: var(--text-dark);
}

.review__meta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.review__author {
  font-weight: 600;
  color: var(--primary-color-dark);
}

.carousel__controls {
  position: absolute;
  top: 50%;
  left: 1.25rem;
  right: 1.25rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.reviews__carousel.is-carousel .carousel__controls {
  display: flex;
}

.carousel__control {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.12);
  color: var(--primary-color-dark);
  font-size: 1.5rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  pointer-events: all;
  transition: transform 0.3s ease, background 0.3s ease;
}

.carousel__control:hover {
  transform: scale(1.05);
  background: var(--primary-color);
  color: var(--white);
}

.carousel__indicators {
  margin-top: 1.75rem;
  display: none;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.reviews__carousel.is-carousel .carousel__indicators {
  display: flex;
}

.carousel__indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(12, 10, 9, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.carousel__indicator.active {
  transform: scale(1.2);
  background: var(--primary-color);
}

.footer__socials {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__socials img {
  max-width: 25px;
  opacity: 0.8;
  transition: 0.3s;
}

.footer__socials img:hover {
  opacity: 1;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

@media (max-width: 576px) {
  .section__header {
    font-size: 1.9rem;
    line-height: 2.4rem;
  }

  .subpage__header .section__header {
    font-size: 2.1rem;
    line-height: 2.6rem;
  }

  .section__subheader {
    letter-spacing: 1.4px;
  }

  .section__description {
    font-size: 0.98rem;
  }

  .reviews__hero {
    padding-block: 8rem 5rem;
  }
}

@media (width > 576px) {
  .room__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 768px) {
  nav {
    padding: 2rem 1rem;
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav__bar {
    padding: 0;
    background-color: transparent;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    padding: 0;
    width: unset;
    position: static;
    transform: none;
    flex-direction: row;
    background-color: transparent;
  }

  .nav__btn {
    display: block;
  }

  .nav__links a::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: var(--primary-color);
    transition: 0.3s;
    transform-origin: left;
  }

  .nav__links a:hover::after {
    width: 100%;
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .story__container,
  .founder__section {
    grid-template-columns: repeat(2, 1fr);
  }

  .goals__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews__intro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .reviews__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .carousel__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .carousel__rating {
    margin-left: auto;
  }

  .review__slide {
    padding-right: 5rem;
  }

  .room__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service__content {
    grid-column: 2/3;
  }

  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (width > 1024px) {
  .room__grid {
    gap: 2rem;
  }

  .goals__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

[data-translate="comfort"] {
  white-space: pre-line;
}

