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


body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./watermark.png') no-repeat center center;
  background-size: 100%;
  z-index: -1;
  pointer-events: none;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background: #002244;
  color: #fff;
  padding: 1rem 0;
}
header h1 {
  float: left;
}
nav {
  float: right;
}
nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}
header::after {
  content: "";
  display: table;
  clear: both;
}

/* Hero */
.hero {
  color: #000;
  padding: 100px 0;
  text-align: center;
}
.hero h2 {
  font-size: 2.5rem;
}
.hero .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #ffcc00;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

/* Sections */
section {
  padding: 60px 0;
}
.services ul {
  list-style: none;
  padding-left: 0;
}
.services li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Booking Form */
.booking form {
  display: grid;
  gap: 15px;
}
.booking input,
.booking textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.booking button {
  background: #002244;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.booking button:hover {
  background: #004080;
}

/* Contact */
.contact a {
  color: #002244;
  text-decoration: none;
}

/* Footer */
footer {
  background: #002244;
  color: #ff9900;
  text-align: center;
  padding: 40px 0;
}
footer h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
footer p {
  margin: 10px 0;
  font-size: 1rem;
}
.map-widget {
  margin: 20px auto;
  max-width: 400px;
  border-radius: 8px;
  overflow: hidden;
}
.map-widget iframe {
  width: 100%;
  height: 200px;
  border: none;
}
footer a {
  color: #ffcc00;
  text-decoration: underline;
}
footer a:hover {
  text-decoration: none;
}

/* Burger menu */
.burger {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  header h1 {
    float: none;
    text-align: center;
  }

  nav {
    display: none;
    flex-direction: column;
    background: #002244;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }

  nav a {
    margin: 10px 0;
    display: block;
  }

  nav.active {
    display: flex;
  }

  .burger {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
  }

  header::after {
    content: "";
    display: block;
    clear: both;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .booking form {
    grid-template-columns: 1fr;
  }
}
.passenger-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.passenger-row label {
  flex-shrink: 0;
  font-weight: bold;
}

.passenger-row input {
  width: 60px;
  padding: 5px;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 50px;
  width: auto;
}

#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #002244;
  color: #fff;
  padding: 15px;
  text-align: center;
  z-index: 1000;
}

#cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

#cookie-banner a {
  color: #ffcc00;
  text-decoration: underline;
}

#cookie-banner button {
  margin-left: 15px;
  padding: 8px 15px;
  background: #ffcc00;
  border: none;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

.form-choice {
  margin-bottom: 15px;
  display: flex;
  gap: 20px;
  font-size: 1rem;
}

.form-choice label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.thank-you {
  text-align: center;
  padding: 100px 0;
}
.thank-you h2 {
  font-size: 2rem;
  color: #002244;
}
.thank-you p {
  margin: 20px 0;
  font-size: 1.1rem;
}
.thank-you .btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ffcc00;
  color: #002244;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

