/* ============================================
   SoCal Fishing With Jake
   Clean modern design — coastal/ocean aesthetic
   ============================================ */

/* Color palette matched to flyingfishoutdoors.com */
:root {
  --bg-dark: #071620;
  --bg-darker: #040e16;
  --bg-mid: #0a1e2a;
  --ocean-blue: #20b2aa;     /* light sea green / primary teal */
  --ocean-aqua: #40e0d0;     /* turquoise */
  --ocean-light: #7fffd4;    /* aquamarine highlight */
  --ocean-deep: #17a49d;     /* darker teal */
  --accent: #ff6b6b;          /* coral accent */
  --text: #ffffff;
  --text-bright: #b3fffc;
  --text-muted: rgba(255,255,255,0.7);
  --card-bg: #0a1e2a;
  --border: rgba(127,255,212,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(4, 14, 22, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--text);
  text-decoration: none;
  line-height: 1;
}
.logo span {
  display: block;
  font-size: 14px;
  background: linear-gradient(135deg, #7fffd4 0%, #40e0d0 50%, #20b2aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 4px;
}

.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--ocean-light);
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #7fffd4, #20b2aa);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

/* ============ INSTAGRAM LINKS ============ */
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: 999px;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.ig-link:hover {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(220,39,67,0.4);
}
.ig-link::after { display: none !important; }
.ig-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.footer-ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220,39,67,0.5);
}
.footer-ig .ig-icon {
  width: 20px;
  height: 20px;
}

/* ============ HORIZONTAL HERO BANNER ============ */
.hero-banner {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 500px;
  max-height: 800px;
  margin-top: 72px; /* offset for fixed header */
  overflow: hidden;
  background: #000;
}
.banner-fader {
  position: relative;
  width: 100%;
  height: 100%;
}
.banner-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.banner-slide.active {
  opacity: 1;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 24px 60px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(5,13,24,0) 0%, rgba(5,13,24,0) 55%, rgba(5,13,24,0.85) 100%);
}
.banner-overlay h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 3px;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}
.banner-overlay h1 .accent {
  background: linear-gradient(135deg, #7fffd4 0%, #40e0d0 50%, #20b2aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.banner-overlay .tagline {
  margin-top: 16px;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--text);
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  font-weight: 300;
}

/* ============ ABOUT JAKE SECTION ============ */
.about-jake {
  background: linear-gradient(180deg, var(--bg-darker), var(--bg-dark));
  padding: 80px 0;
}
.about-jake-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.about-jake .about-tagline {
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--ocean-light);
  margin-bottom: 24px;
  font-weight: 500;
}
.about-jake p {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-jake .closing {
  margin: 32px 0;
  color: var(--text);
  font-size: 18px;
}
.about-jake .hero-buttons {
  justify-content: center;
  margin-top: 24px;
}

/* ============ SPLIT HERO (deprecated, kept for compatibility) ============ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 72px; /* offset for fixed header */
}
.hero-split-left {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--ocean-deep) 100%);
  display: flex;
  align-items: center;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
}
.hero-split-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 60px, rgba(0,168,232,0.04) 60px, rgba(0,168,232,0.04) 61px);
  pointer-events: none;
}
.hero-split-content {
  max-width: 540px;
  position: relative;
  z-index: 2;
}
.hero-split-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 84px);
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 16px;
}
.hero-split-content h1 .accent {
  color: var(--accent);
  display: block;
}
.hero-split-content .tagline {
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--ocean-blue);
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero-split-content p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.hero-split-content .closing {
  margin-top: 24px;
  margin-bottom: 32px;
  color: var(--text);
  font-size: 17px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--ocean-light);
  border: 2px solid var(--ocean-blue);
  padding: 14px 36px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: var(--ocean-blue);
  color: var(--bg-darker);
  border-color: var(--ocean-light);
}

