/*
Theme Name: SDRRC Rebuild v1
Theme URI: https://sandiegorodandreelclub.com
Author: Robert Marro / Tenex.ai
Description: Complete rebuild of SDRRC website with automated features and modern design.
Version: 2.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: Proprietary
Text Domain: sdrrc
*/

/* ==========================================================================
   Fonts — Plus Jakarta Sans (closest to UniversalSans)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ==========================================================================
   Design Tokens — mirrors clay.global's :root
   ========================================================================== */

:root {
  --color-white:      #ffffff;
  --color-black:      #06070a;
  --color-gray-5:     #f3f4f6;
  --color-gray-100:   #e6e8eb;
  --color-gray-200:   #cbd0d6;
  --color-gray-300:   #b2b8c2;
  --color-gray-500:   #7f8694;
  --color-gray-700:   #4e5361;
  --color-gray-850:   #252833;
  --color-gray-900:   #171921;

  /* SDRRC brand on top of clay's palette */
  --color-navy:       #0b1f3f;
  --color-navy-mid:   #1a4d7e;
  --color-teal:       #5eb3d6;
  --color-sky:        #d6eaf8;   /* light blue — services */
  --color-pale-blue:  #eaf1f8;   /* pale blue-gray — gallery */

  --ease-out:  cubic-bezier(0.19, 1, 0.22, 1);
  --ease:      cubic-bezier(1, 0, 0, 1);
  --default:   cubic-bezier(0.25, 0.1, 0.25, 1);

  --section-v: 210px;
  --section-v-sm: 120px;

  /* ==========================================================================
     UNIFIED RESPONSIVE SYSTEM
     ========================================================================== */

  /* Breakpoints (mobile-first) */
  --breakpoint-mobile: 320px;
  --breakpoint-tablet: 768px;
  --breakpoint-desktop: 1024px;
  --breakpoint-large: 1440px;
  --breakpoint-xl: 1920px;

  /* Fluid Typography */
  --font-size-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --font-size-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --font-size-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --font-size-md: clamp(1.125rem, 1rem + 0.625vw, 1.375rem);
  --font-size-lg: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem);
  --font-size-xl: clamp(1.5rem, 1.3rem + 1vw, 2.25rem);
  --font-size-2xl: clamp(1.875rem, 1.6rem + 1.375vw, 3rem);
  --font-size-3xl: clamp(2.25rem, 1.9rem + 1.75vw, 4rem);
  --font-size-4xl: clamp(3rem, 2.5rem + 2.5vw, 5.5rem);
  --font-size-5xl: clamp(3.5rem, 3rem + 3vw, 7rem);

  /* Spacing Scale (mobile-first, fluid) */
  --spacing-xs: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
  --spacing-sm: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
  --spacing-md: clamp(1rem, 0.8rem + 1vw, 1.5rem);
  --spacing-lg: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
  --spacing-xl: clamp(2rem, 1.6rem + 2vw, 3.5rem);
  --spacing-2xl: clamp(3rem, 2.5rem + 2.5vw, 5rem);
  --spacing-3xl: clamp(4rem, 3.5rem + 3vw, 7rem);

  /* Container Widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1536px;

  /* Grid Gaps */
  --grid-gap-sm: clamp(1rem, 0.8rem + 1vw, 1.5rem);
  --grid-gap-md: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
  --grid-gap-lg: clamp(2rem, 1.6rem + 2vw, 3.5rem);
}

/* ==========================================================================
   RESPONSIVE CONTAINER SYSTEM
   ==========================================================================
   Standardized container classes for consistent content width control.
   All containers use fluid padding for responsive edge spacing.
   ========================================================================== */

/* Standard Container (max-width: 1400px) */
.container-responsive {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 3rem);
  padding-right: clamp(1rem, 5vw, 3rem);
}

/* Narrow Container (for text-heavy content) */
.container-narrow {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
}

/* Wide Container (full bleed with small gutters) */
.container-wide {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

/* Fluid Container (no max-width, just padding) */
.container-fluid {
  width: 100%;
  padding-left: clamp(1rem, 5vw, 3rem);
  padding-right: clamp(1rem, 5vw, 3rem);
}

/* ==========================================================================
   RESPONSIVE GRID SYSTEM
   ==========================================================================
   Modern CSS Grid layouts that adapt automatically to viewport size.
   Uses auto-fit/auto-fill for intelligent column wrapping.

   USAGE:
   - .responsive-grid: Auto-fit grid (columns collapse gracefully)
   - .grid-2-col: Two-column responsive grid
   - .grid-3-col: Three-column responsive grid
   - .grid-4-col: Four-column responsive grid
   ========================================================================== */

/* Responsive Auto-Fit Grid (columns collapse gracefully) */
.responsive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: var(--grid-gap-md);
}

/* Responsive Auto-Fill Grid (maintains column count) */
.responsive-grid-fill {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: var(--grid-gap-md);
}

/* Two-Column Responsive Grid */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap-lg);
}

@media (min-width: 768px) {
  .grid-2-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Three-Column Responsive Grid */
.grid-3-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap-md);
}

@media (min-width: 640px) {
  .grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3-col {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Four-Column Responsive Grid */
.grid-4-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap-sm);
}

@media (min-width: 640px) {
  .grid-4-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4-col {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1440px) {
  .grid-4-col {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Flexible Sidebar Layout */
.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap-lg);
}

@media (min-width: 768px) {
  .layout-sidebar {
    grid-template-columns: 300px 1fr;
  }
}

@media (min-width: 1024px) {
  .layout-sidebar {
    grid-template-columns: 350px 1fr;
  }
}

/* ==========================================================================
   RESPONSIVE UTILITY CLASSES
   ==========================================================================
   Common responsive patterns for quick application.
   Use these sparingly - prefer semantic, component-specific classes.
   ========================================================================== */

/* Flexbox Utilities */
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-start {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

/* Gap Utilities */
.gap-xs { gap: var(--spacing-xs); }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }
.gap-xl { gap: var(--spacing-xl); }
.gap-2xl { gap: var(--spacing-2xl); }

/* Spacing Utilities */
.mt-auto { margin-top: auto; }
.mb-auto { margin-bottom: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Responsive Text Alignment */
@media (max-width: 767px) /* Mobile */ {
  .text-center-mobile { text-align: center; }
  .text-left-mobile { text-align: left; }
}

@media (min-width: 768px) {
  .text-left-tablet { text-align: left; }
  .text-center-tablet { text-align: center; }
  .text-right-tablet { text-align: right; }
}

/* Width Utilities */
.w-full { width: 100%; }
.w-auto { width: auto; }
.max-w-full { max-width: 100%; }

/* Display Utilities */
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }

/* Responsive Display Utilities */
.hide-mobile { display: none; }

@media (min-width: 768px) {
  .hide-mobile { display: block; }
}

.show-mobile { display: block; }

@media (min-width: 768px) {
  .show-mobile { display: none; }
}

.hide-tablet { display: block; }

@media (min-width: 768px) and (max-width: 1023px) {
  .hide-tablet { display: none; }
}

.hide-desktop { display: block; }

@media (min-width: 1024px) {
  .hide-desktop { display: none; }
}

/* ==========================================================================
   MEDIA QUERY BREAKPOINT REFERENCE
   ==========================================================================

   MOBILE-FIRST APPROACH:
   Base styles (no media query) apply to mobile (320px+)
   Media queries progressively enhance for larger screens

   STANDARD BREAKPOINTS:

   Mobile (Base):
   - No media query needed
   - Target: 320px - 767px
   - Devices: All mobile phones

   Tablet:
   @media (min-width: 768px) { }
   - Target: 768px - 1023px
   - Devices: iPads, tablets, large phones (landscape)

   Desktop:
   @media (min-width: 1024px) { }
   - Target: 1024px - 1439px
   - Devices: Laptops, small desktops

   Large Desktop:
   @media (min-width: 1440px) { }
   - Target: 1440px - 1919px
   - Devices: Large monitors (24"+)

   Extra Large:
   @media (min-width: 1920px) { }
   - Target: 1920px+
   - Devices: 1080p+ displays, ultra-wide monitors

   COMMON PATTERNS:

   // Mobile-only (use sparingly, prefer mobile-first)
   @media (max-width: 767px) /* Mobile */ { }

   // Tablet-only (specific range)
   @media (min-width: 768px) and (max-width: 1023px) { }

   // Desktop and above (most common)
   @media (min-width: 1024px) { }

   // Large desktop and above
   @media (min-width: 1440px) { }

   BEST PRACTICES:
   ✓ Write base styles for mobile first (no media query)
   ✓ Use min-width queries to enhance for larger screens
   ✓ Keep breakpoints consistent across entire theme
   ✓ Test on real devices, not just browser resize
   ✓ Use CSS custom properties (variables) for reusability
   ✓ Leverage clamp() for fluid scaling between breakpoints

   ✗ Avoid max-width unless targeting mobile-only
   ✗ Don't create too many breakpoints (stick to 4-5 max)
   ✗ Don't use fixed pixel values when fluid units work better

   ========================================================================== */

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px; /* Mobile-first: prevents iOS auto-zoom on form inputs */
  perspective: 1200px;
  overflow-x: hidden; /* Prevent horizontal scroll */
  width: 100%;
  max-width: 100vw;
}

/* Responsive font scaling */
@media (min-width: 768px) {
  html { font-size: 17px; }
}

@media (min-width: 1024px) {
  html { font-size: 18px; }
}

body {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-black);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden; /* Prevent horizontal scroll */
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-black);
}

h1 { font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 800; }
h2 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 800; }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 600; }

p { line-height: 1.7; }

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

.container {
  max-width: var(--container-xl);
  padding-left: clamp(1.5rem, 5vw, 2.5rem);
  padding-right: clamp(1.5rem, 5vw, 2.5rem);
  margin: 0 auto;
}

/* Section background variants */
.section-white { background: var(--color-white); color: var(--color-black); }
.section-gray  { background: var(--color-gray-5); color: var(--color-black); }
.section-black { background: var(--color-gray-900); color: var(--color-white); }
.section-navy  { background: var(--color-navy);  color: var(--color-white); }

/* Eyebrow / label */
.eyebrow {
  display: inline-block;
  font-size: 0.7222rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gray-500);
  margin-bottom: 1.25rem;
}
.section-black .eyebrow,
.section-navy .eyebrow  { color: var(--color-teal); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: clamp(0.875rem, 2vw, 1rem); /* Responsive font size */
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.875rem 1.75rem; /* Increased vertical padding for 44px min height */
  min-height: 44px; /* WCAG 2.1 Level AAA touch target */
  min-width: 44px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  line-height: 1.2;
  white-space: nowrap;
}

.btn-dark {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
}
.btn-dark:hover { background: var(--color-gray-850); border-color: var(--color-gray-850); color: var(--color-white); transform: translateY(-1px); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--color-gray-200);
  color: var(--color-black);
}
.btn-outline-dark:hover { border-color: var(--color-black); color: var(--color-black); transform: translateY(-1px); }

.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--color-white);
}
.btn-outline-white:hover { border-color: var(--color-white); color: var(--color-white); transform: translateY(-1px); }

.btn-white {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-black);
}
.btn-white:hover { background: var(--color-gray-5); transform: translateY(-1px); }

/* Underline link (clay style "View case study →") */
.link-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8889rem;
  font-weight: 700;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.2s var(--default);
}
.link-text:hover { opacity: 0.6; }
.link-text .arrow { transition: transform 0.25s var(--ease-out); }
.link-text:hover .arrow { transform: translate(3px, -3px); }

/* ==========================================================================
   Header / Nav  — fixed, always navy
   ========================================================================== */
/* ==========================================================================
   Header / Nav — MOBILE-FIRST (320px - 767px base, then tablet, then desktop)
   Fixed header with responsive padding and touch-friendly mobile menu
   ========================================================================== */

/* ==========================================================================
   MOBILE BASE (320px - 767px) — NO MEDIA QUERY
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 102;

  /* Mobile-first: Use CSS variables for responsive padding */
  padding: var(--spacing-sm) var(--spacing-md);

  /* Auto height - adapts to content on mobile */
  min-height: 56px;
  height: auto;

  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; /* Context for absolute positioned toggle button */

  /* Glassmorphic navy background */
  background: rgba(37, 40, 51, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); /* Safari support */

  transition: box-shadow 0.35s var(--default);
}

/* Bottom gradient border */
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    transparent 10%,
    rgba(10, 10, 12, 0.5) 50%,
    transparent 90%,
    transparent 100%
  );
}

/* Nav container flex control */
.site-header > nav {
  flex: 0 1 auto;
}

/* Scrolled state - enhanced shadow */
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

/* ==========================================================================
   MOBILE NAVIGATION - Hidden by default, opens as dropdown
   ========================================================================== */

.header-nav {
  /* Mobile: Hidden dropdown menu */
  display: none;
  position: fixed;
  top: 56px; /* Matches min-height of .site-header */
  left: 0;
  right: 0;

  background: var(--color-navy);
  flex-direction: column;
  align-items: stretch;

  /* Mobile-first padding using CSS variables */
  padding: var(--spacing-md) var(--spacing-md) var(--spacing-lg);

  border-top: 1px solid rgba(255,255,255,0.08);
  gap: var(--spacing-xs);
  list-style: none;

  box-shadow: 0 16px 32px rgba(0,0,0,0.35);

  /* Smooth open/close animation */
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s var(--default), transform 0.3s var(--default);
}

