html {
  background: url('https://saify.live/ashara/img/hotel_header_image.jpg') no-repeat center center fixed;
  background-size: cover;
}

/* Reset and base styles */
{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero section with background image */
.hero {
  
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  text-align: center;
  color: #fff;
}

.overlay h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.overlay p {
  font-size: 1.5rem;
}

/* Container for zones */
.container {
  padding: 0 2rem 2rem;
  max-width: 1000px;
  margin: auto;
}

/* Accordion styles */
.accordion {
  background-color: #007BFF;
  color: #fff;
  cursor: pointer;
  padding: 1rem;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
  border-radius: 5px;
}

.accordion:hover,
.accordion.active {
  background-color: #0056b3;
}

.panel {
  background-color: #f9f9f9;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
  border-left: 2px solid #007BFF;
  border-right: 2px solid #007BFF;
  border-bottom: 2px solid #007BFF;
  border-radius: 0 0 5px 5px;
  padding: 0 1rem;
  position: relative;
}

/* Hotel entry styles */
.hotel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
}

.hotel:last-child {
  border-bottom: none;
}

.hotel-info h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

.hotel-info p {
  color: #666;
}

.hotel-actions {
  margin-left: auto;
}

/* Button styles */
.book-btn,
.book-all-btn,
.support-btn {
  background-color: #28a745;
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin-left: 0.5rem;
}

.book-btn:hover,
.book-all-btn:hover,
.support-btn:hover {
  background-color: #218838;
}

.panel-buttons {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 0;
  gap: 0.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
  .hotel {
    flex-direction: column;
    align-items: flex-start;
  }

  .hotel-actions {
    margin-top: 0.5rem;
  }

  .panel-buttons {
    flex-direction: column;
    align-items: flex-end;
  }

  .overlay h1 {
    font-size: 2rem;
  }

  .overlay p {
    font-size: 1rem;
  }
}
