/* ============================================================
   Design.Print.Fish — style.css
   Mobile-first. No framework. Poppins via Google Fonts.
   ============================================================ */

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

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

body {
  font-family: 'Poppins', sans-serif;
  color: #212121;
  background: #ffffff;
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* === TYPOGRAPHY === */
h1 { font-size: clamp(1.75rem, 5vw, 2.8rem); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(1.3rem, 4vw, 1.9rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1rem, 3vw, 1.25rem); font-weight: 600; line-height: 1.3; }
p  { margin-bottom: 0.9rem; }
p:last-child { margin-bottom: 0; }

/* === HEADER / NAV === */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1a2535;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 64px;
}

.nav-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.03em;
  padding: 1rem 0;
  flex-shrink: 0;
}
.nav-logo span { color: #f5c518; }

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: #d0d8e8;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #ffffff; }

/* Active page highlight */
.nav-links a.active { color: #ffffff; font-weight: 600; }

.nav-yt { margin-left: 2rem; }
.yt-icon { height: 20px; width: auto; display: block; opacity: 0.85; transition: opacity 0.2s; }
.nav-yt a:hover .yt-icon { opacity: 1; }

/* === MOBILE NAV === */
@media (max-width: 767px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #1a2535;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 1.5rem 0.75rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  }
  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.65rem 0;
    font-size: 0.95rem;
  }
  .nav-yt { margin-left: 0; }
}

/* === HERO (homepage) === */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  background: #1a2535 url('../../images/home-bg.png') center / cover no-repeat;
  color: #ffffff;
}
@media (min-width: 768px) {
  .hero { min-height: 80vh; }
}
@media (max-width: 767px) {
  .hero {
    background-image: url('../../images/home-bg-mobile.png');
    background-size: cover;
    background-position: center center;
    align-items: flex-end;
    padding-bottom: 3rem;
  }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 35, 0.58);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-content h1 { margin-bottom: 0.6rem; }
.hero-content p {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  opacity: 0.88;
  margin-bottom: 1.75rem;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  position: relative;
  background: #1a2535 url('../../images/banner.jpg') center / cover no-repeat;
  color: #ffffff;
  text-align: center;
  padding: 3rem 1.5rem;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 35, 0.62);
}
.page-hero h1,
.page-hero p {
  position: relative;
  z-index: 1;
}
.page-hero p {
  margin-top: 0.5rem;
  opacity: 0.82;
  font-size: 0.95rem;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.72em 2em;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 5px 14px rgba(0,0,0,0.18); }