/* Open state */
.header-nav.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Mobile navigation links - LARGE touch targets */
.header-nav li a {
  display: block;
  padding: 1rem var(--spacing-md); /* 16px vertical = touch-friendly */
  border-radius: 8px;

  /* Responsive font size using clamp */
  font-size: clamp(0.95rem, 0.9rem + 0.5vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.01em;

  color: rgba(255,255,255,0.85);
  text-align: left;

  transition: background 0.2s var(--default), color 0.2s var(--default);
}

.header-nav li a:hover,
.header-nav li a:focus,
.header-nav li a:active {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  outline: none;
}

/* SHOP button - special styling for mobile */
.header-nav li.shop-button a {
  margin-top: var(--spacing-sm);
  padding: 0.875rem var(--spacing-md);

  text-align: center;
  font-size: clamp(0.9rem, 0.85rem + 0.5vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.06em;

  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  color: var(--color-white);
  border: 1px solid rgba(80, 80, 80, 0.5);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.header-nav li.shop-button a:hover,
.header-nav li.shop-button a:focus,
.header-nav li.shop-button a:active {
  background: linear-gradient(135deg, #5eb3d6 0%, #0096b8 100%);
  box-shadow: 0 6px 16px rgba(0, 180, 216, 0.6);
  border-color: rgba(0, 200, 240, 0.8);
  transform: translateY(-1px);
}

/* ==========================================================================
   MOBILE HAMBURGER TOGGLE - 48x48px touch target (exceeds 44px minimum)
   ========================================================================== */

.header-mobile-toggle {
  display: flex; /* Visible on mobile by default */
  position: absolute;
  right: var(--spacing-md); /* Responsive positioning */

  /* Touch-friendly size - 48x48px */
  width: 48px;
  height: 48px;
  min-width: 48px; /* Ensure minimum touch target */
  min-height: 48px;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;

  background: none;
  border: none;
  cursor: pointer;
  padding: 12px; /* Internal padding for visual spacing */

  /* Accessibility */
  -webkit-tap-highlight-color: rgba(255,255,255,0.1);
}

/* Hamburger bars */
.header-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}

/* Hamburger animation when open */
.header-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   TABLET (768px - 1023px) - Larger header, still using mobile menu
   ========================================================================== */

@media (min-width: 768px) {
  .site-header {
    min-height: 64px;
    padding: var(--spacing-sm) var(--spacing-lg);
  }

  .header-nav {
    top: 64px;
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-xl);
    gap: var(--spacing-sm);
  }

  .header-nav li a {
    padding: 1rem var(--spacing-lg);
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  }

  .header-nav li.shop-button a {
    padding: 1rem var(--spacing-lg);
    font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.0625rem);
  }

  .header-mobile-toggle {
    right: var(--spacing-lg);
  }
}

/* ==========================================================================
   DESKTOP (1024px+) - Horizontal navigation, hide hamburger
   ========================================================================== */

@media (min-width: 1024px) {
  .site-header {
    padding: 0 var(--spacing-xl);
    min-height: 70px;
  }

  /* Hide mobile toggle button */
  .header-mobile-toggle {
    display: none;
  }

  /* Horizontal desktop navigation */
  .header-nav {
    /* Reset mobile positioning */
    position: static;
    display: flex !important; /* Always visible on desktop */
    opacity: 1;
    transform: none;

    flex-direction: row;
    align-items: center;
    gap: 0.5rem;

    padding: 0;
    background: transparent;
    border-top: none;
    box-shadow: none;
  }

  /* Desktop navigation links - compact */
  .header-nav li a {
    padding: 0.5rem 0.875rem;
    border-radius: 100px;
    font-size: clamp(0.9rem, 0.85rem + 0.25vw, 0.95rem);
    text-align: center;
  }

  /* SHOP button - desktop inline style */
  .header-nav li.shop-button a {
    margin-top: 0;
    padding: 0.5rem 1.25rem;
    font-size: clamp(0.85rem, 0.8rem + 0.25vw, 0.9rem);
  }

  .header-nav li.shop-button a:hover {
    transform: translateY(-2px);
  }
}

/* ==========================================================================
   LARGE DESKTOP (1280px+) - More generous spacing
   ========================================================================== */

@media (min-width: 1280px) {
  .site-header {
    padding: 0 clamp(2rem, 3vw, 4rem);
    min-height: 75px;
  }

  .header-nav {
    gap: 0.625rem;
  }

  .header-nav li a {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
  }

  .header-nav li.shop-button a {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }
}


/* ==========================================================================
   Hero — flex-row: text column (60%) | image column (40%)
   Font and padding scaled to the column width, not the full viewport
   ========================================================================== */

.hero-section {
  background: var(--color-white);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 93.5vh;
  overflow: hidden;
}

/* Hero background image */
.hero-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background: #0a4d68;
}

.hero-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* Text content overlaid on photos - no box, natural blend */
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--spacing-3xl) var(--spacing-md) var(--spacing-xl);
  /* Mobile: ~4rem 1rem 2rem | Tablet: ~5.5rem 1.25rem 2.75rem | Desktop: ~7rem 1.5rem 3.5rem */
}

/* SDRRC Logo main - centered and bright */
.hero-logo-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
}

.hero-logo-main img {
  width: 1000px;
  height: auto;
  opacity: 1;
}

/* Club name — first thing a visitor reads */
.hero-brand {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeInDown 0.8s ease-out;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.75rem;
  animation: fadeInDown 0.8s ease-out 0.1s both;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 35px;
  height: 2px;
  background: white;
  flex-shrink: 0;
}

.hero-headline {
  /* Scale better for larger screens - 1440p and beyond */
  font-size: clamp(1.78rem, 4.5vw, 6.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease-out 0.2s both;
}

/* Better centering for 1440p screens */
@media (min-width: 1440px) and (max-width: 1919px) {
  .hero-content {
    max-width: 1100px;
    padding-left: var(--spacing-2xl);
    padding-right: var(--spacing-2xl);
    /* Inherits fluid top/bottom padding from base */
  }
}

/* All 1920px+ screens (1080p and higher) - wider content */
@media (min-width: 1920px) {
  .hero-content {
    max-width: 1400px;
    padding-left: var(--spacing-3xl);
    padding-right: var(--spacing-3xl);
    /* Inherits fluid top/bottom padding from base */
  }
}

/* 1080p screens - move content down more for vertical centering */
@media (min-width: 1920px) and (max-height: 1100px) {
  .hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-content {
    padding-top: var(--spacing-3xl);
    padding-bottom: var(--spacing-3xl);
    /* Balanced vertical padding for 1080p screens */
  }
}

/* Taller screens (1440p+) - more top padding (inherits from base now, no override needed) */

.hero-sub-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.hero-subtitle {
  font-size: 1.45rem;
  line-height: 1.7;
  color: white;
  width: 100%;
  max-width: none;
  text-align: left;
  animation: fadeInDown 0.8s ease-out 0.3s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  flex-shrink: 0;
  flex-wrap: wrap;
  animation: fadeInDown 0.8s ease-out 0.4s both;
}

/* Make both hero buttons blue like shop button */
.hero-actions .btn-dark,
.hero-actions .btn-outline-dark {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  color: var(--color-white);
  border-color: rgba(80, 80, 80, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.hero-actions .btn-dark:hover,
.hero-actions .btn-outline-dark:hover {
  background: linear-gradient(135deg, #5eb3d6 0%, #0096b8 100%);
  color: var(--color-white);
  border-color: rgba(0, 200, 240, 0.8);
  box-shadow: 0 6px 16px rgba(0, 180, 216, 0.5);
  transform: translateY(-2px);
}

.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 2.5rem;
  animation: fadeInDown 0.8s ease-out 0.5s both;
}

.hero-logo-img {
  width: 100%;
  height: auto;
  max-width: 400px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

/* Adjust for shorter screens (1080p and smaller) */
@media (max-height: 1100px) {
  /* Header styles removed - now using mobile-first approach above */

  .hero-section {
    min-height: auto;
    height: 93.5vh;
  }

  .hero-content {
    padding: var(--spacing-2xl) var(--spacing-lg) var(--spacing-xl);
    /* Shorter screens: ~3rem 1.5rem 2rem (mobile) to ~5rem 2.5rem 3.5rem (desktop) */
  }

  .hero-brand {
    font-size: 2rem;
  }

  .hero-eyebrow {
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
  }

  .hero-headline {
    font-size: clamp(4rem, 5.5vw, 6.5rem);
    margin-bottom: 0.2rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
  }

  .hero-actions {
    gap: 0.75rem;
    margin-bottom: 0.2rem;
  }

  .hero-actions .btn {
    padding: 0.55rem 1.3rem;
    font-size: 0.9rem;
  }

  .hero-logo {
    margin-top: 0.15rem;
  }

  .hero-logo-img {
    max-width: 280px;
  }
}

/* Mobile responsive adjustments */
@media (max-width: 767px) /* Mobile */ {
  .hero-section   { min-height: 100vh; }
  .hero-content   {
    padding: var(--spacing-xl) var(--spacing-md);
    margin: var(--spacing-md);
    /* Mobile: ~2rem 1rem with fluid scaling */
  }
  .hero-sub-row   { flex-direction: column; align-items: flex-start; gap: 1.5rem; }

  /* Adjust marquee speed on mobile */
  .marquee-track-photos {
    animation: scroll-photos 60s linear infinite;
  }
}

/* ==========================================================================
   Marquee strip — scrolling ticker like clay's logo wall
   ========================================================================== */

.marquee-section {
  background: var(--color-gray-5);
  border-top: 1px solid var(--color-gray-100);
  border-bottom: 1px solid var(--color-gray-100);
  padding: 1.25rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2.5rem;
  font-size: 0.7222rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gray-500);
  white-space: nowrap;
}
.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-teal);
  flex-shrink: 0;
}

/* ==========================================================================
   Stats strip
   ========================================================================== */

/* Stats Hero Section */
.stats-hero-section {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #1a2942 100%);
}

.stats-hero-bg {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 110%;
  height: 120%;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 41, 66, 0.9) 100%);
  z-index: 1;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.stats-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  text-align: center;
  padding: var(--spacing-3xl) var(--spacing-xl);
}

.stats-hero-title {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: white;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
  animation: fadeInDown 0.8s ease-out;
}

.stats-hero-subtitle {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-2xl);
  font-weight: 400;
  animation: fadeInDown 0.8s ease-out 0.1s both;
}

.stats-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18.75rem), 1fr));
  gap: var(--grid-gap-lg);
  max-width: var(--container-lg);
  margin: 0 auto;
}

.stat-hero-item {
  padding: var(--spacing-2xl) var(--spacing-xl);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.stat-hero-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-0.5rem);
  border-color: rgba(255, 255, 255, 0.2);
}

.stat-hero-number {
  display: block;
  font-size: clamp(4rem, 7vw, 6.5rem);
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.03em;
  min-height: clamp(4rem, 7vw, 6.5rem);
  font-variant-numeric: tabular-nums;
}

.stat-hero-label {
  display: block;
  font-size: var(--font-size-base);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Mobile: single column, reduced padding */
@media (max-width: 767px) /* Mobile */ {
  .stats-hero-content {
    padding: var(--spacing-2xl) var(--spacing-md);
  }
  .stats-hero-grid {
    gap: var(--grid-gap-sm);
  }
}

/* ==========================================================================
   About / Welcome — two-column with large image
   ========================================================================== */

/* Brotherhood Hero Section - Based on stats hero structure */
.brotherhood-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f2f4a 0%, #1a3a52 50%, #0a1f2e 100%);
  isolation: isolate;
}

/* Wave overlay container */
.wave-overlay {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}

/* Individual wave layers */
.wave-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.wave-layer-1 {
  animation: wave-flow-1 64s linear infinite;
  animation-delay: 0s;
}

.wave-layer-2 {
  animation: wave-flow-2 48s linear infinite;
  animation-delay: -8s;
}

.wave-layer-3 {
  animation: wave-flow-3 80s linear infinite;
  animation-delay: -16s;
}

.wave-layer-4 {
  animation: wave-flow-4 56s linear infinite;
  animation-delay: -24s;
}

/* Wave animations - top to bottom movement */
@keyframes wave-flow-1 {
  0% {
    transform: translateY(-100%) scale(1);
  }
  100% {
    transform: translateY(100%) scale(1.05);
  }
}

@keyframes wave-flow-2 {
  0% {
    transform: translateY(-100%) scale(1);
  }
  100% {
    transform: translateY(100%) scale(1.08);
  }
}

@keyframes wave-flow-3 {
  0% {
    transform: translateY(-100%) scale(1);
  }
  100% {
    transform: translateY(100%) scale(1.03);
  }
}

@keyframes wave-flow-4 {
  0% {
    transform: translateY(-100%) scale(1);
  }
  100% {
    transform: translateY(100%) scale(1.06);
  }
}

.brotherhood-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(0, 180, 216, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at bottom right, rgba(10, 77, 104, 0.12) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Video and overlay removed - using solid background now */

.brotherhood-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  text-align: center;
  padding: 6rem 2rem;
}

.brotherhood-hero-eyebrow {
  color: var(--color-teal);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease-out;
}

.brotherhood-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  animation: fadeInDown 0.8s ease-out 0.1s both;
}

.brotherhood-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  animation: fadeInDown 0.8s ease-out 0.2s both;
}

.brotherhood-hero-text {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.brotherhood-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 3rem;
  /* Mobile-first: 1 column, scales to 3 on larger screens */
}

.brotherhood-stat-item {
  padding: 2rem 1.5rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
  text-align: center;
}

.brotherhood-stat-item:hover {
  background: rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.45);
}

