/* ============================================================
   No Wake Zone Charters — Main Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1b3a5c;
  --teal:   #2a9d8f;
  --teal-d: #207a6f;
  --sand:   #f4ede0;
  --white:  #ffffff;
  --gray:   #f7f8fa;
  --text:   #222831;
  --muted:  #5a6472;
  --border: #dde3ea;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-d); text-decoration: underline; }

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

/* ---- UTILITY ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }

.btn {
  display: inline-block;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: background .2s, transform .15s;
  border: none;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary  { background: var(--teal);  color: var(--white); }
.btn-primary:hover  { background: var(--teal-d); color: var(--white); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: #142d48; color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

/* ---- HEADER / NAV ---- */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.logo-wrap img  { height: 60px; width: auto; }
.logo-wrap:hover { opacity: .9; }

.main-nav { display: flex; align-items: center; gap: 1.5rem; }
.main-nav a {
  color: rgba(255,255,255,.87);
  font-weight: 500;
  font-size: .95rem;
  transition: color .15s;
}
.main-nav a:hover  { color: var(--teal); text-decoration: none; }
.main-nav a.active { color: var(--teal); }
.nav-cta { margin-left: .5rem; }

.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; margin: 5px 0; transition: .3s;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .40;
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 640px;
  padding: 4rem 1.25rem;
  margin: 0 auto 0 0;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
  opacity: .92;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- SECTION TITLES ---- */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.divider {
  width: 50px; height: 4px;
  background: var(--teal);
  border-radius: 2px;
  margin: .6rem 0 1.5rem;
}
.divider-center { margin: .6rem auto 1.5rem; }

/* ---- ABOUT STRIP ---- */
.about-strip { background: var(--sand); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  max-height: 380px;
}

