/* Header Styling */
header {
  position: relative;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.4)),
              url('/assets/images/Couple and Tree.JPG') no-repeat center center / cover;
  color: #fff;
  padding: 120px 20px 80px;
  text-align: center;
  overflow: hidden;
}

header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
}

header h1 {
  font-size: 3.75rem;
  margin-bottom: 20px;
  letter-spacing: 2.5px;
  font-weight: 700;
}

header p {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

header .book-now {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}


/* Book Now Section Inside Header */
.book-now {
  text-align: center;
}

.book-now h2 {
  font-size: 2.25em;
  margin-bottom: 0.5em;
  color: #ffffff;
  font-weight: 600;
}

.book-now p {
  max-width: 700px;
  margin: 0 auto 1.5em;
  font-size: 1.1em;
  color: #f0f0f0;
  opacity: 0.95;
}

/* Call-to-Action Button */
.book-button {
  display: inline-block;
  padding: 16px 40px;
  background: #f0f0f0;
  color: #000000;
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 10px;
  text-decoration: none;
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.book-button:hover {
  background: linear-gradient(135deg, #ffffff, #afadad);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