.brotherhood-stat-number {
  display: block;
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.brotherhood-stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Make Learn More button match theme in brotherhood section */
.brotherhood-hero-section .btn-dark {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  color: var(--color-white);
  border-color: rgba(80, 80, 80, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.brotherhood-hero-section .btn-dark:hover {
  background: linear-gradient(135deg, #5eb3d6 0%, #0096b8 100%);
  color: var(--color-white);
  border-color: rgba(0, 200, 240, 0.8);
  box-shadow: 0 6px 16px rgba(0, 180, 216, 0.5);
  transform: translateY(-2px);
}

/* Tablet: 2 columns for brotherhood grid */
@media (min-width: 576px) {
  .brotherhood-hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: 3 columns for brotherhood grid */
@media (min-width: 992px) {
  .brotherhood-hero-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Mobile adjustments for brotherhood content */
@media (max-width: 767px) {
  .brotherhood-hero-content {
    padding: var(--spacing-2xl) var(--spacing-md);
    /* Fluid padding on mobile */
  }
}

/* ==========================================================================
   Services / Features — Animated ocean background with darker cards
   ========================================================================== */

.services-section {
  position: relative;
  background: linear-gradient(180deg, #0a4d68 0%, #165a72 100%);
  padding: var(--section-v) 0;
  border: none;
  overflow: hidden;
}

/* Wave container for SVG waves */
.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 350px;
  overflow: hidden;
  z-index: 0;
}

.wave {
  position: absolute;
  bottom: 0;
  left: -1440px;
  width: 400%;
  height: 100%;
}

.wave1 {
  animation: wave-move-1 12s linear infinite;
  opacity: 1;
}

.wave2 {
  animation: wave-move-2 15s linear infinite reverse;
  opacity: 0.8;
}

.wave3 {
  animation: wave-move-3 18s linear infinite;
  opacity: 0.6;
}

@keyframes wave-move-1 {
  0% { transform: translateX(0); }
  100% { transform: translateX(-1440px); }
}

@keyframes wave-move-2 {
  0% { transform: translateX(0); }
  100% { transform: translateX(-1440px); }
}

@keyframes wave-move-3 {
  0% { transform: translateX(0); }
  100% { transform: translateX(-1440px); }
}

.services-section .container {
  position: relative;
  z-index: 1;
}

/* Darker card styling with ocean theme */
.services-section .services-grid {
  background: rgba(0,0,0,0.15);
  border-color: rgba(0,0,0,0.15);
}
.services-section .service-card {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}
.services-section .service-card:hover {
  background: rgba(0, 0, 0, 0.35);
}
.services-section .service-icon {
  background: rgba(22, 90, 114, 0.4);
  color: rgba(255, 255, 255, 0.9);
}
.services-section .service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

/* White text for ocean background */
.services-section .section-header-row h2,
.services-section .section-header-row .eyebrow,
.services-section .service-card h3 {
  color: var(--color-white);
}

.services-section .service-card p {
  color: rgba(255, 255, 255, 0.85);
}

.services-section .link-text {
  color: var(--color-white);
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 64px;
}
.section-header-row h2 { margin: 0; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5px;
  background: var(--color-gray-100);
  border: 1.5px solid var(--color-gray-100);
  /* Mobile-first: 1 column, scales up to 2, then 4 */
}

.service-card {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s var(--default), transform 0.55s var(--ease-out), box-shadow 0.55s var(--ease-out);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  z-index: 1;
  position: relative;
}

.service-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  transition: background 0.25s var(--default), color 0.25s var(--default);
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.0556rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}
.service-card p {
  font-size: 0.8333rem;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* Tablet: 2 columns */
@media (min-width: 576px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Desktop: 4 columns */
@media (min-width: 992px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .section-header-row { flex-direction: row; align-items: center; }
}

/* Legacy fallback for section header on smaller screens */
@media (max-width: 991px) {
  .section-header-row { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Work / Events Grid — clay's portfolio card style
   ========================================================================== */

.events-section {
  position: relative;
  background: var(--color-navy-mid);
  padding: var(--section-v) 0;
  border: none;
  overflow: hidden;
}

.events-section .container {
  position: relative;
  z-index: 10;
}
/* All text in the events section goes light */
.events-section h2,
.events-section h3                         { color: var(--color-white); }
.events-section .eyebrow                   { color: var(--color-teal); }
.events-section .section-header-row .link-text {
  color: var(--color-white);
  border-bottom-color: rgba(255,255,255,0.4);
}
.events-section .events-list {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.events-section .event-item              { background: rgba(255,255,255,0.04); }
.events-section .event-item:hover        { background: rgba(255,255,255,0.09); box-shadow: -4px 0 0 var(--color-teal); }
.events-section .event-date              { border-right-color: rgba(255,255,255,0.12); }
.events-section .event-date .day         { color: var(--color-white); }
.events-section .event-meta              { color: rgba(255,255,255,0.55); }
.events-section .event-tag {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.15);
}
.events-section .event-cta .link-text {
  color: var(--color-white);
  border-bottom-color: rgba(255,255,255,0.4);
}

.events-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--color-gray-100);
  border: 1px solid var(--color-gray-100);
  border-radius: 4px;
  overflow: hidden;
}

.event-item {
  background: var(--color-white);
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 2.5rem;
  transition: background 0.2s var(--default), transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
  cursor: pointer;
}
.event-item:hover {
  background: var(--color-gray-5);
  transform: translateX(6px);
  box-shadow: -4px 0 0 var(--color-teal);
}

.event-date {
  text-align: center;
  border-right: 1px solid var(--color-gray-100);
  padding-right: 2rem;
}
.event-date .month {
  display: block;
  font-size: 0.6667rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-teal);
}
.event-date .day {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--color-black);
}

.event-info h3 {
  font-size: 1.0556rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.375rem;
  color: var(--color-black);
}
.event-meta {
  font-size: 0.7778rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-gray-500);
}
.event-meta i { margin-right: 0.3rem; }

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.75rem;
}
.event-tag {
  font-size: 0.6667rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  background: var(--color-gray-5);
  color: var(--color-gray-700);
  border: 1px solid var(--color-gray-100);
}

.event-cta { flex-shrink: 0; }

@media (max-width: 767px) /* Mobile */ {
  .event-item { grid-template-columns: 80px 1fr; gap: 1.25rem; }
  .event-cta { display: none; }
  .event-date { padding-right: 1.25rem; }
  .event-date .day { font-size: 2.25rem; }
}

/* ==========================================================================
   Gallery — clay work-grid style, mixed sizes
   ========================================================================== */

.gallery-section {
  background: var(--color-gray-900);
  padding: var(--section-v) 0;
  overflow: hidden;
}
.gallery-section .section-header-row h2     { color: var(--color-white); }
.gallery-section .section-header-row .eyebrow { color: var(--color-teal); }
.gallery-section .section-header-row .link-text {
  color: var(--color-white);
  border-bottom-color: rgba(255,255,255,0.4);
}

/* Horizontal scrolling photo strip */
.gallery-marquee-wrap {
  overflow: hidden;
  margin-top: 3.5rem;
  /* Deliberately breaks out of .container so photos run edge-to-edge */
  width: 100%;
}

.gallery-marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: galleryScroll 50s linear infinite;
  padding: 0 12px;
}
.gallery-marquee-track:hover { animation-play-state: paused; }

@keyframes galleryScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.gallery-marquee-item {
  flex-shrink: 0;
  width: 340px;
  height: 440px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  display: block;
  cursor: pointer;
}

.gallery-marquee-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.5s var(--default);
  filter: brightness(0.78);
}
.gallery-marquee-item:hover img {
  transform: scale(1.07);
  filter: brightness(1);
}

.gallery-marquee-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,7,10,0.72) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-marquee-caption {
  font-size: 0.7778rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.75;
  transform: translateY(5px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gallery-marquee-caption::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--color-teal);
  border-radius: 50%;
  flex-shrink: 0;
}
.gallery-marquee-item:hover .gallery-marquee-caption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) /* Mobile */ {
  .gallery-marquee-item { width: 260px; height: 340px; }
}

/* ==========================================================================
   CTA section — BLACK (clay's dark sections)
   ========================================================================== */

.join-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--section-v) 0;
  text-align: center;
}

.join-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
}

.join-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.join-section .container {
  position: relative;
  z-index: 3;
}

.join-section h2 {
  color: var(--color-white);
  font-size: clamp(2.5rem, 6vw, 5rem);
  max-width: 800px;
  margin: 0 auto 1.5rem;
}
.join-section p {
  color: var(--color-white);
  font-size: 1.0556rem;
  max-width: 520px;
  margin: 0 auto 3rem;
}
.join-section .eyebrow {
  color: var(--color-teal);
}
.join-section .btn-white {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}
.join-section .btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}
.join-section .btn-outline-white {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  color: var(--color-white);
  border-color: rgba(80, 80, 80, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.join-section .btn-outline-white:hover {
  background: linear-gradient(135deg, #5eb3d6 0%, #0096b8 100%);
  color: var(--color-white);
  border-color: rgba(0, 200, 240, 0.8);
  box-shadow: 0 6px 16px rgba(0, 180, 216, 0.5);
  transform: translateY(-2px);
}
.join-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Newsletter strip inside join section */
.newsletter-strip {
  background: linear-gradient(135deg, #0a4d68 0%, #088395 100%);
  padding: calc(var(--section-v-sm) * 1.5) 0;
  position: relative;
  overflow: hidden;
}
.newsletter-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 180, 216, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(0, 180, 216, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.newsletter-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.newsletter-inner h3 {
  color: var(--color-white);
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
}
.newsletter-inner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-inner .eyebrow {
  color: var(--color-teal);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  display: block;
  opacity: 0.9;
}
.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 650px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.5rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.newsletter-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-white);
  outline: none;
  transition: all 0.3s ease;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form input:focus {
  background: rgba(255, 255, 255, 0.08);
}
.newsletter-form .btn {
  background: var(--color-white);
  color: #0a4d68;
  border-color: var(--color-white);
  padding: 1rem 2.5rem;
  white-space: nowrap;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.newsletter-form .btn:hover {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.3);
}
.newsletter-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.newsletter-note a {
  color: var(--color-teal);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.newsletter-note a:hover {
  border-bottom-color: var(--color-teal);
}

@media (max-width: 767px) /* Mobile */ {
  .newsletter-form {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
  }
  .newsletter-form .btn { width: 100%; }
}

/* ==========================================================================
   Footer — dark, clay-style
   ========================================================================== */

.site-footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-col {}
.footer-brand-col img {
  height: 40px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 1.25rem;
}
.footer-brand-col h5 {
  font-size: 0.6667rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1rem;
}
.footer-brand-col p {
  font-size: 0.8333rem;
  color: var(--color-gray-500);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 1.5rem;
  margin-top: 0.75rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  border: 1px solid rgba(80, 80, 80, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.footer-social a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}
.footer-social a:hover::before {
  width: 100%;
  height: 100%;
}
.footer-social a:hover {
  transform: translateY(-4px) scale(1.05);
}
.footer-social a i {
  position: relative;
  z-index: 1;
}
/* Facebook specific styling */
.footer-social a[aria-label="Facebook"]:hover {
  background: linear-gradient(135deg, #5eb3d6 0%, #0096b8 100%);
  border-color: rgba(0, 200, 240, 0.8);
  box-shadow: 0 6px 16px rgba(0, 180, 216, 0.6);
}
/* YouTube specific styling */
.footer-social a[aria-label="YouTube"]:hover {
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
  border-color: rgba(167, 139, 250, 0.8);
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.6);
}

.footer-col h5 {
  font-size: 0.6667rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a {
  font-size: 0.8333rem;
  color: var(--color-gray-500);
  transition: color 0.2s var(--default);
}
.footer-col ul a:hover { color: var(--color-white); }
.footer-col address {
  font-style: normal;
  font-size: 0.8333rem;
  color: var(--color-gray-500);
  line-height: 1.8;
}
.footer-col address a { color: var(--color-gray-500); }
.footer-col address a:hover { color: var(--color-white); }

.footer-sponsors-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-sponsors-row {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  gap: 1rem;
}

.footer-sponsors-row:last-child {
  margin-bottom: 0;
}

.footer-sponsors-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-sponsors-row a:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.footer-sponsors-row img {
  height: 50px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  background: var(--color-white);
  padding: 8px 12px;
  border-radius: 4px;
}

@media (max-width: 1300px) {
  .footer-sponsors-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer-sponsors-row {
    gap: 0.75rem;
  }
  .footer-sponsors-row img {
    height: 40px;
    max-width: 110px;
    padding: 6px 10px;
  }
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7222rem;
  color: var(--color-gray-700);
}
.footer-bottom a { color: var(--color-gray-700); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--color-white); }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* Full Footer - Responsive Grid (Mobile-First Standard Breakpoints) */
@media (max-width: 1023px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer-bottom-links { flex-direction: column; gap: 0.5rem; }
}

/* ==========================================================================
   MINI FOOTER - All Pages Except Home
   ========================================================================== */

.site-footer-mini {
  background: var(--color-black);
  color: var(--color-white);
  padding: 2.5rem 0 1.5rem;
}

.mini-footer-content {
  display: grid;
  grid-template-columns: 1fr 2.2fr 1.2fr;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}

.mini-footer-brand h5 {
  font-size: 0.8889rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.mini-footer-brand p {
  font-size: 0.7778rem;
  color: var(--color-gray-500);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.mini-footer-links-wrapper h5 {
  font-size: 0.8889rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.mini-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-content: start;
}

.mini-footer-links a {
  font-size: 0.8333rem;
  color: var(--color-gray-500);
  transition: color 0.2s var(--default);
}

.mini-footer-links a:hover {
  color: var(--color-white);
}

.mini-footer-contact h5 {
  font-size: 0.8889rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.mini-footer-contact address {
  font-style: normal;
  font-size: 0.8333rem;
  color: var(--color-gray-500);
  line-height: 1.8;
}

.mini-footer-bottom {
  padding: 1.25rem 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7222rem;
  color: var(--color-gray-700);
}

.mini-footer-bottom a {
  color: var(--color-gray-700);
  transition: color 0.2s;
}

.mini-footer-bottom a:hover {
  color: var(--color-white);
}

/* Mini Footer - Responsive Grid (Mobile-First Standard Breakpoints) */
@media (max-width: 767px) {
  .mini-footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mini-footer-links {
    justify-content: start;
  }

  .mini-footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* ==========================================================================
   Coming Soon page
   ========================================================================== */

.coming-soon-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 24px 80px;
  text-align: center;
}
.coming-soon-wrap .eyebrow { color: var(--color-teal); }
.coming-soon-wrap h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin: 0.75rem 0 1.25rem; }
.coming-soon-wrap p { color: var(--color-gray-500); max-width: 420px; margin: 0 auto 2.5rem; }
.coming-soon-btns { display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Generic page body
   ========================================================================== */

.page-body {
  padding: 160px 0 var(--section-v);
  max-width: 760px;
  margin: 0 auto;
}
.page-body h1 { margin-bottom: 2rem; }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

/* About Simple Section */
.about-simple-section {
  padding: calc(var(--section-v) * 0.75) 0;
  background: var(--color-white);
}

.about-simple-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-simple-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--color-navy);
  animation: fadeInDown 0.8s ease-out;
}

.about-simple-content .lead {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--color-navy);
  font-weight: 500;
}

.about-simple-content p {
  font-size: 1.0556rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

  transform: translateY(-8px) scale(1.01);
/* ============================================================
   LAYOUT CONTAINERS
/* ============================================================
   ABOUT PAGE - VISUAL REDESIGN WITH STRUCTURE
   ============================================================ */

/* Variables */
:root {
  --ocean-navy: #1a2f4a;
  --ocean-blue: #2d5a7b;
  --ocean-light: #4a6c85;
  --coral: #e67e50;
  --text-dark: #2c3e50;
  --text-secondary: #64748b;
  --border-light: #e2e8f0;
  --bg-light: #f8fafc;
}

.about-page {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text-dark);
}

/* ============================================================
   HERO SECTION - Fix header overlap + styled stat cards
   ============================================================ */
.about-hero {
  background: #2d5a7b;
  padding: 140px 1.5rem 5rem; /* Extra top padding for fixed header */
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Energy Aura Layer 1 - Blue */
.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(96, 165, 250, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(147, 197, 253, 0.08) 0%, transparent 45%);
  animation: energyAura1 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* Energy Aura Layer 2 - Blue */
.about-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 90% 40%, rgba(147, 197, 253, 0.1) 0%, transparent 45%),
    radial-gradient(ellipse at 10% 80%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 10%, rgba(96, 165, 250, 0.08) 0%, transparent 40%);
  animation: energyAura2 10s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
  z-index: 1;
}

.about-hero__container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-hero__est {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(230, 126, 80, 0.1);
  border-radius: 20px;
  animation: fadeInDown 0.8s ease-out;
}

.about-hero__title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
  animation: fadeInDown 0.8s ease-out 0.1s both;
}

.about-hero__tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  font-weight: 400;
  animation: fadeInDown 0.8s ease-out 0.2s both;
}

.about-hero__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 600px;
  animation: fadeInDown 0.8s ease-out 0.3s both;
}

.about-hero__logo-img {
  width: 100%;
  height: auto;
  max-width: 500px;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
}


/* Unified Black Box Theme - All cards on page */

/* ============================================================
   HERO STAT CARDS - Black theme
   ============================================================ */
.about-hero__stat {
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.about-hero__stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  border-color: rgba(94, 179, 214, 0.6);
  background: rgba(0, 0, 0, 0.9);
}

.about-hero__stat-value {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #5eb3d6;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(94, 179, 214, 0.3);
}

.about-hero__stat-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ============================================================
   STORY IMAGE PLACEHOLDER - Black theme
   ============================================================ */
.about-story__image-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(30, 30, 30, 0.9) 100%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-story__image-placeholder::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(94, 179, 214, 0.15) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.about-story__icon {
  width: 80px;
  height: 80px;
  color: #5eb3d6;
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 12px rgba(94, 179, 214, 0.4));
}

.about-story__image-text {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 1.125rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   VALUE CARDS - Black theme
   ============================================================ */
.about-value {
  background: rgba(0, 0, 0, 0.85);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  text-align: center;
  backdrop-filter: blur(10px);
}

.about-value:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(94, 179, 214, 0.6);
  background: rgba(0, 0, 0, 0.9);
}

.about-value__icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(94, 179, 214, 0.3));
}