/* ---- STATS ---- */
.stats-bar { background: var(--navy); color: #fff; padding: 2.5rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-val { font-size: 2.2rem; font-weight: 700; color: var(--teal); }
.stat-label { font-size: .85rem; opacity: .78; text-transform: uppercase; letter-spacing: .05em; }

/* ---- SERVICES / CARDS ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.card-icon { font-size: 2.2rem; margin-bottom: .75rem; }
.card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: .5rem; }
.card p  { font-size: .93rem; color: var(--muted); }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--gray); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-size: 4rem;
  line-height: 1;
  color: var(--teal);
  opacity: .25;
  position: absolute;
  top: .5rem; left: 1rem;
}
.testimonial p { font-style: italic; margin-bottom: 1rem; font-size: .95rem; }
.testimonial-author strong { color: var(--navy); font-size: .9rem; }
.testimonial-author span  { display: block; font-size: .8rem; color: var(--muted); }

/* ---- PARTNERS ---- */
.partners { border-top: 1px solid var(--border); }
.partners-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.partners-logos img {
  height: 40px;
  width: auto;
  filter: grayscale(100%) opacity(.6);
  transition: filter .2s;
}
.partners-logos img:hover { filter: none; }

/* ---- SPECIALS / BLOG CARDS ---- */
.special-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.special-card img {
  width: 100%; height: 200px;
  object-fit: cover;
}
.special-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.special-card-body h3 { color: var(--navy); margin-bottom: .5rem; }
.special-card-body p  { color: var(--muted); font-size: .93rem; flex: 1; }
.special-card-body .btn { margin-top: 1.25rem; align-self: flex-start; }

/* ---- BOOKING EMBED ---- */
.booking-embed-wrap {
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.booking-embed-wrap iframe { width: 100%; border: none; min-height: 600px; }

/* ---- FORMS ---- */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 0 auto;
}
.form-wrap h2 { color: var(--navy); margin-bottom: .25rem; }
.form-subtitle { color: var(--muted); margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; margin-bottom: 1.25rem; }
.form-group label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .65rem .9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,157,143,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.radio-group, .checkbox-group {
  display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem;
}
.radio-group label,
.checkbox-group label {
  display: flex; align-items: center; gap: .5rem;
  font-size: .93rem; cursor: pointer; color: var(--text);
}
.radio-group input[type=radio],
.checkbox-group input[type=checkbox] {
  width: 16px; height: 16px; accent-color: var(--teal);
}

.field-legend {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .5rem;
  display: block;
}
.required-note { font-size: .8rem; color: var(--muted); margin-bottom: 1.5rem; }

/* ---- NEWSLETTER STRIP ---- */
.newsletter-strip { background: var(--teal); color: #fff; padding: 3rem 0; }
.newsletter-strip h2 { margin-bottom: .5rem; }
.newsletter-strip p  { opacity: .9; margin-bottom: 1.5rem; }
.newsletter-form {
  display: flex;
  gap: .75rem;
  max-width: 440px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  padding: .7rem 1rem;
  border: none;
  border-radius: var(--radius);
  font-size: .95rem;
  min-width: 200px;
}
.newsletter-form input:focus { outline: 2px solid var(--navy); }
.newsletter-form .btn { background: var(--navy); color: #fff; }
.newsletter-form .btn:hover { background: #142d48; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.78);
  padding: 2.5rem 0 1.25rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand img { height: 55px; margin-bottom: .75rem; filter: brightness(10); opacity: .85; }
.footer-brand p { font-size: .88rem; line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .85rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .45rem; }
.footer-col ul li a { color: rgba(255,255,255,.7); font-size: .9rem; }
.footer-col ul li a:hover { color: var(--teal); text-decoration: none; }
.footer-social { display: flex; gap: .75rem; margin-top: .5rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  color: #fff;
  font-size: .9rem;
  transition: background .2s;
}
.footer-social a:hover { background: var(--teal); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.25rem;
  text-align: center;
  font-size: .82rem;
  opacity: .6;
}

/* ---- PAGE HERO (interior pages) ---- */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 3rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal);
}
.page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: .5rem; }
.page-hero p  { opacity: .8; max-width: 600px; }

/* ---- BLOG ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-meta { font-size: .8rem; color: var(--muted); margin-bottom: .5rem; }
.blog-card h2 { font-size: 1.1rem; color: var(--navy); margin-bottom: .5rem; line-height: 1.4; }
.blog-card p  { font-size: .92rem; color: var(--muted); }
.blog-card .btn { margin-top: 1rem; }

.blog-post-header { max-width: 760px; }
.blog-post-body   { max-width: 760px; }
.blog-post-body p { margin-bottom: 1.25rem; }
.blog-post-body h2 { color: var(--navy); margin: 2rem 0 .75rem; }

/* ---- DESTINATION PAGE ---- */
.dest-intro { max-width: 760px; margin: 0 auto; }
.dest-intro p { margin-bottom: 1.25rem; font-size: 1.05rem; }
.contact-info-block { background: var(--sand); border-radius: var(--radius); padding: 2rem; }
.contact-info-block p { margin-bottom: .5rem; font-size: 1rem; }
.contact-info-block a { color: var(--navy); font-weight: 600; }

/* ---- THANK YOU ---- */
.thankyou-wrap { text-align: center; padding: 5rem 1.25rem; }
.thankyou-wrap .icon { font-size: 4rem; margin-bottom: 1rem; }
.thankyou-wrap h1 { color: var(--navy); margin-bottom: .75rem; }
.thankyou-wrap p  { color: var(--muted); max-width: 500px; margin: 0 auto 1.5rem; }

/* ---- PROSE (privacy, terms) ---- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { color: var(--navy); margin: 2rem 0 .75rem; font-size: 1.2rem; }
.prose p  { margin-bottom: 1rem; }
.prose ul { margin: .5rem 0 1rem 1.5rem; }
.prose ul li { margin-bottom: .4rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy);
    padding: 1rem 1.25rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,.1);
    gap: 1rem;
    z-index: 99;
  }
  .hamburger { display: block; }
  .site-header { position: relative; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-content { padding: 3rem 1.25rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero { min-height: 420px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: column; }
}
