/* Basic styling for demo */
body {
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  margin: 0;

  /* Background image */
  background: url("/assets/bg.jpg") no-repeat center center fixed;
  background-size: cover;
  position: relative;
}

/* Overlay for readability */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85); /* subtle white overlay */
  z-index: -1;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
}

.site-header {
  background: #1e88c7;
  color: #fff;
  padding: 12px 0;
}

.site-header h1 {
  margin: 0;
  font-size: 20px;
}

.site-header nav {
  float: right;
  margin-top: -28px;
}

.hero {
  background: #eaf6ff;
  padding: 18px;
  border-radius: 6px;
  margin-top: 18px;
}

.booking {
  background: #fff;
  padding: 18px;
  border-radius: 6px;
  margin-top: 18px;
}

.booking label {
  display: block;
  margin-bottom: 12px;
}

.booking input[type=text],
.booking input[type=email],
.booking input[type=date],
.booking select,
.booking textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.booking button {
  background: #1e88c7;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.booking button:hover {
  background: #1565c0;
  transform: scale(1.05);
}

.site-footer {
  background: #fff;
  padding: 10px;
  margin-top: 18px;
  border-top: 1px solid #e0e0e0;
}

/* Layout fix */
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Nav menu */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.main-nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.main-nav ul li a:hover {
  color: #ffd54f;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .main-nav ul {
    display: none;
    flex-direction: column;
    background: #1e88c7;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 10px;
    border-radius: 6px;
  }

  .main-nav ul.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* Animations */
.booking,
.hero,
.how-it-works {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.booking.visible,
.hero.visible,
.how-it-works.visible {
  opacity: 1;
  transform: translateY(0);
}
