/* ================================================================
   BAD CAST CHARTERS -- styles.css
   Mobile-first. One page. Static.
   Fonts: Playfair Display (headings) + Source Sans 3 (body)
   Colors: deep ocean navy, warm gold, clean white, soft fog
   ================================================================ */

/* ----------------------------------------------------------------
   CSS VARIABLES -- edit here to retheme the whole site
---------------------------------------------------------------- */
:root {
  --navy:      #1a2b3c;
  --navy-deep: #111e2a;
  --gold:      #c8922a;
  --gold-light:#e8b84b;
  --white:     #ffffff;
  --off-white: #f5f3ef;
  --fog:       #e8e6e1;
  --text:      #2c2c2c;
  --text-light:#5a5a5a;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --max-width: 1100px;
  --radius:    6px;
  --transition: 0.2s ease;
}

/* ----------------------------------------------------------------
   RESET & BASE
---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ----------------------------------------------------------------
   UTILITY
---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.section-title.light {
  color: var(--white);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.section-intro.light {
  color: rgba(255,255,255,0.82);
}

/* ----------------------------------------------------------------
   BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-full {
  display: block;
  width: 100%;
  text-align: center;
}

/* ----------------------------------------------------------------
   NAVIGATION
---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(17, 30, 42, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
}

.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
  transition: background var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ----------------------------------------------------------------
   HERO
---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17,30,42,0.45) 0%,
    rgba(17,30,42,0.65) 60%,
    rgba(17,30,42,0.80) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 7rem 1.25rem 4rem;
}

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ----------------------------------------------------------------
   WHAT TO EXPECT
---------------------------------------------------------------- */
.expect {
  padding: 5rem 0;
  background: var(--white);
}

.expect .section-title,
.expect .section-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.expect-item {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius);
  background: var(--off-white);
}

.expect-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.expect-item h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.expect-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ----------------------------------------------------------------
   TRIPS & RATES
---------------------------------------------------------------- */
.trips {
  position: relative;
  padding: 5rem 0;
}

.trips-bg {
  position: absolute;
  inset: 0;
}

.trips-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.trips-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,30,42,0.87);
}

.trips-container {
  position: relative;
  z-index: 2;
}

.trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.trip-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background var(--transition);
}

.trip-card:hover {
  background: rgba(255,255,255,0.11);
}

.trip-card-featured {
  border-color: var(--gold);
  background: rgba(200,146,42,0.12);
}

.trip-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.badge-featured {
  color: var(--gold-light);
  background: rgba(200,146,42,0.2);
}

.trip-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}

.trip-price {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold-light);
  font-family: var(--font-head);
  margin-bottom: 0.5rem;
}

.trip-specs {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.trip-specs li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  padding-left: 1rem;
  position: relative;
}

.trip-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* Included section */
.included,
.guest-brings {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.included-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 600;
}

.included-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.5rem 1.5rem;
  margin-bottom: 1rem;
}

.included-list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  padding-left: 1.1rem;
  position: relative;
}

.included-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-size: 0.8rem;
}

.included-note,
.guest-brings-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-top: 0.75rem;
}

/* ----------------------------------------------------------------
   SPECIES
---------------------------------------------------------------- */
.species {
  padding: 5rem 0;
  background: var(--off-white);
}

.species .section-title,
.species .section-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.species-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.species-list li {
  font-size: 1rem;
  color: var(--text);
  padding: 0.85rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  line-height: 1.5;
}

.species-list li strong {
  color: var(--navy);
}

