.section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1rem;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__header h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section__header p {
  color: var(--text-light);
  font-size: 1.1rem;
}
.search__container {
  max-width: 600px;
  margin: 0 auto 3rem;
  position: relative;
  /* Remove the incorrect left-padding property */
  display: flex; /* Add this to create a flex container */
  align-items: center; /* Center items vertically */
}

.search__container input {
  width: 100%;
  padding: 1rem 3rem 1rem 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}



.search__container input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(147, 125, 100, 0.1);
}
.search__btn {
  position: absolute;
  right: 1rem;
  top: 55%;  /* Changed from 50% to 55% to move it slightly down */
 
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
}
.rooms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.room__card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.room__card:hover {
  transform: translateY(-5px);
}

.room__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.room__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room__type {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
}

.room__details {
  padding: 1.5rem;
}

.room__number {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.room__classification {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.room__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f0f0;
  padding-top: 1rem;
  margin-top: 1rem;
}

.price__amount {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.price__night {
  color: var(--text-light);
  font-size: 0.9rem;
}

.book__btn {
  padding: 0.8rem 1.5rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.book__btn:hover {
  background: var(--primary-dark);
}

@media (max-width: 768px) {
  .section__header h2 {
    font-size: 2rem;
  }
  
  .rooms__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}