@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.75rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
}

.section__header {
  font-size: 2.75rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--text-dark);
  line-height: 1.2;
}

.section__description {
  margin-top: 1.25rem;
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  background-color: var(--secondary-color);
  outline: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
  background-color: #e89b00;
  transform: translateY(-2px);
}

.section__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section__nav span {
  padding: 8px 12px;
  font-size: 1.25rem;
  border-radius: 4px;
  cursor: pointer;
  background-color: var(--extra-light);
  transition: background-color 0.3s;
}

.section__nav span:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

img,
video {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Navbar */
#navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9;
  background-color: var(--white);
  transition: transform 0.3s ease-in-out; /* Smooth slide animation */
}

#navbar.hidden {
  transform: translateY(-100%); /* Slide up to hide */
}

.nav__bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__menu__btn {
  font-size: 1.75rem;
  color: var(--text-dark);
  cursor: pointer;
  display: none; /* Hidden on large screens */
}

.nav__menu__btn i {
  color: var(--text-dark);
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav__links a:hover {
  color: var(--secondary-color);
}

.nav__logo a {
  text-decoration: none;
  display: block;
}

.nav__logo img:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

/* Header */
.header {
  padding-block: 5rem;
  background-image: linear-gradient(rgba(15, 26, 44, 0.5), rgba(15, 26, 44, 0.5)),
    url("assets/header.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.header__container {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Ensure centered on all screens */
  text-align: center;
  padding: 2rem;
}

.header__container .section__subheader {
  color: var(--white);
}

.header__container h1 {
  margin-bottom: 2rem;
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 6rem;
  font-family: var(--header-font);
  color: var(--white);
}

/* Booking */
.booking {
  background-color: var(--primary-color);
}

.booking__container {
  padding: 4rem 1rem;
  text-align: center; /* Reinforce centering */
}

.booking__form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center; /* Center form items */
  max-width: 1000px;
  margin: 2rem auto;
}

.booking__container form {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 1.5rem;
}

.input__group {
  display: grid;
  gap: 0.75rem;
}

.input__group label {
  font-weight: 600;
  color: var(--white);
}

.input__group input,
.input__group select {
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  background: var(--secondary);
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--text-light);
  border-radius: 5px;
  width: 100%; 
  box-sizing: border-box; 
}


.input__group input[type="date"] {
  width: 100%;
  -webkit-appearance: none; 
  -moz-appearance: none;
  appearance: none;
  position: relative;
}

/* Ensure consistent height */
.input__group input,
.input__group select {
  height: 3rem; 
}

.input__group input::placeholder {
  color: var(--text-light);
}

.input__group select {
  appearance: none; /* Remove default arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23f6ac0f' d='M0 0h10L5 6z'/%3E%3C/svg%3E"); /* Custom arrow */
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 10px;
}

.input__group select option {
  color: var(--text-dark); /* Ensure options are visible */
  background-color: var(--white);
}

.input__group input[type="date"] {
  position: relative;
  padding-right: 2.5rem; /* Make space for the icon */
}

.input__group input[type="date"]::after {
  content: '📅'; /* Unicode calendar emoji */
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 1.2rem;
  pointer-events: none;
}

.input__group input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0; /* Hide default icon but keep functionality */
  position: absolute;
  right: 0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}


/* About */
.about__container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
}

.room__container{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-content: center; /* Center grid items */
}

.about__card {
  max-width: 300px;
  padding: 1.5rem;
  background-color: var(--extra-light);
  border-radius: 8px;
  text-align: center;
}

.about__card span {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  display: block;
}

.about__card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.about__card p {
  color: var(--text-light);
  font-size: 1rem;
}

.about__overview, 
.about__location, 
.about__facilities, 
.about__hospitality, 
.about__sustainability, 
.about__contact {
  margin-top: 3rem;
}

