/*General Reset & Base*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

/*Navbar*/
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #333;
  color: #fff;
}
.logo {
  font-size: 1.5rem;
}
.nav-links {
  list-style: none;
  display: flex;
}
.nav-links li {
  margin: 0 10px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #ff9800;
}

/*Hero Section*/
.hero {
  position: relative;
  width: 100%;
  height: 60vh; /* Banner style */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); /* overlay */
}
.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}
.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/*Buttons*/
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff9800;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}
.btn:hover {
  background: #e68900;
}

/*Sections*/
.section {
  padding: 2rem;
  text-align: center;
}
.section h2 {
  margin-bottom: 1rem;
}

/*Cards (Rooms, Reviews)*/
.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.card {
  background: #f4f4f4;
  padding: 1rem;
  border-radius: 8px;
  width: 250px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Reviews */
.reviews {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 2rem;
}
.review-card {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  max-width: 300px;
  text-align: left;
}
.review-card p {
  font-style: italic;
  margin-bottom: 0.5rem;
}
.review-card h4 {
  text-align: right;
  font-weight: normal;
  color: #555;
}

/*Forms (Booking, Contact)*/
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: auto;
}
form input, form textarea, form button {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
form button {
  background: #333;
  color: #fff;
  cursor: pointer;
}
form button:hover {
  background: #555;
}

/*Chatbot Widget Styling*/
#chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  font-family: Arial, sans-serif;
}

#chat-header {
  background: #333;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
}

#chat-body {
  height: 200px;
  overflow-y: auto;
  padding: 10px;
  font-size: 0.9rem;
  background: #fafafa;
}

#chat-body div {
  margin-bottom: 8px;
}

#chat-input {
  width: 100%;
  padding: 10px;
  border: none;
  border-top: 1px solid #ccc;
  outline: none;
  font-size: 0.9rem;
}

/* Chatbot Responsive */
@media (max-width: 768px) {
  #chatbot {
    width: 90%;
    right: 5%;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 40vh;
    padding: 2rem;
  }
  .hero-content h2 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}