@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #0f1a2c;
  --secondary-color: #f6ac0f;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --extra-light: #f8fafc;
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: "Playfair Display", serif;
}

* {
  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;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.section__header {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--text-dark);
}

.section__description {
  margin-top: 1rem;
  color: var(--text-light);
}

.btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  color: var(--white);
  background-color: var(--secondary-color);
  outline: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.section__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section__nav span {
  padding: 10px 15px;
  font-size: 1.25rem;
  border-radius: 2px;
  cursor: pointer;
  transition: 0.3s;
}

.section__nav span:hover {
  background-color: var(--secondary-color);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 2px;
}

.logo div {
  padding-inline: 12px;
  font-size: 2rem;
}

img,
video {
  width: 100%;
  display: flex;
}

a {
  text-decoration: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #F5F1E6;
}

nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  z-index: 9;
}

.nav__bar {
  position: relative;
  isolation: isolate;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}

.nav__header {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--extra-light);

}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

.nav__links {
  list-style: none;
  position: absolute;
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  background-color: var(--white);
  transform: translateY(-100%);
  transition: 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  color: var(--text-light);
  transition: 0.3s;
}

.nav__links a:hover {
  color: var(--secondary-color);
}

/* ================================
   Base - Desktop First
================================= */
.header.parallax {
  height: 100vh;
  position: relative;
  padding-block: 5rem;
  background: linear-gradient(rgba(15, 26, 44, 0.6), rgba(15, 26, 44, 0.6)),
    url("assets/Hotel3.png") center/cover fixed no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Subheader */
.section-subheader {
  color: #fff;
  font-size: 1.25rem;
}

/* Animated heading */
#animated-text {
  margin-top: 10px;
  line-height: 1.3;
  color: #fff;
  letter-spacing: 3px;
  font-family: var(--header-font, 'Poppins', sans-serif);
}

/* ================================
   Responsive Typography
================================= */
/* Mobile phones like iPhone SE */
@media (max-width: 400px) {
  #animated-text {
    font-size: 20px;       /* smaller for narrow screens */
    line-height: 1.4;
    letter-spacing: 1px;
    display: block;
    white-space: pre-line; /* keeps line breaks */
  }
}

@media (max-width: 576px) {
  #animated-text {
    font-size: 25px;
    letter-spacing: 1.5px;
    display: block;
    white-space: pre-line;
    /* respects line breaks */
  }
}

@media (max-width: 576px) {
  #animated-text {
    font-size: 25px;
    letter-spacing: 1.5px;
  }

  .section-subheader {
    font-size: 0.95rem;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  #animated-text {
    font-size: 25px;
    letter-spacing: 2px;
  }

  .section-subheader {
    font-size: 1.05rem;
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  #animated-text {
    font-size: 25px;
  }
}

@media (min-width: 1200px) {
  #animated-text {
    font-size: 4.5rem;
  }
}

/* ================================
   Letter animation
================================= */
.letter {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  display: inline-block;
  animation: fadeInUp 0.6s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ================================
   Buttons
================================= */
.btn-trendy {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 22px 50px;
  margin-top: 60px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.5px;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  /* balanced for all screens */
}

/* Hotel button */
.btn-hotel {
  background: linear-gradient(135deg, #7B011E, #B83256);
  color: #fff;
}

.btn-hotel:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 22px rgba(123, 1, 30, 0.4);
}

/* Travel button */
.btn-travel {
  background: linear-gradient(135deg, #004E92, #4286f4);
  color: #fff;
}

.btn-travel:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 22px rgba(0, 78, 146, 0.4);
}

/* Button icon */
.btn-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* ================================
   Mobile & Tablet Adjustments
================================= */
@media (max-width: 576px) {
  .btn-trendy {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 14px 18px;
    margin-top: 40px;
  }

  .button-group {
    flex-direction: column;
    gap: 20px;
  }
}

@media (min-width: 577px) and (max-width: 992px) {
  .btn-trendy {
    padding: 18px 36px;
    font-size: 1.1rem;
  }

  .button-group {
    gap: 30px;
  }
}


/* Scroll down styles */
.scrolldown {
  --color: white;
  --sizeX: 30px;
  --sizeY: 50px;
  position: absolute;
  /* ⬅️ instead of relative */
  bottom: 40px;
  /* ⬅️ move it down */
  left: 50%;
  transform: translateX(-50%);
  width: var(--sizeX);
  height: var(--sizeY);
  border: calc(var(--sizeX) / 10) solid var(--color);
  border-radius: 50px;
  cursor: pointer;
}

.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: var(--color);
  border-radius: 100%;
  animation: scrolldown-anim 2s infinite;
  box-shadow: 0px -5px 3px 1px #2a547066;
}