.about__overview h3,
.about__location h3,
.about__facilities h3,
.about__hospitality h3,
.about__sustainability h3,
.about__contact h3 {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.about__overview p,
.about__location p,
.about__hospitality p,
.about__sustainability p {
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

.about__hospitality em {
  display: block;
  font-style: italic;
  margin-top: 1rem;
  color: var(--text-dark);
}

.about__contact .contact__details {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
  justify-content: center;
}

.about__contact .contact__item {
  max-width: 400px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about__contact .contact__item span {
  font-size: 1.75rem;
  color: var(--secondary-color);
}

.about__contact .contact__item p {
  color: var(--text-dark);
}

.about__contact .contact__item a {
  color: var(--text-dark);
  transition: color 0.3s;
}

.about__contact .contact__item a:hover {
  color: var(--secondary-color);
}

.about__socials {
  margin-top: 2rem;
  text-align: center;
}

.about__socials h4 {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.about__socials .footer__socials {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.about__socials .footer__socials a {
  font-size: 1.5rem;
  color: var(--text-dark);
  background-color: var(--white);
  padding: 0.75rem;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about__socials .footer__socials a:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

/* Rooms */
.rooms {
  background-color: var(--extra-light);
}

.rooms__container {
  text-align: center;
  justify-content: center;
  padding: 4rem 1rem;
}

.room__section {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.room__images {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.room__main_image {
  flex: 2;
  min-width: 300px;
}

.room__main_image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.room__side_images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 150px;
}

.room__side_images img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.room__details {
  text-align: left;
}

.room__details h3 {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.room__description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.room__amenities h4 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.room__amenities ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.room__amenities li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dark);
}

.room__amenities i {
  color: var(--secondary-color);
}

.room__pricing {
  margin-top: 1.5rem;
}

.room__pricing h4 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.room__pricing p {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.room__section .btn {
  margin-top: 2rem;
  display: inline-block;
}

.room__grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-content: center; /* Center grid items */
  max-width: 1200px; /* Constrain width for better centering */
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 0;
}

.room__card {
  max-width: 350px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.room__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.room__card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--text-dark);
  padding: 1rem 1rem 0.5rem;
}

.room__card p {
  font-size: 0.9rem;
  color: var(--text-light);
  padding:  1rem 1rem;
}

.room__card__details {
  padding: 0.5 rem;
  background-color: var(--white);
  border-radius: 5px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Features */
.feature__container {
  text-align: center;
}

.feature__grid {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  overflow-x: auto;
  padding: 1rem 0;
}

.feature__card {
  min-width: 100px;
  padding: 0.75rem;
  background-color: var(--extra-light);
  border-radius: 8px;
  text-align: center;
  flex-shrink: 0;
}

.feature__card span {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  display: block;
}

.feature__card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--text-dark);
}

/* Features Page (features.html) */
.features {
  background-color: var(--extra-light);
}

.features__container {
  text-align: center;
}

.features__page_grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.features__page_card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.features__page_card:hover {
  transform: translateY(-5px);
}

.features__page_card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.features__page_card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--text-dark);
  padding: 1rem 1rem 0.5rem;
}

.features__page_card p {
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 0 1rem 1rem;
}


/* Menu Preview (index.html) */
.menu__container {
  text-align: center;
  padding: 4rem 1rem;
}

.menu__grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 1rem 0;
}

.menu__card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.menu__card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.menu__card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--text-dark);
  padding: 1rem 1rem 0.5rem;
}

.menu__card p {
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 0 1rem 1rem;
}

/* Menu Page (menu.html) */
.menu {
  background-color: #fdf8f0; /* Warm, food-friendly beige tone */
}

.menu__page_container {
  text-align: center;

}

.menu__section {
  margin-top: 4rem;
}

.menu__section h3 {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: #8b4513; /* Earthy brown for a food vibe */
  margin-bottom: 2rem;
  position: relative;
}

.menu__section h3::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #d2691e; /* Warm orange accent */
}

.menu__page_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* 4-5 per row */
  gap: 1.5rem; /* Tighter layout */
  justify-content: center;
}

.menu__item_card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu__item_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.menu__item_card img {
  width: 100%;
  height: 200px; /* Smaller image */
  object-fit: cover;
}

.menu__item_card h4 {
  font-size: 1rem; /* Smaller title */
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--text-dark);
  padding: 0.75rem 0.75rem 0.25rem;
}

.menu__item_card p {
  font-size: 0.8rem; /* Smaller description */
  color: var(--text-light);
  padding: 0 0.75rem;
}

.menu__item_card span {
  display: block;
  font-size: 0.9rem; /* Smaller price */
  font-weight: 600;
  color: #d2691e; /* Warm orange */
  padding: 0.25rem 0.75rem 0.75rem;
}

/* Contact */
.contact__container {
  background-color: var(--extra-light);
  padding: 4rem 1rem;
  text-align: center;
}

.contact__container_inner {
  text-align: center;
}

.contact__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-content: center; /* Center contact items */
}

.contact__details {
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
  justify-content: center;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center; /* Center item content */
}

.contact__item span {
  font-size: 2rem;
  color: var(--secondary-color);
}

.contact__item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact__item p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.contact__item a {
  color: var(--text-dark);
  transition: color 0.3s;
}

