/* Global Styles */
:root {
  --color-primary: #006d5b; /* Deep teal */
  --color-accent: #ff6b35; /* Coral */
  --color-white: #ffffff;
  --color-dark-gray: #333333;
  --color-light-gray: #f4f4f4;
  --color-text: #555555;
  --color-error: #dc2626; /* Red for errors */
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensure footer sticks to bottom */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  color: var(--color-dark-gray);
  margin-bottom: 0.5em;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

main {
  flex-grow: 1; /* Main content takes available space */
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.text-center {
  text-align: center;
}

.btn-primary,
.btn-secondary {
  display: inline-flex; /* Use flex for icon alignment */
  align-items: center;
  justify-content: center;
  gap: 0.5rem; /* Space between icon and text */
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  white-space: nowrap; /* Prevent text wrapping */
}

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

.btn-primary:hover {
  background-color: #005a4a;
  border-color: #005a4a;
  transform: scale(1.05);
  text-decoration: none;
}

.btn-secondary {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
  background-color: #e65a2e;
  border-color: #e65a2e;
  transform: scale(1.05);
  text-decoration: none;
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--color-white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-primary);
}

.logo img {
  height: 40px; /* Adjust as needed */
  width: auto;
}

.nav-links {
  display: none; /* Hidden by default on mobile */
  list-style: none;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  color: var(--color-dark-gray);
  font-weight: bold;
  transition: color 0.2s ease-in-out;
}

.nav-links a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.hamburger-menu {
  display: block; /* Visible by default on mobile */
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-dark-gray);
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: -100%; /* Hidden off-screen */
  width: 70%;
  max-width: 300px;
  height: 100%;
  background-color: var(--color-white);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  transition: left 0.3s ease-in-out;
  padding-top: 60px; /* Space for close button */
}

.mobile-nav-drawer.open {
  left: 0;
}

.mobile-nav-drawer .close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-dark-gray);
}

.mobile-nav-drawer ul {
  list-style: none;
  padding: 1rem;
}

.mobile-nav-drawer ul li {
  margin-bottom: 1rem;
}

.mobile-nav-drawer ul li a {
  display: block;
  padding: 0.5rem 0;
  color: var(--color-dark-gray);
  font-size: 1.2rem;
  font-weight: bold;
}

.mobile-nav-drawer ul li a:hover {
  color: var(--color-primary);
}

.header-cta {
  display: none; /* Hidden by default on mobile */
}

/* Footer */
footer {
  background-color: var(--color-dark-gray);
  color: var(--color-white);
  padding: 2rem 1rem;
  text-align: center;
}

footer .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

footer .footer-section {
  margin-bottom: 1rem;
}

footer h3 {
  color: var(--color-white);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

footer p,
footer a {
  color: #ccc;
  font-size: 0.9rem;
}

footer a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.social-icons a {
  display: inline-block;
  margin: 0 0.5rem;
  font-size: 1.5rem;
  color: var(--color-white);
  transition: transform 0.2s ease-in-out;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.copyright {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: #aaa;
}

/* Mobile-Only Floating Widgets */
.mobile-widgets {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  z-index: 999;
  pointer-events: none; /* Allow clicks through by default */
  opacity: 0; /* Hidden by default for animation */
  transition: opacity 0.5s ease-out;
}

.mobile-widgets.visible {
  opacity: 1;
  pointer-events: auto;
}

.widget-button {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out;
  position: relative;
  pointer-events: auto; /* Make buttons clickable */
}

.widget-button.whatsapp {
  background-color: #25d366; /* WhatsApp green */
}

.widget-button:hover {
  transform: scale(1.1);
}

.widget-button .tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--color-white);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.widget-button:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh; /* Full screen height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  text-align: center;
  background: url("228637486.jpg?height=1080&width=1920") no-repeat center center / cover; /* Placeholder background image */
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Overlay for text readability */
  z-index: 1;
}

.hero-section > * {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.hero-section h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  max-width: 80%;
}

