/* ==========================================================================
   SHAY WADE FISHING - CORE DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Imports & Fonts
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&display=swap');

/* --------------------------------------------------------------------------
   2. Design Tokens (CSS Variables)
   -------------------------------------------------------------------------- */
:root {
  /* HSL Color Palette */
  --color-bg-dark: hsl(0, 0%, 3%);
  --color-bg-deep: hsl(0, 0%, 0%);
  --color-text-primary: hsl(210, 40%, 98%);
  --color-text-secondary: hsl(215, 15%, 70%);
  --color-text-muted: hsl(215, 10%, 45%);
  
  /* Glowing Blaze accents (from your logo!) */
  --color-accent-teal: hsl(16, 95%, 52%);
  --color-accent-teal-rgb: 240, 90, 40;
  --color-accent-gold: hsl(38, 92%, 56%);
  --color-accent-gold-rgb: 245, 158, 11;
  --color-accent-navy: hsl(16, 95%, 42%);
  
  /* Glassmorphism Formulas (Sleek Dark Obsidian) */
  --glass-bg: hsla(0, 0%, 3%, 0.7);
  --glass-bg-hover: hsla(0, 0%, 6%, 0.85);
  --glass-border: hsla(16, 95%, 52%, 0.12);
  --glass-border-hover: hsla(16, 95%, 52%, 0.45);
  --glass-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.7);
  --glass-filter: blur(16px) saturate(140%);
  
  /* Typography Variables */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
  
  /* System Spacing */
  --nav-height: 80px;
  --nav-height-shrunk: 60px;
  --max-width: 1200px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --------------------------------------------------------------------------
   3. Modern CSS Reset & Baseline
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-deep);
  color: var(--color-text-primary);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background Atmosphere Gradients */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, hsla(16, 95%, 52%, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 90% 60%, hsla(38, 92%, 56%, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, hsla(16, 95%, 52%, 0.03) 0%, transparent 50%);
  z-index: -2;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   4. Typography Utilities
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
  background: hsla(220, 20%, 25%, 0.8);
  border-radius: 5px;
  border: 2px solid var(--color-bg-deep);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-teal);
}

/* Selection Highlight */
::selection {
  background-color: hsla(187, 85%, 55%, 0.3);
  color: var(--color-text-primary);
}

/* --------------------------------------------------------------------------
   5. Interactive / Layout Shell
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  letter-spacing: -0.02em;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent-teal), var(--color-accent-gold));
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.section-subtitle {
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
  font-size: 1.1rem;
}

/* Premium Button Styling */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: var(--transition-bounce);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent-teal), var(--color-accent-gold));
  color: var(--color-bg-deep);
  box-shadow: 0 4px 20px hsla(187, 85%, 55%, 0.25);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px hsla(187, 85%, 55%, 0.45);
}

.btn-secondary {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--color-text-primary);
  backdrop-filter: var(--glass-filter);
}

.btn-secondary:hover {
  border-color: var(--color-accent-teal);
  color: var(--color-accent-teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.15);
}

/* --------------------------------------------------------------------------
   6. Header & Navigation (Glassmorphic)
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.header.shrunk {
  height: var(--nav-height-shrunk);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-filter);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-glow);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo Design */
.logo-brand {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 0 4px rgba(240, 90, 40, 0.2));
}

.logo-brand:hover .brand-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(240, 90, 40, 0.5));
}

.brand-logo-img-footer {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(240, 90, 40, 0.2));
}

/* Navigation Links */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  transition: var(--transition-smooth);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent-teal), var(--color-accent-gold));
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Mobile Hamburger Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1010;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-primary);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent-teal), var(--color-accent-gold));
  transition: width 0.1s linear;
}

/* --------------------------------------------------------------------------
   7. Hero Section (Dynamic Splash)
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 60px) 24px 60px 24px;
  position: relative;
  text-align: center;
  background-image: 
    radial-gradient(circle, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.8) 70%, rgba(0, 0, 0, 0.95) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 20%, transparent 70%, rgba(0, 0, 0, 1) 100%),
    url('hero_bg.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: scroll; /* parallax-like stability */
}

.hero-content {
  max-width: 800px;
  z-index: 2;
  background: hsla(220, 30%, 3%, 0.55);
  padding: 50px 40px;
  border-radius: 28px;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(var(--color-accent-teal-rgb), 0.15); /* matching brand orange tint! */
  box-shadow: var(--glass-glow), 0 30px 60px rgba(0, 0, 0, 0.8);
}

.hero-brand-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.hero-logo-img {
  height: clamp(50px, 9vh, 70px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(var(--color-accent-teal-rgb), 0.35));
  transition: var(--transition-bounce);
}

.hero-brand-logo:hover .hero-logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 15px rgba(var(--color-accent-teal-rgb), 0.6));
}

/* Stats Badge */
.stats-badge-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.stats-badge-container .stats-badge {
  margin-bottom: 0;
}

.stats-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: var(--glass-filter);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-transform: uppercase;
}