.contact__item a:hover {
  color: var(--secondary-color);
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.map-link i {
  font-size: 1.25rem;
}

.contact__socials ul {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.contact__socials .footer__socials a {
  font-size: 1.5rem;
  color: var(--text-dark);
  background-color: var(--white);
  padding: 0.75rem;
  border-radius: 50%;
  transition: all 0.3s;
}

.contact__socials .footer__socials a:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.contact__booking {
  margin-top: 2rem;
}

.contact__booking h4 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact__booking_links {
  display: flex;
  gap: 1.5rem;
  justify-content: center; /* Center booking logos */
  flex-wrap: wrap;
}

.contact__booking_links a {
  display: block;
  transition: transform 0.3s ease;
}

.contact__booking_links img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.contact__booking_links a:hover {
  transform: scale(1.1);
}

/* Gallery */
.gallery {
  background-color: var(--extra-light);
}

.gallery__container {
  text-align: center;
}

.gallery__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.gallery__album {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery__album:hover {
  transform: scale(1.05);
}

.gallery__album img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery__album h4 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--text-dark);
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
}

/* Modal and Slider */
.gallery__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
  align-items: center;
  justify-content: center;
}

.gallery__modal_content {
  position: relative;
  width: 100%;
  max-width: 800px;
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
}

.gallery__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: var(--text-dark);
  cursor: pointer;
}

.gallery__slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.gallery__slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute; /* Stack images */
  top: 0;
  left: 0;
  opacity: 0; /* Hide by default */
  transition: opacity 0.3s ease; /* Smooth fade */
}

.gallery__slider img.active {
  opacity: 1; /* Show active image */
}

.gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 2rem;
  color: var(--text-dark);
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.gallery__nav:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.gallery__prev {
  left: 1rem;
}

.gallery__next {
  right: 1rem;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--white);
}

.footer__container {
  display: grid;
  gap: 3rem;
  padding: 4rem 1rem;
}

.footer__col {
  max-width: 400px;
}

.footer__col .logo {
  margin-bottom: 2rem;
}

.footer__col h4 {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.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: color 0.3s;
}

.footer__links a:hover {
  color: var(--secondary-color);
}

.footer__links span {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.footer__links h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.footer__socials {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.footer__socials a {
  font-size: 1.5rem;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  border-radius: 50%;
  transition: all 0.3s;
}

.footer__socials a:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.footer__bar {
  padding: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Media Queries */
@media (max-width: 480px) {
  .features__page_grid {
    grid-template-columns: 1fr;
  }
  
  .menu__page_grid {
    grid-template-columns: repeat(1, minmax(120px, 1fr));
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__slider {
    height: 200px;
  }

  .header__container h1 {
    font-size: 2rem;
  }

  .about__grid,
  .room__grid,
  .contact__grid {
    grid-template-columns: 1fr; /* Single column for smallest screens */
  }

  .contact__item {
    flex-direction: column;
    text-align: center; /* Center text in column layout */
  }
}

@media (max-width: 768px) {
  .nav__menu__btn {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem; /* Position in top-right corner */
  }

  .nav__links {
    display: none; /* Hide by default on small screens */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: var(--white);
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav__links.open {
    display: flex; /* Show when toggled */
  }
  
  .header__container {
    padding: 1rem;
  }

  .header__container h1 {
    font-size: 3rem; /* Smaller header on mobile */
    line-height: 3.5rem;
  }

  .booking__container form {
    grid-template-columns: 1fr; /* Stack form inputs */
  }

  .booking__form {
    flex-direction: column;
    align-items: center; /* Stack and center form inputs */
  }

  .about__grid,
  .room__grid,
  .menu__items {
    grid-template-columns: 1fr; /* Single column on small screens */
  }

  .menu__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .menu__card img {
    height: 120px;
  }

  .menu__page_grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

  .menu__item_card img {
    height: 80px;
  }

  .menu__item_card h4 {
    font-size: 0.9rem;
  }

  .menu__item_card p {
    font-size: 0.75rem;
  }

  .menu__item_card span {
    font-size: 0.85rem;
  }

  .feature__grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature__card {
    min-width: 90px;
  }

  .features__page_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__details {
    grid-template-columns: 1fr;
  }

  .contact__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact__socials ul {
    flex-wrap: wrap;
  }

  .gallery__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .gallery__album img {
    height: 150px;
  }

  .gallery__slider {
    height: 300px;
  }

  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__links li {
    justify-content: center;
  }

  .footer__socials {
    justify-content: center;
  }
}

  

@media (min-width: 769px) {
  .nav__bar {
    padding: 1rem 2rem;
  }

  .booking__container form {
    grid-template-columns: repeat(4, 1fr);
  }

  .about__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__contact .contact__details {
    grid-template-columns: repeat(2, 1fr);
  }

  .room__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__details {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .room__grid,
  .news__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about__contact .contact__details {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .contact__details {
    grid-template-columns: repeat(3, 1fr);
  }

  .features__page_grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu__page_grid {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
  }

  .menu_grid {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
  }
}
