/* Base Styles */
body {
  background: url('assets/images/background-sea.png') no-repeat center center fixed;
  background-size: cover;
  color: #E0E0E0;
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  scroll-behavior: smooth;
}


/* Splash Screen */
.splash {
  height: 100vh;
  background-color: #0A1A2F;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
}

.splash img {
  max-width: 85%;
  max-height: 85%;
}

/* Header and Hover Menu */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0A1A2F;
  z-index: 1000;
  padding-bottom: 10px;
  /* border-bottom removed to eliminate blue line */
}

.logo-wrapper {
  position: relative;
  display: inline-block;
}

.logo {
  width: 140px;
  margin: 20px auto 10px;
  display: block;
  cursor: pointer;
  z-index: 1001;
}

/* Updated menu animation */
.menu-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0A1A2F;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  padding: 0;
  width: 100vw;
  z-index: 999;
}

.logo-wrapper:hover .menu-content {
  opacity: 1;
  max-height: 500px;
  padding: 10px 0 20px;
  transform: translateX(-50%) translateY(0);
}

header h1 {
  font-size: 2.5rem;
  margin: 5px 0;
}

.tagline {
  font-size: 1rem;
  color: #00BFFF;
  margin-bottom: 15px;
}

.navbar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}

.navbar a {
  color: #00BFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.navbar a:hover {
  color: #ffffff;
}

/* Main Content */
main {
  padding-top: 500px; /* Increased spacing to clear fixed header + dropdown */
}

section {
  padding: 150px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #999;
}

/* Retreat Card Styling */
.retreat-card {
  background: #12283A;
  margin: 20px auto;
  padding: 20px;
  border-radius: 12px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.retreat-card h3 {
  font-size: 1.3rem;
  color: #E0E0E0;
  margin-bottom: 8px;
}

.retreat-card p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 12px;
}

.book-button {
  background-color: #00BFFF;
  border: none;
  color: #000;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.book-button:hover {
  background-color: #008acb;
}

/* Booking Form Styling */
.booking-form,
#booking-form {
  background-color: #12283A;
  padding: 25px;
  margin: 30px auto;
  border-radius: 12px;
  max-width: 500px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.booking-form label,
#booking-form label {
  display: block;
  text-align: left;
  margin-top: 15px;
  margin-bottom: 5px;
  color: #00BFFF;
  font-size: 0.95rem;
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
#booking-form input,
#booking-form select,
#booking-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  box-sizing: border-box;
  margin-bottom: 15px;
}

.booking-form textarea,
#booking-form textarea {
  resize: vertical;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator,
#booking-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.booking-form button,
#booking-form button {
  width: 100%;
  background-color: #FFA500;
  border: none;
  padding: 12px;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.booking-form button:hover,
#booking-form button:hover {
  background-color: #ffb733;
}

/* Mobile Responsive */
@media screen and (max-width: 600px) {
  .navbar {
    gap: 10px;
    font-size: 0.9rem;
  }

  .booking-form,
  #booking-form {
    padding: 15px;
  }

  .splash img {
    max-width: 90%;
  }

  header h1 {
    font-size: 1.8rem;
  }

  .tagline {
    font-size: 0.8rem;
  }
}