.hero-section .hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Sections */
section {
  padding: 3rem 1rem;
  opacity: 0; /* For fade-in animation */
  transform: translateY(20px); /* For slide-up animation */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--color-primary);
}

section h3 {
  font-size: 1.5rem;
  color: var(--color-dark-gray);
}

/* Why Stay With Us? Section */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.icon-item {
  padding: 1rem;
  background-color: var(--color-light-gray);
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.icon-item .icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.icon-item h3 {
  font-size: 1.1rem;
  color: var(--color-dark-gray);
}

/* Featured Rooms Preview & Room Cards */
.room-grid {
  display: grid;
  grid-template-columns: 1fr; /* Single column on mobile */
  gap: 2rem;
}

.room-card {
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex; /* For better layout on mobile */
  flex-direction: column;
}

.room-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.room-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Allows content to expand */
}

.room-card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--color-dark-gray);
}

.room-card-content p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.room-card-content .price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.room-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.room-specs div {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.room-specs .icon {
  font-size: 1.2rem;
  color: var(--color-accent);
}

.room-features ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.room-features .icon {
  color: var(--color-primary);
  font-size: 1.1rem;
}

/* Accordion (for Rooms page) */
.accordion {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 2rem;
}

.accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: var(--color-white);
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color-dark-gray);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.accordion-trigger:hover {
  background-color: var(--color-light-gray);
}

.accordion-trigger .arrow {
  transition: transform 0.3s ease;
}

.accordion-trigger.active .arrow {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: #fcfcfc;
}

.accordion-content.open {
  max-height: 500px; /* Adjust as needed for content */
  padding: 1rem 1.5rem;
}

.accordion-content ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.accordion-content li {
  margin-bottom: 0.5rem;
}

/* Guest Testimonials */
.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  padding: 1.5rem;
  text-align: center;
  background-color: var(--color-light-gray);
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.testimonial-slide .stars {
  color: gold;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.testimonial-slide p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-slide .author {
  font-weight: bold;
  color: var(--color-dark-gray);
}

.carousel-nav-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--color-primary);
}

/* Local Highlights */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr; /* Single column on mobile */
  gap: 1.5rem;
}

.highlight-card {
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 1.5rem;
}

.highlight-card .icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.highlight-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.highlight-card p {
  font-size: 0.9rem;
}

/* Quick Booking Teaser */
.booking-teaser {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.booking-teaser h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.booking-teaser p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.booking-teaser .btn-secondary {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

/* Amenities & Services Page */
.amenity-category {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.amenity-category h3 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.amenity-category h3 .icon {
  font-size: 1.8rem;
  color: var(--color-accent);
}

.amenity-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.amenity-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  color: var(--color-text);
}

.amenity-list li .icon {
  font-size: 1.3rem;
  color: var(--color-primary);
}

/* Gallery Page */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Responsive grid */
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 150px; /* Fixed height for masonry-like effect */
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.map-section {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 3rem;
  text-align: center;
}

.map-section iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.nearby-attractions {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 3rem;
}

.attractions-scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 1rem; /* For scrollbar */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: var(--color-primary) #ccc; /* Firefox */
}

/* Custom scrollbar for Webkit browsers */
.attractions-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.attractions-scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.attractions-scroll-container::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 10px;
}

.attractions-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #005a4a;
}

.attraction-card {
  flex-shrink: 0;
  width: 180px;
  text-align: center;
  padding: 1rem;
  background-color: var(--color-light-gray);
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.attraction-card .icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.attraction-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--color-dark-gray);
}