/* Right side: scrolling photo loop */
.hero-split-right {
  position: relative;
  overflow: hidden;
  background: #000;
}
.photo-loop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.photo-track {
  display: flex;
  flex-direction: column;
  height: 200%; /* 12 slides total, 2 sets of 6 */
  animation: photoScroll 18s linear infinite;
}
.photo-slide {
  flex: 1 0 16.6667%; /* each slide is 1/6 of the track height */
  background-size: cover;
  background-position: center; /* default; overridden inline per-photo to keep Jake's face in frame */
  background-repeat: no-repeat;
  position: relative;
}
.photo-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5,13,24,0.4) 0%, transparent 30%);
}
@keyframes photoScroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Original full-screen hero (kept for reference but unused) */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #001f3f 0%, #003459 50%, #00a8e8 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="w" x1="0" x2="0" y1="0" y2="1"><stop offset="0" stop-color="%23ffffff" stop-opacity="0.05"/><stop offset="1" stop-color="%23ffffff" stop-opacity="0"/></linearGradient></defs><path fill="url(%23w)" d="M0,400 C300,300 600,500 1200,350 L1200,800 L0,800 Z"/><path fill="url(%23w)" d="M0,500 C400,420 800,580 1200,450 L1200,800 L0,800 Z"/></svg>');
  background-size: cover;
  opacity: 0.4;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,13,24,0.3) 0%, rgba(5,13,24,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 900px;
}
.hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.hero-content p {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 300;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #20b2aa 0%, #17a49d 100%);
  color: #040e16;
  padding: 16px 40px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(32, 178, 170, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(127, 255, 212, 0.5);
  background: linear-gradient(135deg, #7fffd4 0%, #20b2aa 100%);
}

/* ============ PAGE HERO (subpages) ============ */
.page-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(32,178,170,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(64,224,208,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #040e16 0%, #071620 60%, #0a1e2a 100%);
  text-align: center;
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 2px;
}
.page-hero .lead {
  color: var(--text-muted);
  font-size: 18px;
  margin-top: 12px;
}

/* ============ SECTIONS ============ */
section { padding: 80px 0; }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #7fffd4, #20b2aa);
  margin: 16px auto 0;
}

.lead {
  text-align: center;
  color: var(--text-muted);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* ============ AS FEATURED IN ============ */
.as-featured {
  background: var(--bg-darker);
  padding: 50px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.as-featured-label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.as-featured-mag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  padding: 12px 32px;
  border: 2px solid var(--border);
  border-radius: 4px;
  transition: all 0.25s;
}
.as-featured-mag:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.as-featured-mag .mag-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: 4px;
  line-height: 1;
  background: linear-gradient(135deg, #7fffd4 0%, #40e0d0 50%, #20b2aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.as-featured-mag .mag-tag {
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.as-featured-mag .mag-cta {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

/* ============ VIDEO GRID ============ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.video-card {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--ocean-light);
  box-shadow: 0 8px 24px rgba(32,178,170,0.2);
}
.video-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #040e16, #0a1e2a, #17a49d);
}
.video-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  padding: 20px 20px 8px;
}
.video-card p {
  padding: 0 20px 20px;
  color: var(--text-muted);
  font-size: 14px;
}

/* ============ CATEGORY GRID ============ */
.categories { background: var(--bg-darker); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.category-card {
  position: relative;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  transition: transform 0.3s;
  cursor: pointer;
}
.category-card:hover { transform: scale(1.02); }
.category-card.ocean {
  background: linear-gradient(135deg, #040e16, #20b2aa);
}
.category-card.stream {
  background: linear-gradient(135deg, #0a1e2a, #17a49d 70%, #40e0d0);
}
.category-card.lake {
  background: linear-gradient(135deg, #071620, #20b2aa 60%, #7fffd4);
}
.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.category-content {
  position: relative;
  z-index: 2;
}
.category-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.category-content p {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* ============ SHOP CTA ============ */
.shop-cta {
  background: linear-gradient(135deg, var(--bg-darker), rgba(32,178,170,0.15), var(--bg-dark));
  text-align: center;
}

/* ============ ABOUT ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 4/5;
  border-radius: 8px;
}
.about-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: var(--ocean-light);
}
.about-text p {
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 17px;
}
.about-text strong {
  color: var(--text);
}

/* ============ SPECIES SECTIONS ============ */
.species-section {
  border-top: 1px solid var(--border);
}
.species-section.ocean-bg {
  background: linear-gradient(180deg, var(--bg-darker), #0a1e2a, var(--bg-dark));
}
.species-section.stream-bg {
  background: linear-gradient(180deg, var(--bg-dark), rgba(32,178,170,0.15) 50%, var(--bg-dark));
}
.species-section.lake-bg {
  background: linear-gradient(180deg, var(--bg-dark), rgba(127,255,212,0.08) 50%, var(--bg-darker));
}
.species-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.species-card {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s;
}
.species-card:hover {
  transform: translateY(-4px);
  border-color: var(--ocean-light);
  box-shadow: 0 8px 24px rgba(32,178,170,0.2);
}
.species-photo {
  aspect-ratio: 4/3;
}
.species-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  padding: 20px 20px 8px;
}
.species-card p {
  padding: 0 20px 20px;
  color: var(--text-muted);
  font-size: 14px;
}

/* ============ SHOP / BRANDS ============ */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.brand-card {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 32px 24px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.brand-card:hover {
  transform: translateY(-4px);
  border-color: var(--ocean-light);
  box-shadow: 0 8px 24px rgba(32,178,170,0.2);
}
.brand-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
}
.brand-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.brand-card p {
  color: var(--text-muted);
  font-size: 14px;
  flex-grow: 1;
  margin-bottom: 16px;
}
.shop-link {
  color: var(--ocean-light);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.picks-section {
  background: var(--bg-darker);
  text-align: center;
}

/* ============ PLACEHOLDERS (until real photos) ============ */
.placeholder,
.placeholder-photo {
  background:
    linear-gradient(135deg, rgba(32,178,170,0.15), rgba(10,30,42,0.4)),
    repeating-linear-gradient(45deg, transparent 0, transparent 10px, rgba(127,255,212,0.04) 10px, rgba(127,255,212,0.04) 20px);
  position: relative;
}
.placeholder::after,
.placeholder-photo::after {
  content: '🎣';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  opacity: 0.3;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}
.site-footer p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 4px 0;
}
.site-footer .disclaimer {
  font-size: 12px;
  opacity: 0.7;
}

/* ============ MOBILE ============ */
@media (max-width: 968px) {
  .hero-banner {
    height: 60vh;
    min-height: 400px;
  }
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-split-left {
    padding: 60px 30px;
    order: 2;
  }
  .hero-split-right {
    order: 1;
    height: 60vh;
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-darker);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .main-nav.open { display: flex; }
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  section { padding: 60px 0; }
  .hero-split-content h1 { font-size: 56px; }
}
