/** Shopify CDN: Minification failed

Line 21:12 Expected identifier but found whitespace
Line 21:14 Unexpected "{"
Line 21:24 Expected ":"
Line 25:14 Expected identifier but found whitespace
Line 25:16 Unexpected "{"
Line 25:26 Expected ":"
Line 28:12 Expected identifier but found whitespace
Line 28:14 Unexpected "{"
Line 28:24 Expected ":"

**/
/* ============================================
   NotfallVersorgt.de – Base Styles
   Shopify Theme: Dawn Custom
   ============================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  --nv-teal: {{ settings.color_teal | default: '#0D9488' }};
  --nv-teal-dark: #0A7A70;
  --nv-teal-light: #E6F7F5;
  --nv-teal-subtle: #F0FAF9;
  --nv-orange: {{ settings.color_orange | default: '#E85D3A' }};
  --nv-orange-dark: #D04A28;
  --nv-orange-light: #FFF0EC;
  --nv-navy: {{ settings.color_navy | default: '#1A2332' }};
  --nv-navy-light: #2D3A4D;
  --nv-gray-100: #F8F9FA;
  --nv-gray-200: #E9ECEF;
  --nv-gray-300: #DEE2E6;
  --nv-gray-400: #ADB5BD;
  --nv-gray-500: #6C757D;
  --nv-gray-600: #495057;
  --nv-white: #FFFFFF;
  --nv-black: #0F1419;
  /* Solid text colors for dark backgrounds (guaranteed contrast) */
  --nv-on-dark: #FFFFFF;
  --nv-on-dark-high: #E8EDF3;
  --nv-on-dark-mid: #C4CDD9;
  --nv-on-dark-low: #9AACBF;
  --nv-radius-sm: 8px;
  --nv-radius-md: 12px;
  --nv-radius-lg: 16px;
  --nv-radius-xl: 24px;
  --nv-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --nv-shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --nv-shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --nv-shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
  --nv-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nv-font-display: 'Montserrat', sans-serif;
  --nv-font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif;
  --nv-max-width: 1280px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol { margin: 0; padding: 0; }

.nv-body {
  font-family: var(--nv-font-body);
  color: var(--nv-navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background: var(--nv-white);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--nv-transition); }
ul { list-style: none; }

/* ---- SKIP LINK ---- */
.nv-skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--nv-navy);
  color: var(--nv-white);
  padding: 12px 24px;
  z-index: 9999;
  border-radius: var(--nv-radius-sm);
  font-weight: 600;
}
.nv-skip-link:focus {
  top: 16px;
}

/* ---- CONTAINER ---- */
.nv-container {
  max-width: var(--nv-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 640px) {
  .nv-container { padding: 0 16px; }
}

/* ---- SECTION LAYOUT ---- */
.nv-section { padding: 80px 0; }
@media (max-width: 640px) {
  .nv-section { padding: 56px 0; }
}

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

.nv-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nv-font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--nv-teal);
  margin-bottom: 16px;
}
.nv-section-label::before,
.nv-section-label::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--nv-teal);
  border-radius: 1px;
}
@media (max-width: 640px) {
  .nv-section-label::before,
  .nv-section-label::after { width: 12px; }
}

.nv-section-title {
  font-family: var(--nv-font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--nv-navy);
  margin-bottom: 16px;
}

.nv-section-subtitle {
  font-size: 18px;
  color: var(--nv-gray-600);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- BUTTONS ---- */
.nv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--nv-font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--nv-radius-md);
  border: none;
  cursor: pointer;
  transition: var(--nv-transition);
  white-space: nowrap;
}

.nv-btn-primary {
  background: var(--nv-orange);
  color: var(--nv-white);
  box-shadow: 0 4px 14px rgba(232, 93, 58, 0.35);
}
.nv-btn-primary:hover {
  background: var(--nv-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 93, 58, 0.45);
}

.nv-btn-secondary {
  background: var(--nv-white);
  color: var(--nv-navy);
  border: 2px solid var(--nv-gray-300);
}
.nv-btn-secondary:hover {
  border-color: var(--nv-teal);
  color: var(--nv-teal);
  transform: translateY(-2px);
}

.nv-btn-teal {
  background: var(--nv-teal);
  color: var(--nv-white);
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
}
.nv-btn-teal:hover {
  background: var(--nv-teal-dark);
  transform: translateY(-2px);
}

.nv-btn-sm { padding: 12px 24px; font-size: 14px; }
.nv-btn-lg { padding: 20px 40px; font-size: 18px; }

@media (max-width: 640px) {
  .nv-btn-lg { padding: 16px 28px; font-size: 16px; }
}

/* ---- ANIMATIONS ---- */
@keyframes nv-fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.nv-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.nv-reveal.nv-visible {
  opacity: 1;
  transform: translateY(0);
}
