/* ============================================
   NUVIASLIDEAREN - Neon Glassmorphism Design System
   Premium Public Park Discovery Platform - Finland
   ============================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --deep-forest: #0a0a0a;
  --moss-green: #00ff88;
  --soft-earth: #00d4ff;
  --mist-grey: rgba(255, 255, 255, 0.08);
  --sky-accent: #00b4ff;
  --white: #ffffff;
  --off-white: #080c10;
  --text-dark: #f0f0f0;
  --text-medium: #b0b8c4;
  --text-light: #7a8594;
  --neon-green: #00ff88;
  --neon-blue: #00d4ff;
  --neon-green-dim: rgba(0, 255, 136, 0.15);
  --neon-blue-dim: rgba(0, 212, 255, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-bg-light: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 20px;
  --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 12px 50px rgba(0, 212, 255, 0.15);
  --shadow-glow-green: 0 0 20px rgba(0, 255, 136, 0.2);
  --shadow-glow-blue: 0 0 20px rgba(0, 212, 255, 0.2);
  --gradient-forest: linear-gradient(135deg, #0a0a0a, #0d1b2a, #1b2838);
  --gradient-hero: linear-gradient(135deg, rgba(10,10,10,0.85), rgba(13,27,42,0.75), rgba(0,212,255,0.15));
  --gradient-card: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.9) 100%);
  --gradient-neon: linear-gradient(135deg, #00ff88, #00d4ff);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --sidebar-width: 260px;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
}

/* ── Utility Classes ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-neon);
  border-radius: 2px;
  box-shadow: var(--shadow-glow-green);
}

.section-header p {
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 1.05rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ── Scroll Reveal Animation Classes ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── Floating Leaf Animation ── */
@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(5deg); }
  50% { transform: translateY(-8px) rotate(-3deg); }
  75% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes floatLeaf2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(-5deg); }
  66% { transform: translateY(-22px) rotate(4deg); }
}

@keyframes drift {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(20px) translateY(-10px); }
}

.floating-leaf {
  position: absolute;
  opacity: 0.1;
  pointer-events: none;
  font-size: 2rem;
  animation: floatLeaf 8s ease-in-out infinite;
}

.floating-leaf:nth-child(2) {
  animation: floatLeaf2 10s ease-in-out infinite;
  animation-delay: -3s;
}

.floating-leaf:nth-child(3) {
  animation: drift 12s ease-in-out infinite;
  animation-delay: -5s;
}

/* ── Neon glow keyframes ── */
@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 5px rgba(0, 255, 136, 0.3), 0 0 15px rgba(0, 255, 136, 0.1); }
  50% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.5), 0 0 30px rgba(0, 255, 136, 0.2); }
}

@keyframes neonPulseBlue {
  0%, 100% { box-shadow: 0 0 5px rgba(0, 212, 255, 0.3), 0 0 15px rgba(0, 212, 255, 0.1); }
  50% { box-shadow: 0 0 10px rgba(0, 212, 255, 0.5), 0 0 30px rgba(0, 212, 255, 0.2); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--neon-green);
  color: #0a0a0a;
  border: 2px solid var(--neon-green);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.25);
}

.btn-primary:hover {
  background: #00e67a;
  border-color: #00e67a;
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.4), 0 8px 25px rgba(0, 255, 136, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--neon-green);
  border: 2px solid var(--neon-green);
}

.btn-outline:hover {
  background: var(--neon-green);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3), 0 8px 25px rgba(0, 255, 136, 0.15);
}

.btn-earth {
  background: var(--neon-blue);
  color: #0a0a0a;
  border: 2px solid var(--neon-blue);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.25);
}

.btn-earth:hover {
  background: #00c0e8;
  border-color: #00c0e8;
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.4), 0 8px 25px rgba(0, 212, 255, 0.2);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ── Sidebar Navigation (Desktop) ── */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-right: 1px solid var(--glass-border);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 30px 0;
  transition: var(--transition-base);
  overflow-y: auto;
}

.sidebar-logo {
  padding: 0 24px 30px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 20px;
}

.sidebar-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.sidebar-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: var(--neon-green-dim);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.15);
}

.sidebar-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sidebar-logo .logo-sub {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.sidebar-nav {
  flex: 1;
  padding: 0 12px;
}

.sidebar-nav li {
  margin-bottom: 4px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  color: var(--text-light);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: var(--transition-base);
}

.sidebar-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--gradient-neon);
  border-radius: 2px;
  transition: var(--transition-base);
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--white);
  background: var(--glass-bg);
}

.sidebar-nav a:hover::before,
.sidebar-nav a.active::before {
  height: 24px;
}

.sidebar-nav a.active {
  background: rgba(0, 255, 136, 0.06);
}

.sidebar-nav .nav-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.sidebar-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--glass-border);
}

