/* Modern MännerVitalität Styling */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --accent: #059669;
  --accent-hover: #047857;
  --accent-light: #d1fae5;
  --text-main: #334155;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --border: #e2e8f0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
}

.gradient-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #064e3b 100%);
}

.gradient-card {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.accent-glow {
  box-shadow: 0 10px 25px -5px rgba(5, 150, 105, 0.25);
}

/* Cookie Banner Modal */
#cookie-banner {
  box-shadow: 0 -10px 25px -5px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.nav-link {
  transition: color 0.2s ease-in-out;
}
.nav-link:hover {
  color: #059669;
}
