/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body & html */
body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
}
/*Booking shit */
.booking-container {
  max-width: 600px;
  margin: 80px auto;
  padding: 1rem;
}

.form-section {
  background: #f0f0f0;
  padding: 2rem;
  text-align: center;
}

.booking-form {
  max-width: 500px;
  margin: auto;
  display: grid;
  gap: 1rem;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.booking-form label {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
}

.booking-form button {
  padding: 0.75rem;
  background: #0077cc;
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}

.booking-form button:hover {
  background: #005fa3;
}
/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.7);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo {
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #f2a900;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background-image: url('/assets/img/boat.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding-top: 70px; /* ruimte navbar */
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.4);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 5;
  margin-bottom: 100px; /* ruimte onder voor tours */
}

.hero-content h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1.5rem;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}

/* Tours sectie als overlay onderaan */
.tours {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1000px;
  background: rgba(0,0,0,0.5);
  padding: 1rem 2rem;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  z-index: 10;
  box-sizing: border-box;
}

.card {
  background: rgba(255,255,255,0.9);
  color: #333;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex: 1 1 0;
  text-align: center;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 700px) {
  .tours {
    flex-direction: column;
    gap: 1rem;
  }

  .card {
    flex: none;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }
}