.sidebar-footer p {
  color: var(--text-light);
  font-size: 0.7rem;
  text-align: center;
}

/* ── Mobile Top Navbar ── */
.mobile-navbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  z-index: 1001;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
}

.mobile-navbar .mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.mobile-navbar .mobile-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--neon-green-dim);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.mobile-navbar .mobile-logo span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hamburger {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neon-green);
  border-radius: 2px;
  transition: var(--transition-base);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1000;
  padding: 30px 24px;
  overflow-y: auto;
}

.mobile-menu.open {
  display: block;
  animation: fadeInDown 0.3s ease;
}

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

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-base);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--neon-green);
}

.mobile-menu .nav-icon {
  font-size: 1.2rem;
  width: 28px;
  text-align: center;
}

/* ── Main Content Area ── */
.main-content {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
  background: var(--off-white);
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/photo-1507003211169-0a1dd7228f2d.png') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 10s ease;
}

.hero:hover .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 136, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  color: var(--neon-green);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.1);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 520px;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--neon-blue);
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll span {
  display: block;
  font-size: 1.5rem;
  margin-top: 6px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ── Park Cards ── */
.parks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.park-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-base);
  position: relative;
}

.park-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 212, 255, 0.2);
}

.park-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.park-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.park-card:hover .park-card-image img {
  transform: scale(1.08);
}

.park-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: var(--gradient-card);
}

.park-card-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
}

.park-card-rating {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--neon-green);
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(0, 255, 136, 0.2);
}

.park-card-body {
  padding: 24px;
}

.park-card-body h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.park-card-body h3 a {
  color: var(--white);
  transition: var(--transition-base);
}

.park-card-body h3 a:hover {
  color: var(--neon-blue);
}

.park-card-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.park-card-tags span {
  background: var(--neon-green-dim);
  color: var(--neon-green);
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(0, 255, 136, 0.15);
}

.park-card-body p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--text-medium);
}

.park-card-footer {
  display: flex;
  gap: 12px;
}

/* ── Features Section ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-neon);
  transform: scaleX(0);
  transition: var(--transition-base);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 212, 255, 0.15);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--neon-blue-dim);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.feature-card h4 {
  margin-bottom: 10px;
  color: var(--white);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* ── Stats Section ── */
.stats-section {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(var(--glass-blur));
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  color: var(--neon-green);
  font-size: 2.5rem;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.stat-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ── Gallery Grid ── */
.gallery-masonry {
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  transition: var(--transition-base);
}

.gallery-item:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow-glow-blue);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,10,10,0.6);
  opacity: 0;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-blue);
  font-size: 2rem;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10001;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-base);
  border: 1px solid var(--glass-border);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(0, 255, 136, 0.3);
  color: var(--neon-green);
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  border: 1px solid var(--glass-border);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--neon-blue);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ── Contact Form ── */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-base);
}

.form-control::placeholder {
  color: var(--text-light);
}

.form-control:focus {
  border-color: var(--neon-green);
  box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.1), 0 0 15px rgba(0, 255, 136, 0.1);
}

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

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237a8594' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  background-color: rgba(255, 255, 255, 0.04);
}

select.form-control option {
  background: #1a1a2e;
  color: var(--white);
}

.form-message {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(0, 255, 136, 0.08);
  color: var(--neon-green);
  border: 1px solid rgba(0, 255, 136, 0.2);
}

.form-message.error {
  display: block;
  background: rgba(255, 60, 60, 0.08);
  color: #ff5555;
  border: 1px solid rgba(255, 60, 60, 0.2);
}

/* ── FAQ Accordion ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(0, 212, 255, 0.15);
}

.faq-item.active {
  border-color: rgba(0, 255, 136, 0.2);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  transition: var(--transition-base);
}

.faq-question:hover {
  background: rgba(255,255,255,0.02);
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--neon-green);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
}

.faq-answer-inner p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-medium);
}

/* ── Page Hero (Inner Pages) ── */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero .hero-bg {
  transform: scale(1);
}

.page-hero .hero-content {
  padding: 80px 60px 40px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
}

.breadcrumb a:hover {
  color: var(--neon-blue);
}

.breadcrumb span {
  color: rgba(255,255,255,0.3);
}

.breadcrumb .current {
  color: var(--neon-green);
}

/* ── Park Detail ── */
.park-detail-hero {
  min-height: 55vh;
}

.park-detail-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 60px 0;
}

.park-detail-main h2 {
  margin-bottom: 16px;
  font-size: 1.6rem;
  color: var(--white);
}

.park-detail-main p {
  margin-bottom: 20px;
  color: var(--text-medium);
}

.park-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.park-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-medium);
}

.park-features-list li::before {
  content: '✓';
  color: var(--neon-green);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
}

.park-sidebar-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 30px;
  height: fit-content;
}