.btn-gold   { background: #f5c518; color: #1a2535; }
.btn-red    { background: #d63031; color: #ffffff; }
.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { border-color: #ffffff; }

/* === LAYOUT HELPERS === */
.section { padding: 3.5rem 1.5rem; }
.section-alt { background: #f5f7fa; }

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

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #1a2535;
}
.section-heading p {
  color: #666;
  font-size: 0.95rem;
  margin-top: 0.4rem;
  margin-bottom: 0;
}

.home-content h2 { color: #1a2535; margin-bottom: 1rem; }

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1.25rem;
}
.bullet-list li {
  padding: 0.3rem 0 0.3rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
}
.bullet-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #1a2535;
  font-weight: 700;
}

/* === SHOP PAGE === */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.shop-card {
  background: #ffffff;
  border: 1px solid #e4e8ef;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.shop-card:hover { transform: translateY(-4px); box-shadow: 0 8px 22px rgba(0,0,0,0.11); }
.shop-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #f0f2f5;
  padding: 1rem;
}
.shop-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.shop-card-body h3 { color: #1a2535; margin: 0; }
.shop-card-sub { font-size: 0.82rem; color: #666; margin: 0; }
.shop-card-desc { font-size: 0.88rem; color: #444; margin: 0.25rem 0 0.5rem; }
.shop-card-price { font-size: 1.4rem; font-weight: 700; color: #1a2535; margin: 0; }
.shop-card-price span { font-size: 0.82rem; font-weight: 500; color: #888; }
.shop-card-body .btn { display: block; width: 100%; text-align: center; margin-top: 0.5rem; }
.shop-card-link {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  color: #888;
  margin-top: 0.35rem;
  transition: color 0.2s;
}
.shop-card-link:hover { color: #1a2535; }

.shop-more {
  text-align: center;
  font-size: 0.88rem;
  color: #999;
}
.shop-more a { color: #f5c518; font-weight: 500; }
.shop-more a:hover { text-decoration: underline; }

/* === LURE PRODUCT PAGES === */
.lure-content { max-width: 800px; }

.product-img { max-width: 600px; margin: 0 auto; }
@media (max-width: 767px) { .product-img { max-width: 72%; } }

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 767px) { .video-grid { gap: 0.75rem; } }
.video-item a { display: block; }
.video-item video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.video-caption {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
}
.video-hint { display: block; text-align: center; font-size: 0.75rem; color: #999; margin-top: 0.2rem; }

.full-video { width: 100%; height: auto; border-radius: 8px; display: block; }

.note-box {
  background: #fff8e1;
  border-left: 4px solid #f5c518;
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
}
.note-box h3 { color: #1a2535; margin-bottom: 0.6rem; }
.note-box p { font-size: 0.93rem; color: #444; }
.note-box p:last-child { margin-bottom: 0; }

.content-link { font-weight: 600; color: #1a2535; text-decoration: underline; }

/* === LURES PAGE: CAROUSEL === */
.carousel-wrap {
  padding: 0.5rem 1.5rem 2rem;
}
@media (min-width: 768px) {
  .carousel-wrap { padding: 0.5rem 2rem 2.5rem; }
}

.lure-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  /* allow cards to extend to full bleed on small screens */
}
.lure-carousel::-webkit-scrollbar { height: 5px; }
.lure-carousel::-webkit-scrollbar-track { background: #eeeeee; border-radius: 3px; }
.lure-carousel::-webkit-scrollbar-thumb { background: #aaaaaa; border-radius: 3px; }

.lure-card {
  scroll-snap-align: start;
  flex: 0 0 260px;
  background: #ffffff;
  border: 1px solid #e4e8ef;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lure-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.11);
}
.lure-card a { display: block; color: inherit; }

.lure-card img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  background: #f0f2f5;
}
.lure-card-body { padding: 1rem; }
.lure-card-body h3 { color: #1a2535; margin-bottom: 0.2rem; }
.lure-card-body p  { font-size: 0.82rem; color: #666; margin: 0; line-height: 1.45; }

/* Hint text on mobile */
.carousel-hint {
  text-align: center;
  font-size: 0.78rem;
  color: #999;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) { .carousel-hint { display: none; } }

/* === CONTACT PAGE === */
.contact-wrap {
  max-width: 620px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: #444; text-transform: uppercase; letter-spacing: 0.04em; }

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #d0d5df;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.93rem;
  color: #212121;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a2535;
  box-shadow: 0 0 0 3px rgba(26,37,53,0.08);
}
.form-group textarea { resize: vertical; min-height: 150px; }

.form-submit { text-align: center; margin-top: 1.75rem; }
.form-submit .btn { min-width: 200px; }

/* Netlify recaptcha centering */
.recaptcha-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

/* === UNDER CONSTRUCTION === */
.uc-section {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.uc-content h2 { color: #1a2535; margin-bottom: 0.75rem; }
.uc-content p   { color: #666; max-width: 400px; margin: 0 auto 1.5rem; }

/* === FOOTER === */
#site-footer {
  margin-top: auto;
  background: #1a2535;
  color: #8898aa;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.8rem;
}
#site-footer a { color: #f5c518; }
#site-footer a:hover { text-decoration: underline; }
#site-footer p { margin: 0.2rem 0; }
