/* Sir Walleye Charters - Backup Static Site
   Captured from live Duda site 2026-07-01
   Mirror of sirwalleyecharters.com content */

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

:root {
  --teal: #17384a;
  --teal-dark: #0f2a38;
  --teal-light: #235a76;
  --gold: #d4a63f;
  --cream: #f5efe0;
  --off-white: #faf8f2;
  --gray-text: #333;
  --gray-light: #e8e8e8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--gray-text);
  line-height: 1.6;
  background: #fff;
}

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

a { color: var(--teal-light); text-decoration: none; }
a:hover { color: var(--gold); }

/* HEADER */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--gray-light);
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.brand-logo img { max-height: 70px; width: auto; }
.header-contact {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.header-contact a { color: var(--teal); font-weight: 600; font-size: 0.95em; }
.btn-contact {
  background: var(--teal);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85em;
  letter-spacing: 0.5px;
}
.btn-contact:hover { background: var(--teal-dark); color: #fff !important; }

/* NAV */
.main-nav {
  background: var(--teal);
  padding: 0;
}
.main-nav ul {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
}
.main-nav a {
  color: #fff;
  padding: 14px 22px;
  display: block;
  text-transform: uppercase;
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--teal-dark);
  color: var(--gold);
}

/* HERO */
.hero {
  min-height: 500px;
  background: linear-gradient(rgba(15,42,56,0.55), rgba(15,42,56,0.55)), var(--hero-img, url('../images/IMG_20260607_133548_866-1920w.jpeg')) center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}
.hero-inner { max-width: 900px; }
.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}
.hero p {
  font-size: 1.25em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--teal-dark);
  padding: 16px 36px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.1em;
  letter-spacing: 1px;
  transition: transform 0.2s, background 0.2s;
}
.hero-cta:hover {
  background: #b58b2f;
  color: #fff;
  transform: translateY(-2px);
}

/* SECTIONS */
section { padding: 60px 20px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title {
  text-align: center;
  color: var(--teal);
  font-size: 2.2em;
  margin-bottom: 12px;
  font-weight: 700;
}
.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1em;
}
.section-cream { background: var(--cream); }
.section-white { background: #fff; }
.section-teal { background: var(--teal); color: #fff; }
.section-teal .section-title { color: #fff; }

/* FEATURE GRID (why fish with us) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.feature-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  border-top: 4px solid var(--gold);
}
.feature-card h3 {
  color: var(--teal);
  margin-bottom: 12px;
  font-size: 1.3em;
}

/* PRICING BLOCK */
.pricing-block {
  background: #fff;
  border: 3px solid var(--gold);
  padding: 40px;
  border-radius: 8px;
  max-width: 700px;
  margin: 30px auto;
  text-align: center;
}
.price-tag {
  font-size: 2.8em;
  color: var(--teal);
  font-weight: 800;
  margin-bottom: 8px;
}
.price-note {
  color: #666;
  font-style: italic;
  margin-bottom: 20px;
}
.price-details {
  text-align: left;
  max-width: 500px;
  margin: 20px auto;
}
.price-details li { margin: 8px 0; }

/* FAQ */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  margin-bottom: 15px;
  padding: 24px;
}
.faq-item h3 {
  color: var(--teal);
  margin-bottom: 10px;
  font-size: 1.2em;
}
.faq-item ul { margin-left: 20px; margin-top: 8px; }

/* FISHING REPORTS */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.report-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}
.report-card:hover { transform: translateY(-3px); }
.report-thumb {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}
.report-body {
  padding: 20px;
}
.report-body h3 {
  color: var(--teal);
  margin-bottom: 10px;
  font-size: 1.1em;
}

/* CAPTAIN SECTION */
.captain-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.captain-photo img {
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.captain-bio h3 {
  color: var(--teal);
  font-size: 1.8em;
  margin-bottom: 16px;
}

/* CONTACT SECTIONS */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}
.contact-card h3 {
  color: var(--teal);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.contact-card ul { list-style: none; }
.contact-card li { margin: 12px 0; padding-left: 0; }

/* LEGAL PAGES */
.legal-content {
  max-width: 850px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 6px;
}
.legal-content h1 {
  color: var(--teal);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--gold);
}
.legal-content h2 {
  color: var(--teal);
  margin: 30px 0 12px;
  font-size: 1.3em;
}
.legal-content h3 { color: var(--teal-light); margin: 20px 0 10px; }
.legal-content p, .legal-content li {
  margin-bottom: 12px;
  line-height: 1.7;
}
.legal-content ul { padding-left: 24px; margin-bottom: 15px; }
.legal-content strong { color: var(--teal); }
.effective-date {
  color: #666;
  font-style: italic;
  margin-bottom: 30px;
}

/* CTA STRIP */
.cta-strip {
  background: var(--teal);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}
.cta-strip h2 { font-size: 2em; margin-bottom: 20px; }
.cta-strip .hero-cta { background: var(--gold); color: var(--teal-dark); }

/* FOOTER */
.site-footer {
  background: var(--teal-dark);
  color: #cfd8dc;
  padding: 40px 20px 20px;
  text-align: center;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-inner img { max-height: 90px; margin: 0 auto 20px; }
.footer-contact {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.footer-contact a { color: var(--gold); font-weight: 600; }
.footer-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a { color: #cfd8dc; font-size: 0.9em; }
.copyright {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85em;
  color: #90a4ae;
}

/* BACKUP BANNER */
/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 30px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2em; }
  .hero p { font-size: 1.05em; }
  .header-inner { justify-content: center; text-align: center; }
  .header-contact { justify-content: center; }
  .main-nav ul { gap: 0; }
  .main-nav a { padding: 12px 14px; font-size: 0.8em; }
  .captain-block { grid-template-columns: 1fr; text-align: center; }
  .section-title { font-size: 1.7em; }
  section { padding: 40px 16px; }
  .legal-content { padding: 24px 20px; }
}

/* Report detail pages */
.report-article { max-width: 800px; margin: 0 auto; }
.report-article .report-date { color: #666; font-style: italic; margin-bottom: 24px; }
.report-article p { margin-bottom: 18px; line-height: 1.7; }
.report-article img { width: 100%; height: auto; border-radius: 8px; margin: 18px 0; }
.report-article h2, .report-article h3 { margin: 28px 0 12px; color: var(--teal, #0e5a5a); }
.report-card a.card-link { text-decoration: none; color: inherit; display: block; }
.contact-form { max-width: 640px; margin: 0 auto; display: grid; gap: 14px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; font: inherit; }
.contact-form button { padding: 14px 28px; background: var(--teal, #0e5a5a); color: #fff; border: 0; border-radius: 6px; font-weight: 700; cursor: pointer; font-size: 1.05em; }