.park-sidebar-card h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--white);
}

.park-info-list {
  margin-bottom: 24px;
}

.park-info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.9rem;
}

.park-info-list li:last-child {
  border-bottom: none;
}

.park-info-list .info-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.park-info-list .info-label {
  color: var(--text-light);
  font-size: 0.8rem;
  display: block;
}

.park-info-list .info-value {
  font-weight: 600;
  color: var(--white);
}

/* ── Park Detail Gallery ── */
.park-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 30px 0;
}

.park-gallery-grid .gallery-item {
  height: 200px;
}

.park-gallery-grid .gallery-item img {
  height: 100%;
  object-fit: cover;
}

/* ── Tips Section ── */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.tip-card {
  background: rgba(0, 212, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--neon-blue);
  border-top: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.tip-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.tip-card p {
  font-size: 0.88rem;
  color: var(--text-medium);
}

/* ── About Page ── */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--glass-border);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.about-text h2 {
  margin-bottom: 20px;
  color: var(--white);
}

.about-text p {
  margin-bottom: 16px;
  color: var(--text-medium);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-value .value-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-value h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--neon-green);
}

.about-value p {
  font-size: 0.85rem;
  color: var(--text-medium);
}

/* ── Legal Pages ── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.4rem;
  color: var(--white);
}

.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 1.15rem;
  color: var(--neon-blue);
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--text-medium);
}

.legal-content a {
  color: var(--neon-green);
  text-decoration: underline;
  text-decoration-color: rgba(0, 255, 136, 0.3);
}

.legal-content a:hover {
  text-decoration-color: var(--neon-green);
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--text-medium);
  font-size: 0.95rem;
}

.legal-content ul li::marker {
  color: var(--neon-green);
}

.legal-content .last-updated {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 30px;
  font-style: italic;
}

/* ── Footer ── */
.footer {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(var(--glass-blur));
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--glass-border);
}

.footer-about .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-about .footer-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--neon-green-dim);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.footer-about .footer-logo span {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-about p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: var(--neon-green);
  padding-left: 4px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--text-light);
  font-size: 0.8rem;
}

.footer-bottom-links a:hover {
  color: var(--neon-blue);
}

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, #0a0a0a, #0d1b2a, #0a1628);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
  position: relative;
}

.cta-section .btn-earth {
  font-size: 1rem;
  padding: 16px 40px;
  position: relative;
}

/* ── Parallax Background ── */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  right: 0;
  bottom: -20%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}

/* ── Cookie Banner ── */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 9999;
  padding: 24px;
  border-top: 1px solid var(--glass-border);
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-content p {
  color: var(--text-medium);
  font-size: 0.9rem;
  flex: 1;
  min-width: 280px;
}

.cookie-content a {
  color: var(--neon-green);
  text-decoration: underline;
  text-decoration-color: rgba(0, 255, 136, 0.3);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-base);
}

.testimonial-card:hover {
  border-color: rgba(0, 212, 255, 0.15);
  box-shadow: var(--shadow-hover);
}

.testimonial-stars {
  color: var(--neon-green);
  font-size: 1rem;
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.testimonial-card p {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-medium);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--neon-blue-dim);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ── Newsletter ── */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
  color: var(--text-light);
}

.newsletter-form input:focus {
  border-color: var(--neon-green);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.1);
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: rgba(0, 255, 136, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--neon-green);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: 999;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--neon-green);
  color: #0a0a0a;
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

/* ── Loading Skeleton ── */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

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

@media (max-width: 1024px) {
  .sidebar {
    display: none;
  }
  
  .mobile-navbar {
    display: flex;
  }
  
  .main-content {
    margin-left: 0;
    padding-top: 64px;
  }
  
  .hero-content {
    padding: 40px 30px;
  }
  
  .park-detail-content {
    grid-template-columns: 1fr;
  }
  
  .park-sidebar-card {
    position: static;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }
  
  .hero-content {
    padding: 30px 20px;
  }
  
  .page-hero .hero-content {
    padding: 60px 20px 30px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .parks-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-masonry {
    columns: 2;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .park-features-list {
    grid-template-columns: 1fr;
  }
  
  .park-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .about-values {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .cta-section {
    padding: 50px 0;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-scroll {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .gallery-masonry {
    columns: 1;
  }

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

  .stat-item h3 {
    font-size: 2rem;
  }

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

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

  .park-gallery-grid {
    grid-template-columns: 1fr;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Print Styles ── */
@media print {
  .sidebar, .mobile-navbar, .cookie-banner, .back-to-top, .footer {
    display: none !important;
  }
  
  .main-content {
    margin-left: 0 !important;
    padding-top: 0 !important;
  }
  
  body {
    background: #fff;
    color: #000;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #000;
  }
  
  p {
    color: #333;
  }
}