@keyframes scrolldown-anim {
  0% {
    opacity: 0;
    height: 6px;
  }

  40% {
    opacity: 1;
    height: 10px;
  }

  80% {
    transform: translate(0, 20px);
    height: 10px;
    opacity: 0;
  }

  100% {
    height: 3px;
    opacity: 0;
  }
}

.chevrons {
  padding: 6px 0 0 0;
  margin-left: -3px;
  margin-top: 70px;
  /* ⬅️ increased from 48px */
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.chevrondown {
  margin-top: -6px;
  position: relative;
  border: solid var(--color);
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}

.chevrondown:nth-child(odd) {
  animation: pulse54012 500ms ease infinite alternate;
}

.chevrondown:nth-child(even) {
  animation: pulse54012 500ms ease infinite alternate 250ms;
}

@keyframes pulse54012 {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.5;
  }
}


/* Loader wrapper */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F5F1E6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 1s ease, visibility 1s ease;
  text-align: center;
  /* helps center on mobile */
  padding: 0 20px;
  /* breathing space on smaller screens */
}

/* Hide loader */
.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Luxury text */
.loader-text {
  font-family: "Brush Script MT", cursive;
  font-size: clamp(3rem, 8vw, 6rem);
  /* responsive font size */
  color: #7B011E;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 2s ease forwards;
  animation-delay: 0.5s;
}

/* Sub-header text */
.loader-subtext {
  font-family: 'Great Vibes', cursive;
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2rem);
  /* responsive font size */
  color: #7B011E;
  letter-spacing: 1.5px;
  opacity: 0;
  transform: translate(40px, 20px);
  /* elegant offset */
  animation: fadeUp 2s ease forwards;
  animation-delay: 1.2s;
  align-self: flex-end;
  /* shifts slightly right without fixed margin */
  margin-right: 550px;
  /* control distance from right */
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dividers */
.loader-divider {
  width: 0;
  height: 4px;
  background: #7B011E;
  margin: 20px 0;
  animation: loaderGrowLine 2s ease forwards;
}

.loader-divider.top {
  animation-delay: 0s;
}

.loader-divider.bottom {
  animation-delay: 1s;
}

@keyframes loaderGrowLine {
  to {
    width: 200px;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .loader-subtext {
    align-self: center;
    text-align: center;
    transform: none;
    /* no offset */
    padding-right: 0;
    width: 100%;
    margin: 10px 0 0 0;

    /* fade-in effect */
    opacity: 0;
    animation: fadeInMobile 1.5s ease forwards;
    animation-delay: 0.5s;
  }
}

/* Mobile fade-in animation */
@keyframes fadeInMobile {
  to {
    opacity: 1;
  }
}

.hotel-counter {
  position: relative;
  background-color: #EAD8B1;
  /* Ivory Cream */
  padding: 20px 15px;
  /* balanced padding */
  overflow: hidden;

  /* Boutique hotel subtle floral background */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 160 160'%3E%3Cg fill='%237B011E' fill-opacity='0.06'%3E%3Cpath d='M80 40c10 0 20 10 20 20s-10 20-20 20-20-10-20-20 10-20 20-20z'/%3E%3Cpath d='M40 80c0-10 10-20 20-20s20 10 20 20-10 20-20 20-20-10-20-20z'/%3E%3Cpath d='M120 80c0-10-10-20-20-20s-20 10-20 20 10 20 20 20 20-10 20-20z'/%3E%3Cpath d='M80 120c-10 0-20-10-20-20s10-20 20-20 20 10 20 20-10 20-20 20z'/%3E%3Ccircle cx='80' cy='80' r='6'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  /* smaller pattern */
  background-repeat: repeat;
}


.counter__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2.5rem;
  max-width: 850px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.counter__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.counter__icon {
  font-size: 2.8rem;
  color: #7B011E;
  margin-bottom: 12px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), color 0.5s ease;
}