.about-value__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.about-value__description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* ============================================================
   BOARD MEMBER CARDS - Enhanced black theme
   ============================================================ */
.board-member {
  background: rgba(0, 0, 0, 0.85);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 4px solid #5eb3d6;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  will-change: transform;
}

.board-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  border-left-color: #e67e50;
  border-color: rgba(94, 179, 214, 0.4);
  background: rgba(0, 0, 0, 0.9);
}

.board-member__inner {
  padding: 1.75rem 1.5rem;
}

.board-member__position {
  font-size: 0.75rem;
  font-weight: 700;
  color: #5eb3d6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.board-member__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}
/* Mobile: single column, reduced padding */
@media (max-width: 767px) {
  .about-hero {
    padding: 7.5rem var(--spacing-md) var(--spacing-2xl);
  }
  .about-hero__stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

/* ============================================================
   STORY SECTION - Two-column layout with image placeholder
   ============================================================ */
.about-story {
  background: #1a2f4a;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Energy Aura Layer 1 - Dark Blue */
.about-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(37, 99, 235, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(29, 78, 216, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(96, 165, 250, 0.06) 0%, transparent 45%);
  animation: energyAura1 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* Energy Aura Layer 2 - Dark Blue */
.about-story::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 90% 40%, rgba(96, 165, 250, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 10% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 10%, rgba(59, 130, 246, 0.06) 0%, transparent 40%);
  animation: energyAura2 10s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
  z-index: 1;
}

.about-story__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  animation: fadeInUp 0.8s ease-out;
}

.about-story__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-story__content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
}

.about-story__content p:last-child {
  margin-bottom: 0;
}

/* Tablet and below: stacked layout */
@media (max-width: 991px) {
  .about-story__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  .about-story__image-placeholder {
    max-width: 25rem;
    margin: 0 auto;
  }
}

/* ============================================================
   MISSION SECTION - Alternating background + value cards with shadows
   ============================================================ */
.about-mission {
  background: #2d5a7b;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Energy Aura Layer 1 - Blue */
.about-mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(96, 165, 250, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(147, 197, 253, 0.08) 0%, transparent 45%);
  animation: energyAura1 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* Energy Aura Layer 2 - Blue */
.about-mission::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 90% 40%, rgba(147, 197, 253, 0.1) 0%, transparent 45%),
    radial-gradient(ellipse at 10% 80%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 10%, rgba(96, 165, 250, 0.08) 0%, transparent 40%);
  animation: energyAura2 10s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
  z-index: 1;
}

.about-mission__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-mission__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInDown 0.8s ease-out;
}

