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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

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

/* Header */
header {
  background-color: #1a3a5c;
  color: white;
  padding: 20px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header h1 {
  font-size: 1.8rem;
  font-weight: 700;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background: url('hook.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: white;
  min-height: 680px;
  padding: 0;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Features Section */
.features {
  padding: 60px 0;
  background-color: white;
}

.features h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1a3a5c;
}

.feature-card {
  background-color: #f4f4f4;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #1a3a5c;
}

.feature-card p {
  color: #666;
}

/* Testimonials Section */
.testimonials {
  padding: 60px 0;
  background-color: #f4f4f4;
}

.testimonials h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #1a3a5c;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.testimonial-card {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.testimonial-rating {
  font-size: 1.5rem;
  color: #f4d03f;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 1rem;
  color: #1a3a5c;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  background-color: #1a3a5c;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Footer */
footer {
  background-color: #0d2840;
  color: white;
  padding: 20px 0;
  text-align: center;
}

/* About Page */
.about-content {
  padding: 60px 0;
  background-color: white;
}

.about-text {
  margin-bottom: 50px;
}

.about-text h3 {
  font-size: 2rem;
  color: #1a3a5c;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
}

.captain-profile {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.captain-image {
  flex: 1;
  min-width: 300px;
}

.captain-placeholder {
  background: linear-gradient(135deg, #1a3a5c 0%, #0d2840 100%);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.captain-placeholder span {
  font-size: 80px;
  display: block;
  margin-bottom: 20px;
}

.captain-placeholder h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.captain-placeholder p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.captain-info {
  flex: 2;
  min-width: 300px;
}

.captain-info h3 {
  font-size: 2rem;
  color: #1a3a5c;
  margin-bottom: 10px;
}

.captain-title {
  font-size: 1.2rem;
  color: #e67e22;
  margin-bottom: 20px;
  font-weight: 600;
}

.captain-info p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #555;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background-color: #f4f4f4;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background-color: #e8e8e8;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
}

.mission-section {
  background-color: #1a3a5c;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.mission-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.mission-section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.9;
}

/* Services Page */
.services-list {
  padding: 60px 0;
  background-color: white;
}

.services-list h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #1a3a5c;
}

.service-card {
  background-color: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.service-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.8rem;
  color: #1a3a5c;
  margin-bottom: 10px;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: #e67e22;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 25px;
}

.service-features li {
  padding: 8px 0;
  color: #555;
  border-bottom: 1px solid #e0e0e0;
}

.service-features li:last-child {
  border-bottom: none;
}

.what-includes {
  padding: 60px 0;
  background-color: #f4f4f4;
}

.what-includes h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #1a3a5c;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.include-item {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.include-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.include-item h4 {
  font-size: 1.3rem;
  color: #1a3a5c;
  margin-bottom: 10px;
}

.include-item p {
  color: #666;
  line-height: 1.6;
}

/* Contact Page */
.contact-content {
  padding: 60px 0;
  background-color: white;
}

.contact-content h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #1a3a5c;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.contact-card {
  background-color: #f4f4f4;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  background-color: #e8e8e8;
}

.contact-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.contact-card h3 {
  font-size: 1.4rem;
  color: #1a3a5c;
  margin-bottom: 15px;
}

.contact-card p {
  color: #555;
  line-height: 1.6;
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  font-size: 1.8rem;
  color: #1a3a5c;
  margin-bottom: 30px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1a3a5c;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a3a5c;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  width: 100%;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: #e67e22;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #d35400;
}

/* Booking Page */
.booking-hero {
  background: url('hook.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: white;
  min-height: 560px;
  padding: 0;
  display: flex;
  align-items: center;
  text-align: center;
}

.booking-hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.booking-hero p {
  font-size: 1.3rem;
  opacity: 0.9;
}

.booking-container {
  padding: 60px 0;
  background-color: white;
}

.booking-form {
  max-width: 700px;
  margin: 0 auto 60px;
  background-color: #f4f4f4;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.booking-form h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #1a3a5c;
}

.booking-form .form-group {
  margin-bottom: 25px;
}

.booking-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1a3a5c;
}

.booking-form .form-group input,
.booking-form .form-group select,
.booking-form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.booking-form .form-group input:focus,
.booking-form .form-group select:focus,
.booking-form .form-group textarea:focus {
  outline: none;
  border-color: #1a3a5c;
}

.booking-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.booking-form button {
  width: 100%;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
}

.availability-result {
  max-width: 700px;
  margin: 0 auto;
  background-color: #f4f4f4;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.success-message {
  text-align: center;
}

.success-message h3 {
  font-size: 2rem;
  color: #1a3a5c;
  margin-bottom: 20px;
}

.success-message p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.8;
}

.success-message strong {
  color: #1a3a5c;
  font-weight: 600;
}

.success-message a {
  display: inline-block;
  margin-top: 20px;
}

.booking-info {
  max-width: 700px;
  margin: 0 auto;
}

.booking-info h3 {
  text-align: center;
  font-size: 2rem;
  color: #1a3a5c;
  margin-bottom: 40px;
}

.info-card {
  background-color: #f4f4f4;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  background-color: #e8e8e8;
}

.info-card h4 {
  font-size: 1.3rem;
  color: #1a3a5c;
  margin-bottom: 15px;
}

.info-card p {
  color: #555;
  line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  nav a {
    margin: 10px 5px;
  }

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

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

  .features h2 {
    font-size: 1.6rem;
  }

  .feature-card {
    padding: 20px;
  }

  .testimonials h2 {
    font-size: 1.6rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .booking-hero h2 {
    font-size: 2rem;
  }

  .booking-hero p {
    font-size: 1.1rem;
  }

  .booking-form {
    padding: 30px;
  }

  .success-message h3 {
    font-size: 1.6rem;
  }

  .booking-info h3 {
    font-size: 1.6rem;
  }

  .info-card {
    padding: 20px;
  }
}

/* === HERO OVERRIDES (consolidated) === */
.hero {
  position: relative;
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: 560px;
    background-position: 30% top;  /* push image right so left-side baked-in title shows */
  }
  .booking-hero {
    min-height: 480px;
    background-position: center top;
  }
}

/* Desktop */
@media (min-width: 769px) {
  .hero {
    min-height: 820px;
    background-position: center 30%;  /* push image down so top of baked-in title isn't cut */
    background-color: #1a3a5c;
  }
  .booking-hero {
    min-height: 700px;
  }
}

/* Hide HTML h2 since the baked-in photo already shows the same text */
.hero h2 {
  display: none;
}