.stats-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent-teal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-accent-teal);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
}

.hero-title span {
  background: linear-gradient(135deg, var(--color-accent-teal) 30%, var(--color-accent-gold) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto 40px auto;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Animated Floating Lure */
.floating-lure {
  position: absolute;
  bottom: 10%;
  right: 15%;
  width: 80px;
  height: 80px;
  opacity: 0.3;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   8. YouTube Section (Interactive Video Card)
   -------------------------------------------------------------------------- */
.youtube-section {
  background-color: var(--color-bg-dark);
}

.video-container {
  max-width: 850px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--glass-glow), 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
  background: var(--color-bg-deep);
  position: relative;
  transition: var(--transition-smooth);
}

.video-container:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-glow), 0 20px 60px hsla(187, 85%, 55%, 0.15);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

/* Premium Video Mockup / Play Screen */
.video-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-container:hover .video-preview {
  transform: scale(1.02);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 12, 26, 0.9) 0%, rgba(5, 12, 26, 0.3) 100%);
  z-index: 1;
}

.play-btn-pulse {
  position: relative;
  z-index: 2;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--color-accent-teal), var(--color-accent-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px hsla(187, 85%, 55%, 0.4);
  transition: var(--transition-bounce);
  border: none;
  cursor: pointer;
}

.play-btn-pulse svg {
  fill: var(--color-bg-deep);
  width: 32px;
  height: 32px;
  transform: translateX(3px); /* Optical centering for play triangle */
}

.play-btn-pulse::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color-accent-teal);
  opacity: 0.5;
  z-index: -1;
  animation: pulse-ring 2s infinite;
}

.video-container:hover .play-btn-pulse {
  transform: scale(1.1);
  box-shadow: 0 0 45px hsla(187, 85%, 55%, 0.6);
}

/* Video Info Card overlays */
.video-info-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.video-meta h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.video-tags {
  display: flex;
  gap: 8px;
}

.video-tag {
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(5px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 3;
}

/* --------------------------------------------------------------------------
   9. Socials Section (Glass Grid)
   -------------------------------------------------------------------------- */
.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.social-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-bounce);
  backdrop-filter: var(--glass-filter);
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 70%, hsla(187, 85%, 55%, 0.03) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.social-card:hover {
  transform: translateY(-10px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-glow), 0 10px 40px rgba(14, 165, 233, 0.1);
}

.social-card:hover::before {
  opacity: 1;
}

.social-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(220, 20%, 15%, 0.5);
  border: 1px solid var(--glass-border);
  margin-bottom: 24px;
  transition: var(--transition-bounce);
}

.social-card:hover .social-icon-box {
  transform: scale(1.1) rotate(5deg);
  background: var(--color-bg-deep);
}

.social-card[data-platform="youtube"]:hover .social-icon-box {
  border-color: #ff0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.social-card[data-platform="instagram"]:hover .social-icon-box {
  border-color: #e1306c;
  box-shadow: 0 0 20px rgba(225, 48, 108, 0.3);
}

.social-card[data-platform="tiktok"]:hover .social-icon-box {
  border-color: var(--color-accent-teal);
  box-shadow: 0 0 20px hsla(187, 85%, 55%, 0.3);
}

.social-icon-box svg {
  width: 36px;
  height: 36px;
  fill: var(--color-text-primary);
  transition: var(--transition-smooth);
}

.social-card[data-platform="youtube"] .social-icon-box svg {
  fill: #ff0000;
}

.social-card[data-platform="instagram"] .social-icon-box svg {
  fill: var(--color-text-primary); /* Default icon fill, will customize */
}

.social-card[data-platform="tiktok"] .social-icon-box svg {
  fill: var(--color-text-primary);
}