.attraction-card p {
  font-size: 0.85rem;
  color: var(--color-text);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 2000; /* High z-index */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.lightbox-modal.open {
  display: flex;
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 1rem;
  color: var(--color-white);
  text-align: center;
  font-size: 1.2rem;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Booking Page */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.booking-form-card,
.booking-perks-card,
.contact-details-card {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.booking-form-card h3,
.booking-perks-card h3,
.contact-details-card h3 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: var(--color-dark-gray);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(0, 109, 91, 0.2);
}

.form-group .error-message {
  color: var(--color-error);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.booking-perks-list,
.contact-details-list {
  list-style: none;
  padding: 0;
}

.booking-perks-list li,
.contact-details-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--color-text);
}

.booking-perks-list li .icon {
  color: #22c55e; /* Green checkmark */
  font-size: 1.5rem;
}

.contact-details-list li .icon {
  color: var(--color-accent);
  font-size: 1.5rem;
}

/* Thank You Modal */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal.open {
  display: flex;
}

.modal-content {
  background-color: var(--color-white);
  margin: auto;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.modal-content .close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2rem;
  cursor: pointer;
  color: #aaa;
}

.modal-content .close-button:hover {
  color: #777;
}

.modal-content h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.modal-content p {
  margin-bottom: 1.5rem;
}

.modal-content .icon {
  font-size: 4rem;
  color: #22c55e;
  margin-bottom: 1rem;
}

/* Terms & Privacy Pages */
.content-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.side-nav {
  background-color: var(--color-white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 80px; /* Below header */
  align-self: flex-start; /* Stick to top of its grid area */
}

.side-nav h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.side-nav ul {
  list-style: none;
  padding: 0;
}

.side-nav ul li {
  margin-bottom: 0.8rem;
}

.side-nav ul li a {
  color: var(--color-dark-gray);
  transition: color 0.2s ease;
}

.side-nav ul li a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.main-content-area {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.main-content-area h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.main-content-area section {
  padding: 0; /* Override default section padding */
  margin-bottom: 2rem;
  opacity: 1; /* No fade-in for these sections */
  transform: translateY(0);
}

.main-content-area section h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.main-content-area ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.main-content-area li {
  margin-bottom: 0.5rem;
}

.code-snippet {
  background-color: #f0f0f0;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 1rem;
  overflow-x: auto;
  font-family: monospace;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* New Homepage Sections */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr; /* Single column on mobile */
  gap: 2rem;
}

.offer-card {
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
}

.offer-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.offer-card-content {
  padding: 1.5rem;
}

.offer-card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--color-dark-gray);
}

.offer-card-content p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.dining-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--color-light-gray);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.dining-section img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.dining-content h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.dining-content p {
  margin-bottom: 1rem;
}

.dining-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin-top: 1rem;
}

.dining-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.dining-features li .icon {
  color: var(--color-accent);
  font-size: 1.2rem;
}

.event-section {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.event-section h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.event-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hamburger-menu,
  .mobile-nav-drawer,
  .mobile-widgets {
    display: none; /* Hide mobile elements on desktop */
  }

  .nav-links {
    display: flex; /* Show desktop nav */
  }

  .header-cta {
    display: block; /* Show desktop CTA */
  }

  .navbar {
    padding: 0 1rem; /* Adjust padding for desktop */
  }

  .hero-section h1 {
    font-size: 4rem;
  }

  .hero-section h2 {
    font-size: 3rem;
  }

  .hero-section p {
    font-size: 1.5rem;
  }

  .hero-section .hero-buttons {
    flex-direction: row; /* Buttons side-by-side on desktop */
  }

  .icon-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
  }

  .room-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on desktop */
  }

  .highlights-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
  }

  .amenity-list {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on desktop */
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* More flexible grid */
  }

  .gallery-item img {
    height: 200px; /* Adjust height for desktop */
  }

  .booking-layout {
    grid-template-columns: 2fr 1fr; /* Form on left, perks/contact on right */
  }

  .content-layout {
    grid-template-columns: 250px 1fr; /* Side nav on left, content on right */
  }

  footer .container {
    flex-direction: row;
    justify-content: space-around;
    text-align: left;
  }

  /* New Homepage Sections Responsive */
  .offer-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
  }

  .dining-section {
    flex-direction: row; /* Image and text side-by-side */
    text-align: left;
  }

  .dining-section img {
    width: 40%;
    height: auto;
  }

  .dining-content {
    flex-grow: 1;
  }

  .dining-features {
    grid-template-columns: repeat(2, 1fr); /* Two columns for features */
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 1rem 2rem;
  }
}
