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

body {
  background-color: #18566C;
  color: white;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Header banner with nav overlay */
.banner {
  position: relative;
  background-image: url('images/header.jpg'); /* Update path if needed */
  background-size: cover;
  background-position: center;
  padding: 100px 20px 60px;
  color: white;
  text-align: center;
}

/* Navigation inside banner */
.banner nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  background: none !important;
  border: none !important;
  z-index: 1000;
}

.banner nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.banner nav ul li {
  margin: 0 15px;
}

.banner nav ul li a {
  color: #0f2e3d;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.6);
}

.banner nav ul li a:hover {
  text-decoration: underline;
  opacity: 0.85;
}

/* Banner text */
.banner-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8em;
  margin-bottom: 10px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.page-title {
  position: absolute;
  bottom: 10px;
  left: 20px !important;
  font-size: 1.2em;
  font-weight: bold;
  text-align: left !important;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Main content spacing */
main {
  padding-top: 40px;
}

/* FAA gallery */
.faa-gallery {
  margin-top: 30px;
  text-align: center;
}

.faa-gallery iframe {
  width: 100%;
  max-width: 100%;
  border: none;
}

/* Contact form */
.contact-form {
  margin-top: 40px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 4px;
}

.contact-form button {
  background-color: #144A5C;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0f3a49;
}

/* FAQ section */
.faq-section {
  margin-top: 40px;
}

.faq-section h2 {
  margin-top: 30px;
  font-size: 1.4em;
  font-family: 'Playfair Display', serif;
}

.faq-section h3 {
  margin-top: 20px;
  font-size: 1.2em;
}

.faq-section p,
.faq-section ul {
  margin-top: 10px;
  margin-bottom: 20px;
}

.faq-section ul {
  padding-left: 20px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .banner {
    padding: 80px 10px 40px;
  }

  .banner nav ul {
    flex-direction: column;
  }

  .banner nav ul li {
    margin: 10px 0;
  }

  .banner-text h1 {
    font-size: 2em;
  }

  .page-title {
    font-size: 1em;
    left: 10px !important;
  }
}