/* ----------------------------------------------------------------
   ABOUT CAPTAIN DREW
---------------------------------------------------------------- */
.about {
  padding: 5rem 0;
  background: var(--white);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-photos {
  position: relative;
}

.about-photo-main {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 8px 32px rgba(17,30,42,0.18);
}

.about-photo-secondary {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 48%;
  border-radius: var(--radius);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border: none;
  box-shadow: none;
  background: transparent;
}

.about-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.about-name {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.about-text p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-text .btn {
  margin-top: 0.5rem;
  border-color: var(--gold);
  color: var(--white);
}

/* ----------------------------------------------------------------
   TESTIMONIALS
---------------------------------------------------------------- */
.testimonials {
  padding: 5rem 0;
  background: var(--navy);
}

.testimonials .section-title {
  color: var(--white);
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.testimonial p {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial p::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.6rem;
  margin-right: 0.15rem;
}

.testimonial cite {
  font-size: 0.82rem;
  font-style: normal;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ----------------------------------------------------------------
   GALLERY
---------------------------------------------------------------- */
.gallery {
  padding: 5rem 0 0;
  background: var(--white);
}

.gallery .section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 6px;
  margin-top: 1rem;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item-wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* ----------------------------------------------------------------
   INSTAGRAM
---------------------------------------------------------------- */
.instagram {
  padding: 4rem 0;
  background: var(--off-white);
  text-align: center;
}

.instagram .section-title,
.instagram .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.instagram-placeholder {
  margin-top: 1rem;
}

.instagram-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.5rem 2.5rem;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  transition: background var(--transition);
}

.instagram-link:hover {
  background: var(--fog);
}

.instagram-handle {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
}

.instagram-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ----------------------------------------------------------------
   EMAIL SIGNUP
---------------------------------------------------------------- */
.signup {
  padding: 4rem 0;
  background: var(--navy-deep);
  text-align: center;
}

.signup-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.signup-sub {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.75rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.signup-form {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}

.signup-input {
  flex: 1 1 240px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.signup-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.signup-input:focus {
  outline: 2px solid var(--gold);
  border-color: transparent;
}

/* ----------------------------------------------------------------
   CONTACT / BOOKING
---------------------------------------------------------------- */
.contact {
  padding: 5rem 0;
  background: var(--off-white);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.contact-text .section-title {
  margin-bottom: 1rem;
}

.contact-text p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

/* Override secondary button color for light background sections */
.contact-actions .btn-secondary {
  color: var(--navy);
  border-color: var(--navy);
}

.contact-actions .btn-secondary:hover {
  background: var(--fog);
}

.contact-details {
  border-top: 1px solid var(--fog);
  padding-top: 1.25rem;
}

.contact-details p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.contact-details a {
  color: var(--gold);
  font-weight: 600;
}

.contact-boat-img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 6px 24px rgba(17,30,42,0.14);
}

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.site-footer {
  background: var(--navy-deep);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  max-width: 600px;
  line-height: 1.5;
}

/* ----------------------------------------------------------------
   MOBILE NAV (hamburger)
   Breakpoint: 700px
---------------------------------------------------------------- */
@media (max-width: 700px) {

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links.open {
    max-height: 320px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.88);
  }

  .nav-cta {
    margin: 0.75rem 1.5rem !important;
    display: block !important;
    text-align: center !important;
  }

  /* Hero */
  .hero-content {
    padding: 6rem 1.25rem 3rem;
  }

  /* Expect */
  .expect-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Trips */
  .trips-grid {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-photos {
    margin-bottom: 2rem;
  }

  .about-photo-secondary {
    right: 0;
    bottom: -1rem;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item-wide {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }

  /* Contact */
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-boat {
    display: none;
  }

}

@media (max-width: 420px) {
  .expect-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item-wide {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
  }
}


/* ============================================================
   WAIVER PAGE
============================================================ */

.waiver-hero {
  padding: 6rem 0 3rem;
  background: var(--color-sand, #f5f0e8);
  text-align: center;
}

.waiver-hero-title {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 2.8rem;
  color: var(--color-navy, #1a2e44);
  margin-bottom: 1rem;
}

.waiver-hero-sub {
  font-size: 1.1rem;
  color: var(--color-text, #333);
  max-width: 640px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}

.waiver-contact {
  font-size: 1rem;
  color: var(--color-text, #333);
}

.waiver-contact a {
  color: var(--color-ocean, #2a7aad);
  text-decoration: none;
}

.waivers {
  padding: 4rem 0;
}

.waivers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.waiver-card {
  background: #fff;
  border: 1px solid #e0ddd8;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.waiver-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.waiver-card-title {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 1.5rem;
  color: var(--color-navy, #1a2e44);
  margin-bottom: 1rem;
}

.waiver-card-desc {
  font-size: 1rem;
  color: var(--color-text, #333);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.waiver-note {
  text-align: center;
  font-size: 1rem;
  color: var(--color-text, #333);
  line-height: 1.7;
  border-top: 1px solid #e0ddd8;
  padding-top: 2rem;
}

.waiver-note a {
  color: var(--color-ocean, #2a7aad);
  text-decoration: none;
}

@media (max-width: 700px) {
  .waivers-grid {
    grid-template-columns: 1fr;
  }

  .waiver-hero-title {
    font-size: 2rem;
  }
}
