/* =============================================
   BLUE DEEP OPEN — Homepage Styles (home.css)
   ============================================= */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 60px 170px;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,92,122,0.55) 0%, transparent 70%);
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: glowPulse 7s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.85; transform: translate(-50%, -50%) scale(1.12); }
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: particleFloat var(--dur) ease-in-out infinite var(--delay);
  opacity: 0;
}

@keyframes particleFloat {
  0%   { transform: translateY(0);     opacity: 0; }
  20%  { opacity: 0.55; }
  80%  { opacity: 0.2; }
  100% { transform: translateY(-70px); opacity: 0; }
}

/* Waves */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
}

.wave {
  position: absolute;
  width: 200%;
  height: 100%;
  left: -50%;
}

.wave1 { animation: waveDrift 9s  ease-in-out infinite; bottom: 0; }
.wave2 { animation: waveDrift 13s ease-in-out infinite reverse; bottom: 5%; }
.wave3 { animation: waveDrift 17s ease-in-out infinite; bottom: 10%; }

@keyframes waveDrift {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(4%); }
}

/* Countdown */
.hero-countdown {
  position: absolute;
  top: 100px;
  right: 60px;
  text-align: right;
  z-index: 10;
  animation: fadeUp 1s ease 1s both;
}

.cd-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(184,136,42,0.7);
  margin-bottom: 10px;
  font-style: italic;
}

.cd-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.cd-unit { text-align: center; }

.cd-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
  display: block;
}

.cd-sep {
  font-family: var(--font-display);
  font-size: 34px;
  color: rgba(184,136,42,0.5);
  padding-top: 4px;
  line-height: 1;
}

.cd-sub {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  text-align: center;
  margin-top: 4px;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 720px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-style: italic;
  animation: fadeUp 1s ease 0.2s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 128px);
  line-height: 0.92;
  color: var(--white);
  letter-spacing: 2px;
  animation: fadeUp 1s ease 0.4s both;
  position: relative;
  z-index: 2;
}

.hero-title-gold    { color: var(--gold-light); }
.hero-title-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(184,136,42,0.45);
  display: block;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-top: 24px;
  max-width: 460px;
  line-height: 1.7;
  animation: fadeUp 1s ease 0.6s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.8s both;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 130px;
  left: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s ease 1.4s both;
}

.scroll-txt {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(184,136,42,0.45);
  writing-mode: vertical-lr;
  font-style: italic;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* Stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  border-top: 1px solid rgba(184,136,42,0.15);
  z-index: 10;
  animation: fadeUp 1s ease 1.2s both;
}

.hs-item {
  flex: 1;
  padding: 26px 36px;
  border-right: 1px solid rgba(184,136,42,0.1);
  background: rgba(13,51,71,0.88);
  backdrop-filter: blur(6px);
}
.hs-item:last-child { border-right: none; }

.hs-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold-light);
  letter-spacing: 2px;
  line-height: 1;
}

.hs-lbl {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
  font-style: italic;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SECTION 2: LATEST JOINS ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card { overflow: hidden; }

.news-photo {
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  letter-spacing: 2px;
}

.news-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  font-style: italic;
}

.badge-angler  { background: var(--gold-pale);  color: var(--gold); }
.badge-charter { background: var(--ocean-pale); color: var(--ocean); }
.badge-captain { background: #F0EBE8;           color: #8B4513; }

.news-body { padding: 24px 24px 16px; }

.news-meta {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-style: italic;
}

.news-name {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 10px;
}

.news-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.news-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--sand2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-tag {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
}

.news-arrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--ocean);
  text-decoration: none;
  transition: color 0.2s;
}
.news-arrow:hover { color: var(--gold); }

/* ── SECTION 3: ABOUT ── */
.about-section {
  background: var(--navy);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

.about-fish-bg {
  position: absolute;
  right: -60px;
  bottom: -40px;
  opacity: 0.04;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 12px;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 68px);
  color: var(--white);
  letter-spacing: 2px;
  line-height: 0.95;
  margin-bottom: 28px;
}
.about-title span { color: var(--gold-light); }

.about-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.58);
  line-height: 1.85;
}
.about-body p + p { margin-top: 16px; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,136,42,0.2);
  padding: 28px 22px;
  transition: background 0.3s;
}
.about-stat-card:hover { background: rgba(255,255,255,0.08); }

.asc-num {
  font-family: var(--font-display);
  font-size: 46px;
  color: var(--gold-light);
  letter-spacing: 2px;
  line-height: 1;
}

.asc-lbl {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-style: italic;
  margin-top: 6px;
}

/* ── SECTION 4: CAROUSEL ── */
.merch-section { padding: 80px 0; background: var(--white); overflow: hidden; }
.merch-header  { padding: 0 60px; margin-bottom: 48px; }

.carousel-wrap  { overflow: hidden; width: 100%; }
.carousel-track {
  display: flex;
  animation: carouselScroll 28s linear infinite;
  width: max-content;
}
.carousel-track:hover { animation-play-state: paused; }

@keyframes carouselScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-tile {
  width: 180px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--sand2);
  padding: 0 20px;
  cursor: default;
  transition: background 0.3s;
  text-align: center;
}
.partner-tile:hover { background: var(--sand); }

.partner-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--muted);
  transition: color 0.3s;
  line-height: 1.2;
}
.partner-sub {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sand2);
  margin-top: 4px;
  font-style: italic;
  transition: color 0.3s;
}
.partner-tile:hover .partner-name { color: var(--ocean); }
.partner-tile:hover .partner-sub  { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { padding: 80px 24px 160px; }
  .hero-countdown { display: none; }
  .scroll-hint { display: none; }
  .hero-stats { flex-wrap: wrap; }
  .hs-item { flex: 1 1 50%; border-bottom: 1px solid rgba(184,136,42,0.1); }
  .news-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-section { padding: 64px 24px; }
  .merch-header { padding: 0 24px; }
}
