/* FishBookers — Charter Fishing Agency */
:root {
  --navy: #1a2e44;
  --navy-light: #243b56;
  --navy-dark: #111e2e;
  --gold: #c9a55c;
  --gold-light: #ddc07a;
  --gold-dark: #a8873d;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f0f1f3;
  --gray-200: #e0e2e6;
  --gray-600: #6b7280;
  --gray-800: #1f2937;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --max-w: 1200px;
  --radius: 8px;
  --shadow: 0 2px 8px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

.container { width: 90%; max-width: var(--max-w); margin: 0 auto; }

/* ── NAV ── */
.nav {
  background: var(--navy);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { font-family: var(--font-display); color: var(--gold); font-size: 1.5rem; font-weight: 700; }
.nav__links { display: flex; gap: 1.5rem; list-style: none; }
.nav__links a { color: var(--gray-200); font-size: .95rem; font-weight: 500; }
.nav__links a:hover, .nav__links a.active { color: var(--gold); }
.nav__toggle { display: none; background: none; border: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  text-align: center;
  background-size: cover;
  background-position: center;
}
.hero--img {
  background-blend-mode: overlay;
  background-color: rgba(26,46,68,.75);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.15rem; color: var(--gray-200); max-width: 600px; margin: 0 auto 2rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-light); color: var(--navy); }
.btn--outline { border: 2px solid var(--gold); color: var(--gold); background: transparent; }
.btn--outline:hover { background: var(--gold); color: var(--navy); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-light); color: var(--white); }

/* ── SECTIONS ── */
.section { padding: 4rem 0; }
.section--alt { background: var(--gray-50); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
  margin-bottom: .5rem;
  color: var(--navy);
}
.section__sub {
  text-align: center;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ── GRID ── */
.grid { display: grid; gap: 2rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: .5rem; position: relative; z-index: 2; }
.card p { color: var(--gray-600); font-size: .95rem; position: relative; z-index: 2; }

/* ── COVER CARDS (Full-Bleed Images) ── */
.card--cover {
  min-height: 400px;
  padding: 3rem 2rem;
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--white);
}
.card--cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(26,46,68,0.3) 0%, rgba(26,46,68,0.85) 100%);
  z-index: 1;
}
.card--cover * {
  position: relative;
  z-index: 2;
}
.card--cover h3 { color: var(--white); text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.card--cover p { color: rgba(255,255,255,0.95); text-shadow: 0 1px 4px rgba(0,0,0,0.3); }

/* ── PRICING ── */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  border: 2px solid transparent;
  transition: all .3s;
}
.pricing-card--featured { border-color: var(--gold); transform: scale(1.03); }
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); margin-bottom: .5rem; }
.pricing-card .price { font-size: 2.5rem; font-weight: 700; color: var(--navy); margin: 1rem 0; }
.pricing-card .price span { font-size: 1rem; font-weight: 400; color: var(--gray-600); }
.pricing-card ul { list-style: none; margin: 1.5rem 0; text-align: left; }
.pricing-card li { padding: .4rem 0; color: var(--gray-600); font-size: .95rem; }
.pricing-card li::before { content: "✓ "; color: var(--gold); font-weight: 700; }

/* ── TESTIMONIAL ── */
.testimonial {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}
.testimonial blockquote { font-style: italic; font-size: 1.1rem; margin-bottom: 1rem; line-height: 1.7; }
.testimonial cite { color: var(--gold); font-style: normal; font-weight: 600; }

/* ── STATS ── */
.stats { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; text-align: center; }
.stat__num { font-family: var(--font-display); font-size: 2.5rem; color: var(--gold); font-weight: 700; }
.stat__label { color: var(--gray-600); font-size: .9rem; }

/* ── FORM ── */
.form { max-width: 600px; margin: 0 auto; }
.form__group { margin-bottom: 1.25rem; }
.form__group label { display: block; font-weight: 600; margin-bottom: .35rem; color: var(--navy); font-size: .95rem; }
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  transition: border-color .2s;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,165,92,.15);
}
.form__group textarea { resize: vertical; min-height: 120px; }

/* ── BLOG ── */
.blog-card { 
  display: flex; 
  flex-direction: column; 
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.blog-card__img { 
  height: 280px; 
  background: var(--gray-100); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: var(--gray-600); 
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.card__img { 
  width: calc(100% + 4rem); 
  height: 250px; 
  object-fit: cover; 
  border-radius: var(--radius) var(--radius) 0 0; 
  margin: -2rem -2rem 1.5rem; 
}
.about-content__img { 
  background: var(--gray-100); 
  height: 400px; 
  border-radius: var(--radius); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: var(--gray-600); 
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.about-content__img img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}
.blog-card__body { padding: 1.5rem; }
.blog-card__meta { font-size: .85rem; color: var(--gray-600); margin-bottom: .5rem; }
.blog-card h3 { margin-bottom: .5rem; }
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--gold-dark); }

/* ── FOOTER ── */
.footer {
  background: var(--navy-dark);
  color: var(--gray-200);
  padding: 3rem 0 1.5rem;
}
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer h4 { color: var(--gold); margin-bottom: .75rem; font-size: 1rem; }
.footer ul { list-style: none; }
.footer li { margin-bottom: .4rem; }
.footer a { color: var(--gray-200); font-size: .9rem; }
.footer a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; text-align: center; font-size: .85rem; color: var(--gray-600); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
.cta-banner p { color: var(--gray-200); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── ABOUT ── */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-content__img { background: var(--gray-100); height: 350px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--gray-600); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--gray-200); padding: 1.25rem 0; }
.faq-item summary { cursor: pointer; font-weight: 600; color: var(--navy); font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--gold); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-top: .75rem; color: var(--gray-600); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav__links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 1rem 5%; gap: .5rem; }
  .nav__links.open { display: flex; }
  .nav__toggle { display: block; }
  .about-content { grid-template-columns: 1fr; }
  .stats { gap: 1.5rem; }
  .hero { padding: 3rem 0 2.5rem; }
  .section { padding: 3rem 0; }
}