.counter__item:hover .counter__icon {
  transform: scale(1.15);
  color: #b83256;
}

.counter__number {
  font-size: 3.8rem;
  font-weight: 900;
  background: linear-gradient(90deg, #7B011E, #b83256);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 10px rgba(123, 1, 30, 0.3);
  margin-bottom: 6px;
  letter-spacing: 1px;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.counter__label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}




.input__group {
  display: grid;
  gap: 1rem;
}

.input__group label {
  font-weight: 600;
  color: #7B011E;
  /* Burgundy labels */
}

.input__group input {
  width: 100%;
  font-size: 1rem;
  padding: 0.6rem;
  color: #7B011E;
  /* Burgundy text */
  background-color: transparent;
  outline: none;
  border: none;
  border-bottom: 2px solid rgba(123, 1, 30, 0.5);
  /* Subtle burgundy underline */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input__group input::placeholder {
  color: rgba(123, 1, 30, 0.5);
  /* Softer burgundy placeholder */
}

.input__group input:focus {
  border-bottom: 2px solid #7B011E;
  /* Stronger burgundy on focus */
  box-shadow: 0 2px 6px rgba(123, 1, 30, 0.2);
}


/* Images wrapper (desktop) */

.about {
  min-height: 90vh;
  /* full screen height */
  display: flex;
  align-items: center;
  /* vertically center content */
}

.about-corner {
  position: absolute;
  width: 350px;
  height: 350px;
  pointer-events: none;
  z-index: 0;
}

/* Top-left placement */
.about-corner.top-left {
  top: 0;
  left: 0;
}

/* Bottom-right placement */
.about-corner.bottom-right {
  bottom: 0;
  right: 0;
}

/* Make sure content stays above */
.about__content,
.about__images {
  position: relative;
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-corner {
    width: 300px;
    height: 300px;
    opacity: 0.6;
  }
}


.about__images {
  position: relative;
  width: 500px;
  height: 550px;
  perspective: 1000px;
  z-index: 100;
}

/* Desktop Triangle Layout */
.about__images .image {
  position: absolute;
  width: 250px;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-out;
  z-index: 100;
}

.image1 {
  top: 0;
  left: 135px;
  background-image: url("assets/About_1.png");
}

.image2 {
  top: 200px;
  left: 20px;
  background-image: url("assets/Travel_2.png");
}

.image3 {
  top: 200px;
  left: 250px;
  background-image: url("assets/About_3.png");
}

/* Content styling */
.about__content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #7B011E;
}

.about__content p {
  color: rgba(123, 1, 30, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1rem;
}

.btn-custom {
  background: #7B011E;
  color: #fff;
  border-radius: 30px;
  padding: 0.8rem 1.6rem;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.btn-custom:hover {
  background: #fff;
  color: #7B011E;
  border: 2px solid #7B011E;
  transform: translateY(-3px);
}

/* ✅ Mobile Responsive - Grid style, no movement */
@media (max-width: 768px) {
  .about__images {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns */
    gap: 10px;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .about__images .image {
    position: relative !important;
    width: 100% !important;
    height: 180px;
    transform: none !important;
    animation: none !important;
    left: auto !important;
    top: auto !important;
    border-radius: 12px;
  }

  /* ✅ Collage arrangement */
  .image1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .image2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .image3 {
    grid-column: 1 / 3;
    /* full width */
    grid-row: 2 / 3;
    height: 200px;
  }
}


/* 
.subheader {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.8;
}

.headline {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.9;
}
 */

.wave-divider {
  position: relative;
  top: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: -10;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 120px;
  transform: rotate(180deg);
  /* flips the wave upwards */
  z-index: 1;
}



.intro {
  position: relative;
  isolation: isolate;
  background-color: #EAD8B1;
  /* Ivory Cream */
}

.intro::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  height: 100%;
  width: 25%;
  /* 1/4 screen */
  background-color: #7B011E;
  /* Burgundy accent strip */
  z-index: -1;
}

.section__subheader {
  color: #7B011E;
  font-weight: 600;
  letter-spacing: 1px;
}

.section__header {
  color: #7B011E;
  font-weight: 700;
}

.section__description {
  color: #7B011E;
}

.intro__video {
  max-width: 550px;
  margin: auto;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  border: 4px solid #7B011E;
  border-radius: 12px;
}

/* Hide burgundy strip on small screens */
@media (max-width: 767.98px) {
  .intro::before {
    display: none;
  }
}


/* <!-- ✅ Footer Styles --> */
.footer {
  background-color: var(--primary-color);
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
}

.footer__logo {
  margin-bottom: 2rem;
  color: var(--white);
}

.footer__logo div {
  background-color: var(--secondary-color);
}

.footer__socials {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__socials a {
  padding: 6px 10px;
  font-size: 1.25rem;
  color: var(--text-light);
  background-color: var(--white);
  border-radius: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.footer__socials a:hover {
  color: var(--white);
  background-color: var(--secondary-color);
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--white);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__links a {
  color: var(--text-light);
  transition: 0.3s;
}

.footer__links a:hover {
  color: var(--secondary-color);
}

.footer__col:last-child .footer__links li {
  margin-bottom: 2rem;
}

.footer__links span {
  font-size: 2rem;
  color: var(--secondary-color);
}

.footer__links h5 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--white);
}

.footer__links p {
  color: var(--text-light);
}

.footer__bar {
  padding: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
}

.footer-link {
  color: #F5F1E6;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-link:hover {
  color: #FFD9D9;
  text-decoration: underline;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F5F1E6;
  color: #7B011E;
  font-size: 1.2rem;
  text-decoration: none;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.social-btn:hover {
  background: #7B011E;
  color: #F5F1E6;
  border-color: #F5F1E6;
}

/* Floral ornaments */
.footer-flower {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  animation: floaty 14s ease-in-out infinite;
  transform-origin: center;
}

.flower-tl {
  top: -20px;
  left: -20px;
  width: 200px;
}

.flower-br {
  bottom: -20px;
  right: -20px;
  width: 220px;
  animation-delay: 3s;
}


.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

/* Tooltip style */
.tooltip-text {
  visibility: hidden;
  width: 120px;
  background-color: #333;
  color: #fff;
  text-align: center;
  font-size: 14px;
  border-radius: 6px;
  padding: 6px 8px;
  position: absolute;
  right: 70px;
  /* Position left of the button */
  bottom: 50%;
  transform: translateY(50%);
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.whatsapp-float:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }

  .tooltip-text {
    font-size: 12px;
    right: 60px;
    width: auto;
    max-width: 100px;
  }
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-5px) rotate(0.5deg);
  }
}

.footer .container,
.footer .row {
  position: relative;
  z-index: 1;
}

@media (max-width: 576px) {
  .flower-tl {
    width: 140px;
    opacity: 0.2;
  }

  .flower-br {
    width: 160px;
    opacity: 0.2;
  }
}

@media (width > 480px) {

  /*  .about__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__image:nth-child(1) {
    grid-area: 1/2/2/3;
  }

  .about__image:nth-child(1),
  .about__card:nth-child(4) {
    transform: translateY(2rem);
  }
 */
  .feature__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu__images {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu__banner {
    grid-template-columns: repeat(2, 1fr);
  }

  .news__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__col:first-child {
    grid-column: 1/3;
  }
}

@media (width > 768px) {
  nav {
    position: absolute;
    padding-inline: 1rem;
    /* background-color: var(--primary-color); */
  }

  .nav__bar {
    max-width: var(--max-width);
    margin: auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    border-radius: 50px;
    transform: translateY(50%);
  }

  .nav__header {
    padding: 0;
    background-color: transparent;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    width: fit-content;
    padding: 0;
    margin-bottom: 5px;
    position: static;
    flex-direction: row;
    transform: none;
    background-color: transparent;
  }

  .booking__container form {
    max-width: 100%;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
  }

  .about::before {
    height: 75%;
    width: 75%;
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .room__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .feature__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu__header {
    flex-direction: row;
  }

  .menu__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu__images {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu__banner {
    grid-template-columns: repeat(4, 1fr);
  }

  .news__header {
    flex-direction: row;
  }

  .news__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__container {
    grid-template-columns: 2fr repeat(2, 1fr);
  }

  .footer__col:first-child {
    grid-column: unset;
  }
}

@media (width > 1024px) {
  .about__grid {
    gap: 2rem;
  }

  .room__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .menu__images {
    gap: 2rem;
  }

  .news__grid {
    gap: 2rem;
  }
}