/* Hero Section Styles */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url('https://i.pinimg.com/736x/45/77/c9/4577c91daa0973832cd4b22dc35847ce.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 100px;
}

.hero-content .subtitle {
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.2;
}

.hero-btn {
  background-color: transparent;
  color: #fff;
  border: 2px solid #A7988D;
  padding: 12px 32px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #A7988D;
  color: #fff;
  transform: translateY(-5px);
}

/* Reservation Form */
.reservation-form {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 10;
  width: 90%;
  max-width: 1000px;
  border-radius: 4px;
  overflow: hidden;
}

.form-group {
  flex: 1 1 200px;
  position: relative;
}

.form-group i {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #A7988D;
}

.form-group input,
.form-group select {
  width: 100%;
  height: 60px;
  padding: 0 16px 0 45px;
  border: none;
  border-right: 1px solid #eee;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #333;
  background-color: #fff;
  outline: none;
  transition: all 0.3s ease;
}

.form-group:last-of-type input,
.form-group:last-of-type select {
  border-right: none;
}

.form-group input:focus,
.form-group select:focus {
  background-color: #f9f9f9;
}

.book-now-btn {
  flex: 1 1 100%;
  height: 60px;
  background-color: #A7988D;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.book-now-btn:hover {
  background-color: #8A7B71;
}

/* Media Queries */
@media screen and (max-width: 991px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .reservation-form {
    width: 95%;
  }
}

@media screen and (max-width: 767px) {
  .hero-content {
    margin-bottom: 150px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content .subtitle {
    font-size: 0.8rem;
  }
  
  .reservation-form {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: -80px auto 0;
    width: 90%;
    flex-direction: column;
    overflow: visible;
  }
  
  .form-group {
    border-bottom: 1px solid #eee;
  }
  
  .form-group input,
  .form-group select {
    border-right: none;
  }
}