.about-mission__values {
  display: grid;
  grid-template-columns:  1fr;
  gap: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ============================================================
   BOARD SECTION - Better structure with borders and backgrounds
   ============================================================ */
.about-board {
  background: #1a2f4a;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Energy Aura Layer 1 - Dark Blue */
.about-board::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(37, 99, 235, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(29, 78, 216, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(96, 165, 250, 0.06) 0%, transparent 45%);
  animation: energyAura1 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* Energy Aura Layer 2 - Dark Blue */
.about-board::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 90% 40%, rgba(96, 165, 250, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 10% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 10%, rgba(59, 130, 246, 0.06) 0%, transparent 40%);
  animation: energyAura2 10s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
  z-index: 1;
}

.about-board__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-board__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0.75rem;
  animation: fadeInDown 0.8s ease-out;
}

.about-board__intro {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 400;
  animation: fadeInDown 0.8s ease-out 0.1s both;
}

.about-board__members {
  display: grid;
  grid-template-columns:  1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Desktop: 4-column grid with centered last 2 members */
@media (min-width: 768px) {
  .about-board__members {
    grid-template-columns: repeat(4, 1fr);
  }

  .board-member:nth-child(13) {
    grid-column: 2 / 3;
  }

  .board-member:nth-child(14) {
    grid-column: 3 / 4;
  }
}


/* Small mobile: single column */

/* ============================================================
   NEWSLETTERS GRID - RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (min-width: 640px) {
  .newsletters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .newsletters-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   ABOUT PAGE - MISSION VALUES - RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (min-width: 640px) {
  .about-mission__values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-mission__values {
    grid-template-columns:  1fr;
  }
}

/* ============================================================
   ABOUT PAGE - STORY GRID - RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (min-width: 768px) {
  .about-story__grid {
    grid-template-columns: 400px 1fr;
  }
}
   ============================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-3, 1.5rem);
}

.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   RESOURCES DASHBOARD - MODERN DARK THEME
   ============================================================ */

.resources-dashboard-dark {
  background:
    radial-gradient(ellipse at center, rgba(72, 72, 72, 0.3) 0%, rgba(51, 51, 51, 0.6) 50%, rgba(23, 23, 23, 0.9) 68%, #121212 100%),
    linear-gradient(135deg, #2c2c2c 0%, #3d3d3d 20%, #464646 40%, #3d3d3d 60%, #353535 80%, #2c2c2c 100%);
  background-size: 100% 100%, 400% 400%;
  animation: subtleShift 15s ease infinite;
  min-height: 100vh;
  padding: 140px 0 3rem;
  color: #e0e6ed;
  position: relative;
}

/* Energy Aura Layer 1 - Dark Gray/Black - Disabled */
.resources-dashboard-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  pointer-events: none;
  z-index: 1;
}

/* Energy Aura Layer 2 - Dark Gray/Black - Disabled */
.resources-dashboard-dark::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  pointer-events: none;
  z-index: 1;
}

@keyframes subtleShift {
  0%, 100% {
    background-position: 0% 50%, 0% 50%;
  }
  50% {
    background-position: 0% 50%, 100% 50%;
  }
}

/* Soft Energy Aura Animations for Resources */
@keyframes energyAura1Soft {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.95;
  }
}

@keyframes energyAura2Soft {
  0%, 100% {
    opacity: 0.95;
  }
  50% {
    opacity: 1;
  }
}

@keyframes subtleShiftOld {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dashboard-dark-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease-out;
}

.dashboard-dark-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #bae6fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.dashboard-dark-header h1 i {
  background: linear-gradient(135deg, #00b4d8 0%, #5eb3d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 1rem;
}

.dashboard-dark-header .subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

/* ============================================================
   WEATHER HERO WIDGET (Google Style)
   ============================================================ */

.weather-hero-widget {
  background: linear-gradient(135deg, #2a3142 0%, #1f2937 100%);
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.weather-hero-current {
  margin-bottom: 2rem;
}

.weather-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: #8892a6;
  margin-bottom: 1.5rem;
}

.weather-location i {
  color: #5eb3d6;
}

.weather-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.weather-icon-large {
  font-size: 6rem;
  color: #ffd700;
}

.weather-temp-display {
  flex: 1;
}

.weather-temp-large {
  font-size: 5rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.weather-condition-text {
  font-size: 1.5rem;
  color: #b4c1d4;
  font-weight: 500;
}

.weather-details-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.weather-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #b4c1d4;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
}

.weather-detail i {
  color: #5eb3d6;
  font-size: 1.2rem;
}

.weather-hourly-scroll {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.weather-hourly-scroll h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.weather-hourly-scroll h3 i {
  color: #5eb3d6;
  margin-right: 0.75rem;
}

.hourly-scroll-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: #5eb3d6 rgba(255, 255, 255, 0.1);
}

.hourly-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.hourly-scroll-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.hourly-scroll-container::-webkit-scrollbar-thumb {
  background: #5eb3d6;
  border-radius: 4px;
}

.hourly-card {
  flex: 0 0 100px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.25rem 0.75rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.hourly-card:hover {
  background: #191919;
  border-color: #5eb3d6;
  transform: translateY(-4px);
}

.hour-time {
  font-size: 0.875rem;
  color: #8892a6;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.hour-icon {
  margin: 0.75rem 0;
}

.hour-temp {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.hour-wind {
  font-size: 0.75rem;
  color: #8892a6;
}

/* ============================================================
   LIVE CAMERAS SECTION
   ============================================================ */

.cameras-section {
  margin-bottom: 2.5rem;
}

.cameras-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.cameras-section h2 i {
  color: #5eb3d6;
  margin-right: 1rem;
}

.cameras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Large screens: 2 columns for cameras */
@media (max-width: 1399px) {
  .cameras-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.camera-card {
  background: rgba(0, 0, 0, 0.85);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.camera-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(94, 179, 214, 0.5);
}

.camera-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #1f2937 0%, #2a3142 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.camera-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #ff4444;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 68, 68, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
}

.live-badge i {
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.camera-feed {
  width: 100%;
  height: 300px;
  background: #000000;
  position: relative;
}

.camera-feed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   NOAA WAVE DATA SECTION
   ============================================================ */

.noaa-wave-section {
  background: rgba(0, 0, 0, 0.85);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.noaa-wave-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(94, 179, 214, 0.4);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
}

.section-header h2 i {
  color: #5eb3d6;
  margin-right: 1rem;
}

.external-link {
  color: #5eb3d6;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.external-link:hover {
  color: #0095b8;
}

.external-link i {
  margin-left: 0.5rem;
}

.noaa-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.noaa-stat-card {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.noaa-stat-card:hover {
  background: #0a0a0a;
  border-color: rgba(94, 179, 214, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.noaa-stat-card i {
  font-size: 2.5rem;
  color: #5eb3d6;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 0.875rem;
  color: #8892a6;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.stat-unit {
  font-size: 0.75rem;
  color: #b4c1d4;
  margin-top: 0.25rem;
}

.wave-data-table-container {
  margin-top: 2rem;
}

.wave-data-table-container h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.wave-data-table-container h3 i {
  color: #5eb3d6;
  margin-right: 0.75rem;
}

.wave-table-scroll {
  overflow-x: auto;
  overflow-y: auto;
  max-height: 450px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sticky table header when scrolling - match stat card color */
.wave-table-scroll .wave-data-table thead {
  position: sticky;
  top: 0;
  z-index: 10;
}

.wave-table-scroll .wave-data-table thead::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #5eb3d6;
  z-index: 11;
}

.wave-table-scroll .wave-data-table thead tr {
  background: linear-gradient(135deg, rgba(0, 45, 54, 0.95) 0%, rgba(15, 35, 48, 0.95) 100%);
  border-bottom: 2px solid #5eb3d6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.wave-table-scroll .wave-data-table thead th {
  background: transparent;
}

.wave-data-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.03);
}

.wave-data-table thead {
  background: #191919;
  border-bottom: 2px solid #5eb3d6;
}

.wave-data-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wave-data-table td {
  padding: 0.875rem 1.5rem;
  color: #b4c1d4;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wave-data-table tbody tr {
  transition: background 0.2s;
}

.wave-data-table tbody tr:hover {
  background: #0f0f0f;
}

/* ============================================================
   MOON PHASE SECTION
   ============================================================ */

.moon-phase-section {
  background: rgba(0, 0, 0, 0.85);
  border-radius: 16px;
  padding: 1.8rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.moon-phase-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(94, 179, 214, 0.4);
}

.moon-phase-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.moon-phase-section h2 i {
  color: #ffd700;
  margin-right: 1rem;
}

.moon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.moon-display-card {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1.2rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.moon-display-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 215, 0, 0.4);
}

.moon-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.moon-visual svg {
  width: 120px;
  height: 120px;
}

.moon-info h3 {
  font-size: 1.3rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.moon-info p {
  color: #b4c1d4;
  font-size: 0.9rem;
  margin: 0.3rem 0 1rem 0;
}

.moon-phase-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.moon-phase-badge.waxing {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 255, 0, 0.15));
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.4);
}

.moon-phase-badge.waning {
  background: linear-gradient(135deg, rgba(100, 100, 150, 0.2), rgba(80, 80, 120, 0.15));
  color: #b4c1d4;
  border: 1px solid rgba(180, 193, 212, 0.4);
}

.moon-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin: 1rem 0;
}

.moon-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 12px;
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.3s;
}

.moon-stat:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

.moon-stat i {
  font-size: 1.2rem;
  color: #ffd700;
}

.moon-stat .stat-label {
  font-size: 0.7rem;
  color: #8892a6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-align: center;
}

.moon-stat .stat-value {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}

.phase-progress {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: #b4c1d4;
  font-weight: 600;
}

.progress-label span:last-child {
  color: #ffd700;
}

.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  border-radius: 10px;
  transition: width 0.5s ease;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.fishing-forecast-card {
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.2rem;
}

.fishing-forecast-card h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.fishing-forecast-card h3 i {
  color: #5eb3d6;
}

.forecast-date {
  text-align: center;
  margin: 0.5rem 0 1rem 0;
  padding: 0.6rem 1rem;
  background: rgba(0, 180, 216, 0.12);
  border-radius: 8px;
  border: 1px solid rgba(0, 180, 216, 0.25);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.forecast-date i {
  color: #5eb3d6;
  font-size: 1rem;
}

.forecast-rating-box {
  text-align: center;
  margin-bottom: 1.2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-stars {
  font-size: 1.6rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.2rem;
}

.rating-text {
  font-size: 0.95rem;
  color: #b4c1d4;
  font-weight: 600;
  margin: 0;
}

.fishing-times-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.time-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 180, 216, 0.15);
  border-radius: 12px;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s;
}

.time-card:hover {
  background: #0f0f0f;
  border-color: rgba(0, 180, 216, 0.3);
  transform: translateY(-2px);
}

.time-card.highlight {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
}

.time-card.highlight:hover {
  background: rgba(255, 215, 0, 0.12);
  border-color: rgba(255, 215, 0, 0.5);
}

.time-card i {
  font-size: 1.3rem;
  color: #5eb3d6;
}

.time-card.highlight i {
  color: #ffd700;
}

.time-card .time-label {
  font-size: 0.7rem;
  color: #8892a6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.time-card .time-value {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 700;
}

.phase-strategy {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.phase-strategy h4 {
  font-size: 1rem;
  color: #5eb3d6;
  margin-bottom: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.phase-strategy p {
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 0.8rem 0;
  font-weight: 600;
}

.strategy-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-row {
  padding: 0.5rem 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid rgba(0, 180, 216, 0.4);
  border-radius: 6px;
  color: #b4c1d4;
  font-size: 0.85rem;
  line-height: 1.5;
}

.detail-row strong {
  color: #5eb3d6;
  margin-right: 0.5rem;
}

/* Moon Phase Education Section */
.moon-education-section {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 2px solid rgba(255, 215, 0, 0.2);
}

.moon-education-section h3 {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.moon-phase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.phase-info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.phase-info-card:hover {
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.phase-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.phase-info-card h4 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.phase-rating {
  color: #ffd700;
  font-size: 1.3rem;
  margin: 0.75rem 0;
  letter-spacing: 0.15rem;
}

.phase-info-card p {
  color: #b4c1d4;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.phase-tip {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #191919;
  color: #5eb3d6;
  padding: 0.75rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: auto;
  min-height: 4rem;
  line-height: 1.4;
}

.moon-science {
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
}

.moon-science h4 {
  font-size: 1.3rem;
  color: #5eb3d6;
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.moon-science ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.moon-science li {
  padding: 1rem 0;
  color: #b4c1d4;
  font-size: 1rem;
  line-height: 1.7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.moon-science li:last-child {
  border-bottom: none;
}

.moon-science strong {
  color: #ffffff;
  font-weight: 700;
}

/* Current Phase Advice */
.moon-fishing-info {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.current-phase-advice {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(0, 180, 216, 0.08) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 1rem;
}

.current-phase-advice h4 {
  font-size: 1.05rem;
  color: #ffd700;
  margin-bottom: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.advice-content p {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
}

.advice-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.advice-content li {
  padding: 0.5rem 0;
  color: #b4c1d4;
  font-size: 0.9rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.advice-content li:last-child {
  border-bottom: none;
}

.advice-content strong {
  color: #5eb3d6;
  font-weight: 700;
}

/* ============================================================
   MEXICO SECTION
   ============================================================ */

.mexico-section {
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.mexico-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.mexico-section h2 i {
  color: #5eb3d6;
  margin-right: 1rem;
}

.mexico-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.mexico-card {
  background: #000000;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mexico-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(94, 179, 214, 0.5);
}

.mexico-card .card-icon {
  width: 60px;
  height: 60px;
  background: #191919;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mexico-card .card-icon i {
  font-size: 1.75rem;
  color: #5eb3d6;
}

.mexico-card h3 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.mexico-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mexico-card li {
  padding: 0.65rem 0;
  padding-left: 1.5rem;
  color: #b4c1d4;
  font-size: 0.95rem;
  position: relative;
  line-height: 1.6;
}

.mexico-card li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #5eb3d6;
  font-weight: bold;
}

.mexico-card a {
  color: #5eb3d6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.mexico-card a:hover {
  color: #0095b8;
  text-decoration: underline;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Tablet and below: stacked layouts */
@media (max-width: 1023px) {
  .weather-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .weather-details-grid {
    margin-top: var(--spacing-lg);
  }

  .cameras-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile: reduced sizes, single column */
@media (max-width: 767px) {
  .weather-temp-large {
    font-size: clamp(3rem, 8vw, 4rem);
  }

  .weather-icon-large {
    font-size: clamp(3rem, 8vw, 4rem);
  }

  .noaa-stats-grid,
  .moon-grid,
  .mexico-grid {
    grid-template-columns: 1fr;
  }

  .wave-data-table th,
  .wave-data-table td {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--font-size-sm);
  }
}


/* ============================================================
   WEATHER RADAR SECTION
   ============================================================ */

.radar-section {
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.radar-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.radar-section h2 i {
  color: #5eb3d6;
  margin-right: 1rem;
}

.radar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .radar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.radar-card {
  background: #000000;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.radar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(94, 179, 214, 0.5);
}

.radar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: #0f0f0f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.radar-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.radar-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.radar-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   LIVE WEATHER CAMERAS SECTION
   ============================================================ */

.camera-section {
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.camera-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.camera-section h2 i {
  color: #5eb3d6;
  margin-right: 1rem;
}

.camera-section-note {
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(94, 179, 214, 0.1);
  border-left: 3px solid #5eb3d6;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.camera-section-note i {
  color: #5eb3d6;
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.camera-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .camera-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.camera-link-card {
  background: #000000;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.camera-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
  border-color: rgba(94, 179, 214, 0.4);
}

.camera-link-header {
  padding: 1.5rem;
  background: #0f0f0f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.camera-link-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.camera-link-header h3 i {
  color: #5eb3d6;
}

.camera-links-list {
  padding: 1rem;
}

.camera-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 0.5rem;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.camera-link:hover {
  background: rgba(0, 180, 216, 0.12);
  border-color: rgba(94, 179, 214, 0.4);
  transform: translateX(4px);
}

.camera-link > i:first-child {
  font-size: 1.2rem;
  color: #5eb3d6;
  min-width: 24px;
}

.camera-link .link-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.camera-link .link-info strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

.camera-link .link-info span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.camera-link > i:last-child {
  color: rgba(94, 179, 214, 0.7);
  font-size: 0.9rem;
}

.camera-note {
  padding: 1rem 1.5rem;
  background: rgba(255, 193, 7, 0.08);
  border-top: 1px solid rgba(255, 193, 7, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.camera-note i {
  color: #ffc107;
  font-size: 1rem;
  margin-top: 0.1rem;
}

/* ============================================================
   FISH FINDER SECTION
   ============================================================ */

.fish-finder-section {
  background: rgba(0, 0, 0, 0.85);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fish-finder-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(94, 179, 214, 0.4);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #8892a6;
  margin-top: 0.5rem;
}

.fish-map-tabs {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.fish-tab {
  flex: 1;
  min-width: 200px;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #b4c1d4;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.fish-tab i {
  font-size: 1.2rem;
}

.fish-tab:hover {
  background: #141414;
  border-color: #5eb3d6;
  color: #5eb3d6;
  transform: translateY(-2px);
}

.fish-tab.active {
  background: linear-gradient(135deg, #5eb3d6, #0095b8);
  border-color: #5eb3d6;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}

.fish-map-container {
  position: relative;
  min-height: 600px;
  margin-bottom: 2rem;
}

.fish-map {
  display: none;
  width: 100%;
  min-height: 600px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fish-map.active {
  display: block;
}

.fish-map iframe {
  width: 100%;
  height: 600px;
  border: none;
}

.external-link-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  background: #0a0a0a;
  border: 2px dashed rgba(0, 180, 216, 0.3);
  border-radius: 16px;
  margin: 2rem;
}

.external-link-box i {
  font-size: 4rem;
  color: #5eb3d6;
  margin-bottom: 1.5rem;
}

.external-link-box h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.external-link-box p {
  font-size: 1.1rem;
  color: #b4c1d4;
  margin-bottom: 2rem;
  max-width: 500px;
}

.map-external-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #5eb3d6, #0095b8);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.3);
}

.map-external-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.5);
  background: linear-gradient(135deg, #0095b8, #5eb3d6);
}

.map-legend {
  padding: 1.5rem 2rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.map-legend h4 {
  font-size: 1.1rem;
  color: #5eb3d6;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.map-legend p {
  font-size: 0.95rem;
  color: #b4c1d4;
  margin: 0;
  line-height: 1.6;
}

/* Fishing Tips Grid */
.fishing-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tip-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s;
}

.tip-card:hover {
  background: #141414;
  border-color: #5eb3d6;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.2);
}

.tip-card i {
  font-size: 2.5rem;
  color: #5eb3d6;
  margin-bottom: 1rem;
  display: block;
}

.tip-card h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.tip-card p {
  font-size: 0.95rem;
  color: #b4c1d4;
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE - RADAR & FISH FINDER
   ============================================================ */

/* Tablet and below: stacked layouts */
@media (max-width: 1023px) {
  .fishing-tips-grid {
    grid-template-columns: 1fr;
  }

  .fish-map-tabs {
    flex-direction: column;
  }

  .fish-tab {
    min-width: 100%;
  }
}

/* Mobile: reduced sizes */
@media (max-width: 767px) {
  /* radar-embed now uses aspect-ratio padding-bottom technique - no fixed height needed */

  .camera-link {
    padding: var(--spacing-sm);
    gap: var(--spacing-sm);
  }

  .camera-link .link-info strong {
    font-size: var(--font-size-sm);
  }

  .camera-link .link-info span {
    font-size: var(--font-size-xs);
  }

  .fish-map,
  .fish-map iframe {
    min-height: clamp(300px, 50vw, 400px);
    height: clamp(300px, 50vw, 400px);
  }
}


/* ============================================================
   FISH FINDER - REDESIGNED
   ============================================================ */

.fish-finder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .fish-finder-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.live-reports-card,
.hotspots-chart-card {
  background: #000000;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.live-reports-card:hover,
.hotspots-chart-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
  border-color: rgba(94, 179, 214, 0.5);
}

.card-header-fish {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header-fish h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card-header-fish h3 i {
  color: #5eb3d6;
}

.update-badge {
  background: rgba(255, 165, 0, 0.2);
  color: #ffa500;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 165, 0, 0.4);
}

.map-link-small {
  color: #5eb3d6;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.map-link-small:hover {
  color: #0095b8;
}

.reports-list {
  padding: 1.5rem;
  max-height: 600px;
  overflow-y: auto;
}

.reports-list::-webkit-scrollbar {
  width: 8px;
}

.reports-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.reports-list::-webkit-scrollbar-thumb {
  background: #5eb3d6;
  border-radius: 4px;
}

.report-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 3px solid #5eb3d6;
  transition: all 0.3s;
}

.report-item:hover {
  background: #141414;
  transform: translateX(4px);
}

.report-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.report-icon.offshore {
  background: linear-gradient(135deg, #5eb3d6, #0095b8);
}

.report-icon.inshore {
  background: linear-gradient(135deg, #00d89b, #00b87c);
}

.report-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.report-content h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}

.report-content p {
  font-size: 0.95rem;
  color: #b4c1d4;
  margin: 0 0 0.5rem 0;
}

.report-content p strong {
  color: #5eb3d6;
}

.report-location {
  font-size: 0.85rem;
  color: #8892a6;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.report-location i {
  color: #5eb3d6;
}

.full-reports-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  margin: 1.5rem;
  background: linear-gradient(135deg, #5eb3d6, #0095b8);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.3);
}

.full-reports-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.5);
}

/* Hotspots Chart Display */

.hotspots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  padding: 1.5rem;
  max-height: 600px;
  overflow-y: auto;
}

.hotspots-grid::-webkit-scrollbar {
  width: 8px;
}

.hotspots-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.hotspots-grid::-webkit-scrollbar-thumb {
  background: #5eb3d6;
  border-radius: 4px;
}

.hotspot-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.hotspot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #5eb3d6, #0096c7);
}

.hotspot-card.kelp-spot::before {
  background: linear-gradient(180deg, #00d89b, #00a86b);
}

.hotspot-card.canyon-spot::before {
  background: linear-gradient(180deg, #ffa500, #ff8c00);
}

.hotspot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 180, 216, 0.5);
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
}

.hotspot-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: #191919;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #5eb3d6;
}

.kelp-spot .hotspot-icon {
  background: rgba(0, 216, 155, 0.15);
  color: #00d89b;
}

.canyon-spot .hotspot-icon {
  background: rgba(255, 165, 0, 0.15);
  color: #ffa500;
}

.hotspot-info {
  flex: 1;
}

.hotspot-info h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  color: #ffffff;
  font-weight: 700;
}

.hotspot-stats {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.hotspot-stats .stat {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #94a3b8;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
}

.hotspot-stats .stat i {
  color: #5eb3d6;
  font-size: 0.75rem;
}

.hotspot-desc {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin: 0.4rem 0 0.5rem 0;
  line-height: 1.4;
}

.hotspot-badge {
  display: inline-block;
  background: linear-gradient(135deg, #5eb3d6, #0096c7);
  color: #ffffff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hotspot-badge.kelp-badge {
  background: linear-gradient(135deg, #00d89b, #00a86b);
}

.hotspot-badge.bank-badge {
  background: linear-gradient(135deg, #5eb3d6, #0096c7);
}

/* Bathymetry Section */
/* ============================================================
   TIDE TIMES SECTION - PREMIUM DESIGN
   ============================================================ */
.tide-times-section,
.solunar-section,
.regulations-section,
.fishing-reports-section {
  background: rgba(0, 0, 0, 0.85);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tide-times-section:hover,
.solunar-section:hover,
.regulations-section:hover,
.fishing-reports-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(94, 179, 214, 0.4);
}

.tide-times-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .tide-times-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* tide-times-grid responsive rules now defined inline with the base style */

.tide-card-premium {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.tide-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #5eb3d6, #0096c7);
  opacity: 0;
  transition: opacity 0.3s;
}

.tide-card-premium.tide-high::before {
  background: linear-gradient(180deg, #00d89b, #00a86b);
  opacity: 1;
}

.tide-card-premium.tide-low::before {
  background: linear-gradient(180deg, #ff6b6b, #ee5a52);
  opacity: 1;
}

.tide-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 180, 216, 0.25);
  border-color: rgba(0, 180, 216, 0.5);
}

.tide-card-premium.tide-next {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15) 0%, rgba(0, 150, 180, 0.2) 100%);
  border: 2px solid #5eb3d6;
  box-shadow: 0 0 30px rgba(0, 180, 216, 0.3);
}

.tide-next-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: linear-gradient(135deg, #00d89b, #00a86b);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 216, 155, 0.4);
}

.tide-icon {
  font-size: 3rem;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.tide-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tide-type-text {
  font-size: 0.85rem;
  color: #8892a6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.tide-time-large {
  font-size: 1.75rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
}

.tide-date-text {
  font-size: 0.9rem;
  color: #5eb3d6;
  font-weight: 500;
}

.tide-height-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #141414;
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  min-width: 70px;
}

.tide-high .tide-height-display {
  background: rgba(0, 216, 155, 0.1);
  border-color: rgba(0, 216, 155, 0.3);
}

.tide-low .tide-height-display {
  background: rgba(255, 107, 107, 0.1);
  border-color: rgba(255, 107, 107, 0.3);
}

.tide-height-value {
  font-size: 1.75rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
}

.tide-height-unit {
  font-size: 0.75rem;
  color: #8892a6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
}

.tide-error {
  padding: 3rem;
  text-align: center;
  color: #ff6b6b;
  font-size: 1.1rem;
}

/* ============================================================
   SOLUNAR TIMES SECTION
   ============================================================ */
.solunar-info {
  padding: 1.5rem 1.5rem 0.5rem 1.5rem;
  color: #b4c1d4;
}

.solunar-info p {
  margin: 0;
  font-size: 0.95rem;
}

.solunar-periods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1rem 1.5rem 1.5rem 1.5rem;
}

.solunar-period {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  transition: all 0.2s;
}

.solunar-period.major {
  border-left: 4px solid #ffd700;
  background: rgba(255, 215, 0, 0.05);
}

.solunar-period.minor {
  border-left: 4px solid #5eb3d6;
  background: #0a0a0a;
}

.solunar-period:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.2);
}

.period-type {
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.period-time {
  font-size: 1.3rem;
  color: #5eb3d6;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.period-duration {
  font-size: 0.8rem;
  color: #8892a6;
}

.solunar-note {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #8892a6;
  text-align: center;
}

.solunar-excellent { background: linear-gradient(135deg, #00d89b, #00a86b) !important; }
.solunar-good { background: linear-gradient(135deg, #5eb3d6, #0096c7) !important; }
.solunar-average { background: linear-gradient(135deg, #ffa500, #ff8c00) !important; }
.solunar-fair { background: linear-gradient(135deg, #ff6b6b, #ee5a52) !important; }
.solunar-poor { background: linear-gradient(135deg, #888, #666) !important; }

/* ============================================================
   REGULATIONS & REPORTS SECTIONS
   ============================================================ */
.regulations-grid,
.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem;
}

.reg-card,
.report-card {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.reg-card:hover,
.report-card:hover {
  background: #0a0a0a;
  border-color: rgba(94, 179, 214, 0.6);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.reg-card i,
.report-card i {
  font-size: 2.5rem;
  color: #5eb3d6;
}

.reg-card h4,
.report-card h4 {
  font-size: 1rem;
  color: #ffffff;
  margin: 0;
  font-weight: 700;
}

.reg-card p,
.report-card p {
  font-size: 0.85rem;
  color: #8892a6;
  margin: 0;
}

/* Responsive - Mobile-first approach */
@media (min-width: 768px) {
  .regulations-grid,
  .reports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* fish-finder-grid responsive rules now defined inline with the base style */

@media (min-width: 1200px) {
  .tide-times-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet: adjusted layouts */
@media (max-width: 1023px) {
  /* fish-finder-grid is now mobile-first (1 col default) */

  .hotspots-legend {
    flex-direction: column;
    gap: var(--spacing-md);
  }
}

/* Mobile: single column, reduced sizes */
@media (max-width: 767px) {
  /* tide-times-grid is now mobile-first (1 col default) */
  .solunar-periods,
  .regulations-grid,
  .reports-grid {
    grid-template-columns: 1fr;
  }

  .tide-card-premium {
    flex-direction: column;
    text-align: center;
  }

  .tide-icon {
    font-size: var(--font-size-3xl);
  }
}


/* ============================================================
   WEATHER WIDGET - PIXEL STYLE
   ============================================================ */
.weather-pixel-widget {
  background: rgba(0, 0, 0, 0.85);
  border-radius: 16px;
  padding: 0;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.weather-pixel-widget:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(94, 179, 214, 0.4);
}

.weather-pixel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.weather-location-pixel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #8892a6;
  font-weight: 500;
}

.weather-location-pixel i {
  color: #5eb3d6;
  font-size: 0.9rem;
}

.weather-settings-link {
  color: #8892a6;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.weather-settings-link:hover {
  color: #5eb3d6;
}

.weather-current-pixel {
  padding: 2rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 180, 216, 0.05) 0%, rgba(0, 180, 216, 0) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.weather-temp-main {
  font-size: 5.5rem;
  font-weight: 200;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -2px;
}

.weather-current-date-pst {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
}

.weather-current-time-pst {
  font-size: 1.1rem;
  font-weight: 700;
  color: #5eb3d6;
  font-family: 'Courier New', monospace;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.weather-condition-main {
  font-size: 1.4rem;
  color: #cbd5e1;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.weather-high-low {
  font-size: 1rem;
  color: #8892a6;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.weather-high-low span:first-child {
  margin-right: 1rem;
}

.weather-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.weather-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s;
}

.weather-detail-item:hover {
  background: #0f0f0f;
  border-color: rgba(0, 180, 216, 0.2);
}

.weather-detail-item i {
  font-size: 1.25rem;
  color: #5eb3d6;
  opacity: 0.9;
  width: 24px;
  text-align: center;
}

.weather-emoji {
  font-size: 1.5rem;
  width: 24px;
  text-align: center;
  display: inline-block;
}

.detail-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.detail-label {
  font-size: 0.7rem;
  color: #8892a6;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 500;
}

.detail-value {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 600;
}

.weather-hourly-pixel {
  padding: 1.5rem 2rem 2rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.weather-hourly-pixel h3 {
  font-size: 0.9rem;
  color: #8892a6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.hourly-pixel-scroll {
  display: flex;
  gap: 1.395rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 180, 216, 0.3) rgba(255, 255, 255, 0.05);
}

.hourly-pixel-scroll::-webkit-scrollbar {
  height: 6px;
}

.hourly-pixel-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.hourly-pixel-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 180, 216, 0.3);
  border-radius: 3px;
}

.hourly-pixel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 60px;
}

.hourly-pixel-time {
  font-size: 0.85rem;
  color: #8892a6;
  font-weight: 500;
}

.hourly-pixel-icon {
  font-size: 1.5rem;
  color: #ffd700;
}

.hourly-pixel-temp {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
}

.weather-10day-pixel {
  padding: 1.5rem 2rem 2rem 2rem;
}

.weather-10day-pixel h3 {
  font-size: 0.9rem;
  color: #8892a6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.forecast-10day-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.forecast-day-pixel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s;
  cursor: pointer;
}

.forecast-day-pixel:hover {
  background: #141414;
  border-color: rgba(0, 180, 216, 0.3);
  transform: translateY(-2px);
}

.forecast-day-pixel.forecast-day-active {
  background: rgba(0, 180, 216, 0.2);
  border-color: rgba(0, 180, 216, 0.6);
  box-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
}

.forecast-day-name {
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}

.forecast-day-icon {
  font-size: 2rem;
  color: #ffd700;
  margin: 0.25rem 0;
}

.forecast-day-temps {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.temp-high {
  color: #ffffff;
  font-weight: 600;
}

.temp-low {
  color: #8892a6;
  font-weight: 500;
}

.forecast-day-details {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.forecast-detail {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: #a0aec0;
  justify-content: center;
}

.forecast-detail i {
  font-size: 0.75rem;
  color: #5eb3d6;
  opacity: 0.8;
}

/* ============================================================
   FIRE, WIND & ALLERGEN INFO GRID
   ============================================================ */
.info-grid-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
  margin-bottom: 2.5rem;
}

.info-card {
  background: #000000;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(94, 179, 214, 0.5);
}

.info-card-header {
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 1.5rem;
}

.info-card-header h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-card-header h3 i {
  color: #5eb3d6;
}

.info-card-body {
  padding: 1.5rem;
}

/* Fire Danger Styles */
.fire-level {
  margin-bottom: 1.5rem;
}

.level-label {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-align: center;
}

.fire-level.moderate .level-label {
  color: #ffa500;
}

.fire-level.low .level-label {
  color: #00d89b;
}

.fire-level.high .level-label {
  color: #ff6b6b;
}

.level-bar {
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.level-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffa500, #ff8c00);
  transition: width 0.3s;
}

.fire-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.fire-detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.fire-detail-item i {
  color: #5eb3d6;
  font-size: 1.2rem;
}

.fire-advisory {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 1rem 0;
  padding: 0.75rem;
  background: rgba(255, 165, 0, 0.1);
  border-left: 3px solid #ffa500;
  border-radius: 6px;
}

.info-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #5eb3d6;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
}

.info-link:hover {
  color: #00d4ff;
  transform: translateX(4px);
}

/* Wind Info Styles */
.wind-speed-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.wind-speed-number {
  font-size: 4rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
}

.wind-speed-unit {
  font-size: 1.5rem;
  color: #8892a6;
  font-weight: 600;
}

.wind-direction {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #141414;
  border-radius: 12px;
}

.wind-direction i {
  font-size: 2rem;
  color: #5eb3d6;
}

.wind-direction span {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}

.wind-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.wind-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.wind-stat-label {
  font-size: 0.8rem;
  color: #8892a6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.wind-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.wind-fishing-tip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(0, 216, 155, 0.1);
  border-radius: 8px;
  color: #00d89b;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Allergen Info Styles */
.allergen-level-display {
  text-align: center;
  margin-bottom: 1.5rem;
}

.allergen-overall {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(255, 165, 0, 0.1);
  border-radius: 16px;
  border: 2px solid rgba(255, 165, 0, 0.3);
}

.allergen-level-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffa500;
  margin-bottom: 0.5rem;
}

.allergen-level-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: #ffffff;
}

.allergen-breakdown-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 100%;
}

.allergen-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.875rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  min-width: 0;
}

.allergen-box:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(94, 179, 214, 0.3);
  transform: translateY(-2px);
}

.allergen-box-icon {
  font-size: 1.5rem;
  color: #5eb3d6;
  flex-shrink: 0;
}

.allergen-box-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 0;
}

.allergen-box-name {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.allergen-box-level {
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.allergen-box-level.low {
  color: #00d89b;
}

.allergen-box-level.moderate {
  color: #ffa500;
}

.allergen-box-level.high {
  color: #ff6b6b;
}

.allergen-box-level.very-high {
  color: #dc2626;
}

@media (max-width: 768px) {
  .allergen-breakdown-boxes {
    grid-template-columns: 1fr;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .info-grid-section {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   GALLERY PAGE - MODERN MASONRY STYLE
   ============================================================ */

/* Animated background pattern for gallery page */
@keyframes galleryBgShift {
  0%, 100% {
    background-position: 0% 50%, 0% 50%;
  }
  50% {
    background-position: 0% 50%, 100% 50%;
  }
}

.gallery-page-section {
  background:
    radial-gradient(ellipse at center, rgba(15, 55, 45, 0.4) 0%, rgba(8, 25, 20, 0.8) 70%, #081a15 100%),
    linear-gradient(135deg, #051a12 0%, #0a2418 20%, #0f3328 40%, #144030 60%, #0f3328 80%, #071d15 100%);
  background-size: 100% 100%, 400% 400%;
  animation: galleryBgShift 20s ease infinite;
  position: relative;
  min-height: 100vh;
  padding: 140px 0 5rem;
  overflow: hidden;
}

/* Energy Aura Layer 1 - Blue/Green/Purple */
.gallery-page-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(16, 185, 129, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(96, 165, 250, 0.08) 0%, transparent 45%);
  animation: energyAura1 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* Energy Aura Layer 2 - Blue/Green/Purple */
.gallery-page-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 90% 40%, rgba(96, 165, 250, 0.1) 0%, transparent 45%),
    radial-gradient(ellipse at 10% 80%, rgba(16, 185, 129, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 10%, rgba(139, 92, 246, 0.08) 0%, transparent 40%);
  animation: energyAura2 10s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
  z-index: 1;
}

.gallery-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease-out;
}

.gallery-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #bae6fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.gallery-header h1 i {
  background: linear-gradient(135deg, #00b4d8 0%, #5eb3d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 1rem;
}

.gallery-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.gallery-count {
  display: inline-block;
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  color: #ffffff;
  padding: 0.65rem 1.75rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(80, 80, 80, 0.5);
  letter-spacing: 0.02em;
}

/* Masonry Grid Layout */
.gallery-grid-modern {
  columns: 1;
  column-gap: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@media (min-width: 768px) {
  .gallery-grid-modern {
    columns: 2;
    column-gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .gallery-grid-modern {
    columns: 3;
  }
}

@media (min-width: 1400px) {
  .gallery-grid-modern {
    columns: 4;
    column-gap: 2rem;
  }
}

.gallery-card {
  break-inside: avoid;
  margin-bottom: 2rem;
  position: relative;
  cursor: pointer;
  animation: fadeInUp 0.6s ease-out both;
}

.gallery-card:nth-child(1) { animation-delay: 0.1s; }
.gallery-card:nth-child(2) { animation-delay: 0.15s; }
.gallery-card:nth-child(3) { animation-delay: 0.2s; }
.gallery-card:nth-child(4) { animation-delay: 0.25s; }
.gallery-card:nth-child(n+5) { animation-delay: 0.3s; }

.gallery-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .gallery-image-wrapper {
  box-shadow:
    0 20px 60px rgba(0, 119, 182, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px) scale(1.02);
}

.gallery-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .gallery-image {
  transform: scale(1.05);
}

/* Modern Overlay Design */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 30%,
    rgba(0, 119, 182, 0.75) 70%,
    rgba(0, 119, 182, 0.95) 100%
  );
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  border-radius: 16px;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content {
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .gallery-overlay-content {
  transform: translateY(0);
}

.gallery-caption {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 1.25rem 0;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.gallery-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #ffffff;
  color: #0369a1;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  width: 100%;
}

.gallery-view-btn:hover {
  background: #0ea5e9;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.gallery-view-btn i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.gallery-view-btn:hover i {
  transform: rotate(90deg) scale(1.2);
}

/* Empty State */
.gallery-empty {
  text-align: center;
  padding: 6rem 3rem;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-radius: 32px;
  border: 3px dashed rgba(14, 165, 233, 0.3);
}

.gallery-empty i {
  font-size: 6rem;
  color: #0ea5e9;
  margin-bottom: 2rem;
  display: block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.gallery-empty p {
  font-size: 1.375rem;
  color: #0e7490;
  margin: 0;
  line-height: 1.7;
  font-weight: 500;
}

/* Gallery responsive rules now defined inline with .gallery-grid-modern (using CSS columns for masonry) */

/* Mobile: single column, reduced padding */
@media (max-width: 767px) {
  .gallery-page-section {
    padding: 7.5rem var(--spacing-md) var(--spacing-xl);
  }
  
  /* gallery-grid-modern uses CSS columns (masonry), not grid-template-columns */

  .gallery-header {
    margin-bottom: var(--spacing-xl);
  }
}

/* ============================================================
   CONTACT PAGE - PROFESSIONAL DESIGN
   ============================================================ */

/* Animated background pattern */
@keyframes contactBgShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.contact-page-section {
  position: relative;
  background: linear-gradient(135deg, #0a1628 0%, #1a2332 25%, #0f1923 50%, #162538 75%, #0a1628 100%);
  background-size: 400% 400%;
  animation: contactBgShift 20s ease infinite;
  min-height: 100vh;
  padding: 140px 0 5rem;
  overflow: hidden;
}

/* Energy Aura Animation Layer 1 */
.contact-page-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(0, 180, 216, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(94, 179, 214, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(14, 165, 233, 0.08) 0%, transparent 45%);
  animation: energyAura1 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes energyAura1 {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Energy Aura Animation Layer 2 */
.contact-page-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 90% 40%, rgba(14, 165, 233, 0.1) 0%, transparent 45%),
    radial-gradient(ellipse at 10% 80%, rgba(0, 180, 216, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 10%, rgba(94, 179, 214, 0.08) 0%, transparent 40%);
  animation: energyAura2 10s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
  z-index: 1;
}

@keyframes energyAura2 {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
  animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #bae6fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.contact-header h1 i {
  background: linear-gradient(135deg, #00b4d8 0%, #5eb3d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 1rem;
}

.contact-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2.5rem;
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

/* ============================================================
   SCROLL-TRIGGERED ANIMATIONS
   ============================================================ */
/* Hide elements initially for scroll animation */
.scroll-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Visible state when scrolled into view */
.scroll-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Contact Form Card - Premium Design */
.contact-form-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(71, 85, 105, 0.4);
  border-radius: 24px;
  padding: 2rem 2.5rem 1.5rem;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(148, 163, 184, 0.1) inset,
    0 10px 40px rgba(0, 180, 216, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00b4d8, #5eb3d6, #00b4d8);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 200% 0%; }
}

.contact-form-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(148, 163, 184, 0.15) inset,
    0 15px 50px rgba(0, 180, 216, 0.15);
  border-color: rgba(94, 179, 214, 0.5);
}

.contact-form-card h2 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.form-intro {
  color: #94a3b8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Form Styles - Modern & Clean */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.01em;
}

.form-group label i {
  color: #5eb3d6;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1.125rem;
  border: 2px solid rgba(71, 85, 105, 0.4);
  border-radius: 12px;
  font-size: max(16px, 1rem);
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(15, 23, 42, 0.6);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #64748b;
}

.form-group select {
  color: #ffffff;
  cursor: pointer;
}

.form-group select option {
  background: #1e293b;
  color: #ffffff;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(94, 179, 214, 0.5);
  background: rgba(15, 23, 42, 0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00b4d8;
  background: rgba(15, 23, 42, 0.9);
  box-shadow:
    0 0 0 4px rgba(0, 180, 216, 0.15),
    0 8px 24px rgba(0, 180, 216, 0.2);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-actions {
  margin-top: 0.5rem;
}

.btn-submit {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  color: #ffffff;
  border: 1px solid rgba(80, 80, 80, 0.5);
  min-height: 44px;
  padding: 0.95rem 2.5rem;
  min-height: 44px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

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

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

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 180, 216, 0.6);
  background: linear-gradient(135deg, #5eb3d6 0%, #0096b8 100%);
  border-color: rgba(0, 200, 240, 0.8);
}

.btn-submit:active {
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 600;
  animation: slideIn 0.4s ease-out;
  display: none;
}

.form-message.success,
.form-message.error {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-message.success {
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  border: 2px solid rgba(16, 185, 129, 0.4);
}

.form-message.error {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 2px solid rgba(239, 68, 68, 0.4);
}

/* Contact Info Sidebar - Premium Design */
.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.contact-info-card,
.contact-social-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(71, 85, 105, 0.4);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(148, 163, 184, 0.1) inset;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before,
.contact-social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #5eb3d6, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-info-card:hover,
.contact-social-card:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 179, 214, 0.5);
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(148, 163, 184, 0.15) inset,
    0 10px 40px rgba(0, 180, 216, 0.15);
}

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

.contact-info-card h3,
.contact-social-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  letter-spacing: -0.01em;
}

.contact-info-card h3 i,
.contact-social-card h3 i {
  background: linear-gradient(135deg, #00b4d8 0%, #5eb3d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item:hover {
  transform: translateX(4px);
}

.info-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  border: 1px solid rgba(80, 80, 80, 0.5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.contact-info-item:hover .info-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #5eb3d6 0%, #0096b8 100%);
  border-color: rgba(0, 200, 240, 0.8);
  box-shadow: 0 6px 16px rgba(0, 180, 216, 0.6);
}

.info-content h4 {
  font-size: 0.95rem;
  color: #e0f2fe;
  margin-bottom: 0.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.info-content p,
.info-content a {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.5;
}

.info-content a {
  color: #5eb3d6;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}

.info-content a:hover {
  color: #00b4d8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-social-card {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-social-card h3 {
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-social-card p {
  color: #94a3b8;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.social-link {
  width: 128px;
  height: 128px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.social-link:hover::before {
  width: 100%;
  height: 100%;
}

.social-link.facebook {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  color: #ffffff;
  border: 1px solid rgba(80, 80, 80, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.social-link.facebook:hover {
  background: linear-gradient(135deg, #5eb3d6 0%, #0096b8 100%);
  border-color: rgba(0, 200, 240, 0.8);
  box-shadow: 0 6px 16px rgba(0, 180, 216, 0.6);
}

.social-link.youtube {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  color: #ffffff;
  border: 1px solid rgba(80, 80, 80, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.social-link.youtube:hover {
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
  border-color: rgba(167, 139, 250, 0.8);
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.6);
}

.social-link:hover {
  transform: translateY(-10px) scale(1.05);
}

.social-link i {
  position: relative;
  z-index: 1;
}

/* Responsive - Mobile-first approach */
@media (min-width: 640px) {
  .contact-info-sidebar {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 1fr;
  }
}

/* Tablet and below: stacked layout */
@media (max-width: 1023px) {
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: var(--container-md);
  }
}

/* Mobile: single column, reduced padding */
@media (max-width: 639px) {
  .contact-page-section {
    padding: 7.5rem var(--spacing-md) var(--spacing-2xl);
  }

  .contact-form-card,
  .contact-info-card,
  .contact-social-card {
    padding: var(--spacing-lg);
  }

  .contact-info-sidebar {
    grid-template-columns: 1fr;
  }

  .btn-submit {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   PRIVACY POLICY PAGE
   ========================================================================== */

/* Animated background pattern for privacy page */
.privacy-page-section {
  position: relative;
  background:
    radial-gradient(ellipse at center, rgba(45, 74, 110, 0.4) 0%, rgba(15, 23, 42, 0.8) 70%, #0f172a 100%),
    linear-gradient(135deg, #152238 0%, #1e3a5f 20%, #2d4a6e 40%, #234163 60%, #2f527a 80%, #1a2f4a 100%);
  background-size: 100% 100%, 400% 400%;
  animation: privacyBgShift 20s ease infinite;
  min-height: 100vh;
  padding: 140px 0 5rem;
  overflow: hidden;
}

@keyframes privacyBgShift {
  0%, 100% {
    background-position: 0% 50%, 0% 50%;
  }
  50% {
    background-position: 0% 50%, 100% 50%;
  }
}

/* Energy Aura Layer 1 - Dark Blue */
.privacy-page-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(94, 179, 214, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(96, 165, 250, 0.12) 0%, transparent 45%);
  animation: energyAura1 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* Energy Aura Layer 2 - Dark Blue */
.privacy-page-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 90% 40%, rgba(96, 165, 250, 0.15) 0%, transparent 45%),
    radial-gradient(ellipse at 10% 80%, rgba(59, 130, 246, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 10%, rgba(94, 179, 214, 0.12) 0%, transparent 40%);
  animation: energyAura2 10s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
  z-index: 1;
}

.privacy-page-section .container {
  position: relative;
  z-index: 2;
}

.privacy-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.privacy-title i {
  background: linear-gradient(135deg, #00b4d8 0%, #5eb3d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 1rem;
}

.btn-back {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(80, 80, 80, 0.5);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-back:hover {
  background: linear-gradient(135deg, #5eb3d6 0%, #0096b8 100%);
  box-shadow: 0 6px 16px rgba(0, 180, 216, 0.6);
  transform: translateY(-2px);
  border-color: rgba(0, 200, 240, 0.8);
}

.btn-back i {
  transition: transform 0.3s ease;
}

.btn-back:hover i {
  transform: translateX(-3px);
}

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

.privacy-content {
  padding: 2rem 0;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  position: relative;
  z-index: 2;
}

.privacy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 700;
}

.privacy-content h2:first-of-type {
  margin-top: 1.5rem;
}

.privacy-content p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: #ffffff;
}

.privacy-content p strong {
  color: #ffffff;
}

.privacy-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  line-height: 1.7;
  color: #ffffff;
}

.privacy-content li {
  margin-bottom: 0.75rem;
  color: #ffffff;
}

@media (max-width: 768px) {
  .privacy-page-section {
    padding: 120px 1rem 3rem;
  }

  .privacy-content {
    padding: 1rem 0;
  }

  .privacy-content h2 {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   NEWSLETTERS ARCHIVE PAGE
   ========================================================================== */

/* Animated background pattern for newsletters page */
@keyframes newslettersBgShift {
  0%, 100% {
    background-position: 0% 50%, 0% 50%;
  }
  50% {
    background-position: 0% 50%, 100% 50%;
  }
}

.newsletters-page-section {
  position: relative;
  background:
    radial-gradient(ellipse at center, rgba(138, 94, 214, 0.3) 0%, rgba(15, 23, 42, 0.8) 70%, #0f172a 100%),
    linear-gradient(135deg, #15172e 0%, #1a1f35 20%, #2a1f3a 40%, #1f2538 60%, #2a2f45 80%, #161b2e 100%);
  background-size: 100% 100%, 400% 400%;
  animation: newslettersBgShift 20s ease infinite;
  min-height: 100vh;
  padding: 140px 0 5rem;
  overflow: hidden;
}

/* Energy Aura Layer 1 - Purple */
.newsletters-page-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(138, 94, 214, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(148, 114, 214, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(128, 94, 199, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(167, 139, 250, 0.08) 0%, transparent 45%);
  animation: energyAura1 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* Energy Aura Layer 2 - Purple */
.newsletters-page-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 90% 40%, rgba(167, 139, 250, 0.1) 0%, transparent 45%),
    radial-gradient(ellipse at 10% 80%, rgba(138, 94, 214, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 10%, rgba(148, 114, 214, 0.08) 0%, transparent 40%);
  animation: energyAura2 10s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
  z-index: 1;
}

.newsletters-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.newsletters-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #bae6fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.newsletters-title i {
  background: linear-gradient(135deg, #00b4d8 0%, #5eb3d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 1rem;
}

.newsletters-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

/* Newsletter Signup Section */
.newsletter-signup-section {
  margin: 3rem 0 4rem;
  position: relative;
  z-index: 2;
}

.newsletter-signup-card {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(148, 114, 214, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(148, 163, 184, 0.1) inset,
    0 0 30px rgba(138, 94, 214, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.newsletter-signup-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(167, 139, 250, 0.3) inset,
    0 0 40px rgba(138, 94, 214, 0.25);
  border-color: rgba(167, 139, 250, 0.6);
}

.newsletter-signup-card h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.newsletter-signup-card h3 i {
  color: #a78bfa;
}

.newsletter-signup-card p {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.newsletter-signup-form {
  margin-top: 1.5rem;
}

.form-group-inline {
  display: flex;
  gap: 1rem;
  align-items: stretch;
}

.form-group-inline input[type="email"] {
  flex: 1;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(148, 114, 214, 0.3);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group-inline input[type="email"]::placeholder {
  color: #64748b;
}

.form-group-inline input[type="email"]:focus {
  outline: none;
  border-color: #a78bfa;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.1);
}

.btn-subscribe {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  color: #ffffff;
  border: 1px solid rgba(80, 80, 80, 0.5);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-subscribe:hover {
  background: linear-gradient(135deg, #5eb3d6 0%, #0096b8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 180, 216, 0.6);
  border-color: rgba(0, 200, 240, 0.8);
}

.signup-message {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  display: none;
}

.signup-message.success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  display: block;
}

.signup-message.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  display: block;
}

/* Mobile: stacked form, reduced padding */
@media (max-width: 767px) {
  .newsletter-signup-card {
    padding: var(--spacing-xl) var(--spacing-lg);
  }

  .form-group-inline {
    flex-direction: column;
  }

  .btn-subscribe {
    justify-content: center;
  }
}

.newsletters-grid {
  display: grid;
  grid-template-columns:  1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.newsletter-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(71, 85, 105, 0.4);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(148, 163, 184, 0.1) inset;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.newsletter-card.scroll-fade-in {
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
}

.newsletter-card.scroll-fade-in.is-visible:hover {
  transform: translateY(-8px);
  transition: opacity 0.8s ease-out, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.newsletter-card:hover {
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(94, 179, 214, 0.3) inset;
  border-color: rgba(94, 179, 214, 0.6);
}

.newsletter-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(94, 179, 214, 0.15));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 180, 216, 0.3);
}

.newsletter-card-icon i {
  font-size: 2.5rem;
  color: #5eb3d6;
}

.newsletter-card-content {
  flex: 1;
}

.newsletter-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.newsletter-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

.newsletter-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.newsletter-card-meta i {
  color: #5eb3d6;
}

.newsletter-card-actions {
  display: flex;
  gap: 1rem;
}

.btn-newsletter-view,
.btn-newsletter-download {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  min-height: 44px;
  font-weight: 700;
  font-size: 0.9rem;
  min-height: 44px;
  letter-spacing: 0.03em;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-newsletter-view {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(80, 80, 80, 0.5);
}

.btn-newsletter-view:hover {
  background: linear-gradient(135deg, #5eb3d6 0%, #0096b8 100%);
  box-shadow: 0 6px 16px rgba(0, 180, 216, 0.6);
  transform: translateY(-2px);
  border-color: rgba(0, 200, 240, 0.8);
  color: var(--color-white);
}

.btn-newsletter-download {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-newsletter-download:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Empty state */
.newsletters-empty {
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

.newsletters-empty-icon {
  font-size: 5rem;
  color: #475569;
  margin-bottom: 2rem;
}

.newsletters-empty h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.newsletters-empty p {
  font-size: 1.1rem;
  color: #94a3b8;
}

/* Responsive - Mobile-first approach */
@media (min-width: 768px) {
  .newsletters-grid {
    grid-template-columns: repeat(auto-fill, minmax(21.875rem, 1fr));
    gap: var(--grid-gap-md);
  }
}

/* Mobile: single column, reduced padding */
@media (max-width: 767px) {
  .newsletters-page-section {
    padding: 7.5rem var(--spacing-md) var(--spacing-2xl);
  }

  .newsletters-grid {
    grid-template-columns: 1fr;
    gap: var(--grid-gap-sm);
  }

  .newsletter-card {
    padding: var(--spacing-lg);
  }

  .newsletter-card-actions {
    flex-direction: column;
  }
}

/* Scroll fade down animation for header */
.scroll-fade-down {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade-down.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SHOP COMING SOON PAGE
   ============================================================ */
.shop-coming-soon-section {
  position: relative;
  background: linear-gradient(135deg, #0c0e12 0%, #13161c 25%, #1a1e26 50%, #21252f 75%, #13161c 100%);
  background-size: 400% 400%;
  animation: newslettersBgShift 20s ease infinite;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 2rem 5rem;
  overflow: hidden;
}

.shop-coming-soon-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.015) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(100, 120, 140, 0.025) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(200, 200, 200, 0.015) 0%, transparent 60%);
  pointer-events: none;
}

/* Construction Elements */
.construction-tape {
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  background: repeating-linear-gradient(
    45deg,
    #fbbf24,
    #fbbf24 40px,
    #1f2937 40px,
    #1f2937 80px
  );
  z-index: 10;
  opacity: 0.9;
}

.construction-tape-top {
  top: 80px;
  transform: rotate(-1deg);
}

.construction-tape-bottom {
  bottom: 40px;
  transform: rotate(1deg);
}

.construction-signs {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.construction-sign {
  position: absolute;
  width: 80px;
  height: 80px;
  background: #fbbf24;
  border: 4px solid #1f2937;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #1f2937;
  animation: floatConstruction 6s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.construction-sign-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.construction-sign-2 {
  top: 60%;
  right: 8%;
  animation-delay: 2s;
}

.construction-sign-3 {
  bottom: 25%;
  left: 15%;
  animation-delay: 4s;
}

@keyframes floatConstruction {
  0%, 100% {
    transform: translateY(0px) rotate(-5deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.coming-soon-content {
  text-align: center;
  position: relative;
  z-index: 5;
  max-width: 900px;
  margin: 0 auto;
}

.coming-soon-icon {
  font-size: 6rem;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  position: relative;
}

.construction-icon-main {
  position: relative;
  display: inline-block;
}

.construction-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #fbbf24;
  color: #1f2937;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
  border: 2px solid #1f2937;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.coming-soon-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #bae6fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.coming-soon-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #94a3b8;
  margin-bottom: 4rem;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.coming-soon-feature {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(71, 85, 105, 0.4);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.coming-soon-feature:hover {
  transform: translateY(-8px);
  border-color: rgba(94, 179, 214, 0.6);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.coming-soon-feature i {
  font-size: 3rem;
  background: linear-gradient(135deg, #00b4d8 0%, #5eb3d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: block;
}

.coming-soon-feature h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.coming-soon-feature p {
  font-size: 1rem;
  color: #94a3b8;
  margin: 0;
}

.coming-soon-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 6rem;
}

.btn-back-home,
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-back-home {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(80, 80, 80, 0.5);
}

.btn-back-home:hover {
  background: linear-gradient(135deg, #5eb3d6 0%, #0096b8 100%);
  box-shadow: 0 6px 16px rgba(0, 180, 216, 0.6);
  transform: translateY(-2px);
  border-color: rgba(0, 200, 240, 0.8);
  color: var(--color-white);
}

.btn-contact {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-contact:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .shop-coming-soon-section {
    padding: 120px 1rem 3rem;
  }

  .construction-tape {
    height: 40px;
  }

  .construction-tape-top {
    top: 60px;
  }

  .construction-sign {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .construction-sign-2 {
    display: none;
  }

  .coming-soon-icon {
    font-size: 4rem;
  }

  .construction-badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.6rem;
  }

  .coming-soon-features {
    grid-template-columns: 1fr;
  }

  .coming-soon-cta {
    flex-direction: column;
    width: 100%;
    margin-bottom: 5rem;
  }

  .btn-back-home,
  .btn-contact {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   PDF INLINE PREVIEW
   ============================================================ */
.newsletter-preview {
  grid-column: 1 / -1;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(94, 179, 214, 0.4);
  border-radius: 16px;
  margin: 1rem 0 2rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.newsletter-preview.active {
  max-height: 800px;
  opacity: 1;
}

.newsletter-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(71, 85, 105, 0.4);
}

.newsletter-preview-header h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.newsletter-preview-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1.25rem;
}

.newsletter-preview-close:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.5);
  transform: scale(1.05);
}

.newsletter-preview-body {
  height: 700px;
  background: #0f172a;
  position: relative;
}

.newsletter-preview-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .newsletter-preview.active {
    max-height: 600px;
  }

  .newsletter-preview-header {
    padding: 1rem 1.5rem;
  }

  .newsletter-preview-header h3 {
    font-size: 1.2rem;
  }

  .newsletter-preview-body {
    height: 500px;
  }
}

/* ============================================================
   MOBILE-FIRST RESPONSIVE BREAKPOINTS - ADDED FOR MOBILE PERFECTION
   ============================================================ */

/* ===== NEWSLETTERS GRID ===== */
/* Tablet: 2 columns */
@media (min-width: 640px) {
  .newsletters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

/* Desktop: 3 columns */
@media (min-width: 1024px) {
  .newsletters-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* ===== ABOUT PAGE - MISSION VALUES ===== */
/* Tablet: 2 columns */
@media (min-width: 640px) {
  .about-mission__values {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: 4 columns */
@media (min-width: 1024px) {
  .about-mission__values {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== ABOUT PAGE - STORY GRID ===== */
/* Desktop: 2 columns with fixed sidebar */
@media (min-width: 768px) {
  .about-story__grid {
    grid-template-columns: 400px 1fr;
  }
}

/* ===== ABOUT PAGE - BOARD MEMBERS ===== */
/* Tablet: 2 columns */
@media (min-width: 640px) {
  .about-board__members {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: 4 columns with centered last 2 */
@media (min-width: 1024px) {
  .about-board__members {
    grid-template-columns: repeat(4, 1fr);
  }

  .board-member:nth-child(13) {
    grid-column: 2 / 3;
  }

  .board-member:nth-child(14) {
    grid-column: 3 / 4;
  }
}

/* ===== CONTACT PAGE - ENSURE MOBILE USABILITY ===== */
/* Mobile: Stack contact grid */
@media (max-width: 767px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FORM INPUTS - MOBILE OPTIMIZATION ===== */
/* Ensure all form inputs and buttons are touch-friendly on mobile */
@media (max-width: 767px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: max(16px, 1rem); /* Prevent iOS zoom */
    padding: 1rem 1.125rem; /* Larger touch targets */
  }

  .btn-submit {
    width: 100%;
    min-height: 48px; /* Extra large for mobile */
    padding: 1rem 2rem;
  }

  .btn-newsletter-view,
  .btn-newsletter-download {
    min-height: 48px; /* Extra large for mobile */
    padding: 1rem 1.25rem;
  }
}

/* ===== END MOBILE-FIRST RESPONSIVE BREAKPOINTS ===== */
