.navbar {
  background-color: #006633;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.navbar .logo {
  font-weight: bold;
  font-size: 1.2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links li a:hover {
  text-decoration: underline;
}

.hero-banner {
  background-color: #f0f0f0; 
  padding: 3rem;
  text-align: center;
}

.banner-text h1 {
  font-size: 2.5rem;
  color: #006633;
}

.banner-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.banner-search {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.banner-search input, .banner-search button {
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.banner-search button {
  background-color: #006633;
  color: white;
  border: none;
  cursor: pointer;
}

.banner-search button:hover {
  background-color: #004d26;
}

.stay-categories {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 2rem;
}

.stay-categories ul {
  display: flex;
  gap: 15px;
  list-style: none;
  flex-wrap: wrap;
}

.stay-categories li {
  background-color: #f9f9f9;
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: bold;
  color: #006633;
}

.filter-btn {
  background-color: #006633;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
}

.filter-btn:hover {
  background-color: #004d26;
}
.accommodation {
  padding: 3rem 2rem;
}
.accommodation h2 {
  color: #006633;
  margin-bottom: 1.5rem;
  text-align: center;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.hotel-card {
  background: white;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.hotel-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background-color: #e0e0e0;
  border-radius: 6px;
  margin-bottom: 1rem;
}
