body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fdfdfd;
  color: #333;
}
header {
  background-color: #0074cc;
  padding: 1rem;
  color: white;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar {
  background-color: #ffffff;
  color: #004d80;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  font-family: 'Arial', sans-serif;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar .logo {
  font-size: 24px;
  font-weight: bold;
  color: #004d80;
  text-decoration: none;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar .nav-links li a {
  text-decoration: none;
  font-size: 16px;
  color: #004d80;
  transition: color 0.3s ease;
}

.navbar .nav-links li a:hover,
.navbar .nav-links li a.active {
  color: #0099cc;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.nav-links li a {
  color: white;
  text-decoration: none;
}
.nav-links li a.active {
  font-weight: bold;
  border-bottom: 2px solid white;
}
.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content {
  text-align: center;
  background: rgba(255,255,255,0.8);
  padding: 2rem;
  border-radius: 10px;
}
.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  background-color: #0074cc;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}
section {
  padding: 2rem;
}
footer {
  text-align: center;
  padding: 1rem;
  background-color: #f0f0f0;
  margin-top: 2rem;
}
/* === Rooms Page Specific Styling === */

.room-hero {
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.room-overlay {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.room-overlay h1 {
  margin-bottom: 20px;
  font-size: 2em;
  color: #004e7c;
}

.amenities-grid ul {
  list-style: disc;
  columns: 2;
  gap: 30px;
  padding-left: 20px;
  text-align: left;
  font-size: 1rem;
  color: #333;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.map-frame {
  width: 100%;
  height: 400px;
  border: 0;
}

.location-hero {
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-overlay {
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 15px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.location-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.location-table td {
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

.contact-hero {
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-overlay {
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 15px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-info {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.contact-info li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-info a {
  color: #0077cc;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* === Responsive Design for Mobile Devices === */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
  }

  .hero-content,
  .room-overlay,
  .location-overlay,
  .contact-overlay {
    padding: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .amenities-grid ul {
    columns: 1;
    padding-left: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    padding: 10px;
    gap: 10px;
  }

  .contact-info li {
    font-size: 1rem;
  }

  footer {
    padding: 0.5rem;
    font-size: 0.9rem;
  }
}