.social-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.social-handle {
  color: var(--color-accent-teal);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.social-stat {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.social-desc {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   10. Work With Me Section (Form validation and feedback)
   -------------------------------------------------------------------------- */
.contact-section {
  background-color: var(--color-bg-dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.contact-info p {
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  max-width: 450px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: var(--glass-filter);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-accent-teal);
}

.contact-text h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-text p {
  margin: 0;
  color: var(--color-text-primary);
  font-weight: 500;
}

/* Glass Contact Form */
.contact-form {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: var(--glass-filter);
  box-shadow: var(--glass-glow);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.form-input, .form-textarea {
  width: 100%;
  background: hsla(220, 20%, 5%, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-accent-teal);
  background: hsla(220, 20%, 8%, 0.8);
  box-shadow: 0 0 15px hsla(187, 85%, 55%, 0.15);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* User Validation States */
.form-input:user-valid:not(:placeholder-shown), 
.form-textarea:user-valid:not(:placeholder-shown) {
  border-color: hsla(150, 80%, 40%, 0.5);
  box-shadow: 0 0 10px hsla(150, 80%, 40%, 0.1);
}

.form-input:user-invalid:not(:placeholder-shown), 
.form-textarea:user-invalid:not(:placeholder-shown) {
  border-color: hsla(0, 80%, 50%, 0.5);
  box-shadow: 0 0 10px hsla(0, 80%, 50%, 0.1);
}

/* Fallback: Make empty required fields show up red immediately when user tries to submit */
.contact-form.was-validated .form-input:invalid,
.contact-form.was-validated .form-textarea:invalid {
  border-color: hsla(0, 80%, 50%, 0.5);
  box-shadow: 0 0 10px hsla(0, 80%, 50%, 0.15);
}

.contact-form.was-validated .form-input:valid,
.contact-form.was-validated .form-textarea:valid {
  border-color: hsla(150, 80%, 40%, 0.5);
  box-shadow: 0 0 10px hsla(150, 80%, 40%, 0.1);
}

/* Spam Honeypot Field */
.field-honey {
  display: none;
}

/* Form Toast Notification */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--color-accent-teal);
  box-shadow: var(--glass-glow), 0 0 20px hsla(16, 95%, 52%, 0.2);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: var(--glass-filter);
  z-index: 1100;
  
  /* Modern Fade & Slide reveal instead of negative coordinate offsets */
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast-icon {
  width: 24px;
  height: 24px;
  background: hsla(187, 85%, 55%, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--color-accent-teal);
}

.toast-message h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.toast-message p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* --------------------------------------------------------------------------
   11. Footer Section
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: 40px 0;
  text-align: center;
  background: var(--color-bg-deep);
  position: relative;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.footer-logo span {
  background: linear-gradient(135deg, var(--color-accent-teal), var(--color-accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-socials {
  display: flex;
  gap: 20px;
  margin: 10px 0;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
}

.footer-social-link:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent-teal);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--color-text-secondary);
  transition: var(--transition-smooth);
}

.footer-social-link:hover svg {
  fill: var(--color-accent-teal);
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   12. CSS Native Scroll-Driven Animations & Keyframes
   -------------------------------------------------------------------------- */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(14, 165, 233, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(8deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Modern Entry Reveals */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes entry-fade-up {
      from {
        opacity: 0;
        transform: translateY(60px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .reveal-on-scroll {
      animation: entry-fade-up auto linear forwards;
      animation-timeline: view();
      animation-range: entry 10% cover 30%;
    }
  }
}

/* --------------------------------------------------------------------------
   13. Responsive Breakpoints & Mobile Adaptability
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .contact-info {
    text-align: center;
  }
  
  .contact-info p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-details {
    align-items: center;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }
  
  /* Mobile Navigation Slide-in Panel */
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--nav-height));
    background: hsla(220, 45%, 5%, 0.98);
    backdrop-filter: blur(25px);
    border-left: 1px solid var(--glass-border);
    flex-direction: column;
    padding: 40px 30px;
    gap: 24px;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.1rem;
    display: block;
    width: 100%;
  }

  /* Hamburger Active Animation */
  .mobile-nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .mobile-nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-form {
    padding: 24px;
  }
  
  .floating-lure {
    display: none;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .video-info-overlay {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    bottom: 16px;
    left: 16px;
    right: 16px;
  }
}

/* ==========================================================================
   14. DYNAMIC VERTICAL SCROLLBAR (Hook & Line Indicator)
   ========================================================================== */
.scroll-line-container {
  position: fixed;
  right: 24px;
  top: 120px;
  bottom: 60px;
  width: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 999;
  pointer-events: none; /* Let clicks pass through */
}

.fishing-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    hsla(187, 85%, 55%, 0.2) 0%,
    hsla(187, 85%, 55%, 0.4) 80%,
    hsla(38, 92%, 56%, 0.5) 100%
  );
  border-radius: 1px;
}

.fishing-hook {
  position: absolute;
  top: 0%; /* Driven by app.js scroll spy percentage */
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-teal);
  transition: top 0.1s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 0 8px hsla(187, 85%, 55%, 0.6));
}

.fishing-hook svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-accent-teal);
  transition: stroke 0.3s ease;
}

.bottom-fish {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%) scale(1);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsla(215, 20%, 30%, 0.8);
  transition: var(--transition-bounce);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

.bottom-fish svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  transition: fill 0.3s ease;
}

/* Biting / Catch Trigger Active Vibe */
.bottom-fish.active {
  color: var(--color-accent-gold);
  transform: translateX(-50%) scale(1.3) rotate(-5deg);
  filter: drop-shadow(0 0 15px hsla(38, 92%, 56%, 0.6));
}

.bottom-fish::after {
  content: 'GOTCHA!';
  position: absolute;
  top: -24px;
  background: var(--color-accent-gold);
  color: var(--color-bg-deep);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition-bounce);
  pointer-events: none;
}

.bottom-fish.active::after {
  opacity: 1;
  transform: scale(1);
}

/* Responsive Hook Adjustment */
@media (max-width: 768px) {
  .scroll-line-container {
    display: none; /* Hide on mobile devices to preserve readability */
  }
}
