/* Vitasol Alpine Nutrition - Radically Different Glassmorphism & Alpine Design System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg: #0C1821;
  --surface-dark: #1B2A38;
  --surface-glass: rgba(27, 42, 56, 0.7);
  --accent: #38BDF8;
  --accent-hover: #0284C7;
  --accent-green: #059669;
  --text-white: #FFFFFF;
  --text-muted: #94A3B8;
  --border: rgba(255, 255, 255, 0.12);
  --border-light: #E2E8F0;
  
  --font-main: 'Outfit', sans-serif;
  --font-num: 'Space Grotesk', sans-serif;

  --shadow-glow: 0 0 30px rgba(56, 189, 248, 0.2);
  --radius-card: 28px;
  --radius-btn: 16px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg);
  color: var(--text-white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.2;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5.5rem 0;
}

/* Notice & Topbar */
.top-editorial {
  background: #1E293B;
  color: #94A3B8;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.top-bar {
  background: #0284C7;
  color: white;
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

/* Header Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(12, 24, 33, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
}

.logo {
  font-size: 1.7rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #38BDF8 0%, #059669 100%);
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-glow);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  color: #CBD5E1;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.9rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-accent {
  background: var(--accent);
  color: #0C1821;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.35);
}

.btn-accent:hover {
  background: #7DD3FC;
  transform: translateY(-2px);
}

.btn-emerald {
  background: var(--accent-green);
  color: white;
}

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

.btn-block {
  width: 100%;
}

.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.badge-ice {
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.badge-green {
  background: rgba(5, 150, 105, 0.15);
  color: #34D399;
  border: 1px solid rgba(5, 150, 105, 0.3);
}

/* Split Screen Hero */
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  padding: 5rem 0;
}

.hero-split h1 {
  font-size: 3.6rem;
  margin: 1.2rem 0;
  letter-spacing: -0.02em;
}

.hero-card-glass {
  background: var(--surface-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glow);
}

/* 4-Säulen Cards */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.pillar-card {
  background: var(--surface-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2.2rem;
  transition: all 0.3s;
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.pillar-num {
  font-family: var(--font-num);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

/* Meal Slider Grid */
.meal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.meal-card {
  background: var(--surface-dark);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.meal-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.meal-content {
  padding: 1.5rem;
}

/* Inputs */
.form-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid var(--border);
  border-radius: 14px;
  font-family: var(--font-main);
  font-size: 1rem;
  color: white;
  margin-top: 0.4rem;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  max-width: 480px;
  background: #1E293B;
  color: white;
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  z-index: 2000;
}

.cookie-banner[style*="display: none"] {
  display: none !important;
  pointer-events: none !important;
}

/* Footer */
.footer {
  background: #070F16;
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 2rem 0;
  font-size: 0.9rem;
}

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

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: #94A3B8;
}

.footer-links a:hover {
  color: white;
}
