@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  --color-primary: #255F38;
  --color-secondary: #1F7D53;
  --color-dark: #18230F;
  --color-medium: #27391C;
  --color-light: #FFFFFF;
  
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Source Sans 3', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  
  --shadow-sm: 0 2px 4px rgba(24,35,15,0.1);
  --shadow-md: 0 4px 8px rgba(24,35,15,0.15);
  --shadow-lg: 0 8px 16px rgba(24,35,15,0.2);
  
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: var(--font-secondary);
  color: var(--color-dark);
  line-height: 1.6;
  background-color: var(--color-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  text-shadow: 1px 1px 2px rgba(24,35,15,0.1);
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 500;
}

h5 {
  font-size: 1.25rem;
  font-weight: 500;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
}

p {
  margin-bottom: var(--space-sm);
}

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

a:hover {
  color: var(--color-secondary);
}

.natureheals-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
a.natureheals-logo img {
    width: 150px;
}

.natureheals-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.natureheals-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
}

.natureheals-logo {
  height: 40px;
  display: block;
}

.natureheals-menu {
  display: flex;
  gap: var(--space-md);
  list-style: none;
}

.natureheals-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.natureheals-menu-toggle svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-primary);
  stroke-width: 2;
  stroke-linecap: round;
}

.natureheals-menu-item {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 1.1rem;
}

.natureheals-menu-link {
  color: var(--color-dark);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 4px;
  transition: var(--transition);
}

.natureheals-menu-link:hover {
  color: var(--color-primary);
  background: rgba(37,95,56,0.1);
}

.natureheals-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(37,95,56,0.05), rgba(31,125,83,0.05));
  position: relative;
  overflow: hidden;
}

.natureheals-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(37,95,56,0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.natureheals-section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.natureheals-section-light {
  background: var(--color-light);
}

.natureheals-section-soft {
  background: rgba(37,95,56,0.03);
}

.natureheals-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-md);
}

.natureheals-col-6 {
  grid-column: span 6;
}

.natureheals-col-4 {
  grid-column: span 4;
}

.natureheals-col-3 {
  grid-column: span 3;
}

.natureheals-col-12 {
  grid-column: span 12;
}

.natureheals-card {
  background: var(--color-light);
  border-radius: 12px;
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.natureheals-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.natureheals-button {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-primary);
  color: var(--color-light);
  border-radius: 25px;
  font-weight: 500;
  font-family: var(--font-secondary);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.natureheals-button:hover {
  background: var(--color-secondary);
  color: var(--color-light);
  transform: translateY(-2px);
}

.natureheals-button-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.natureheals-button-outline:hover {
  background: var(--color-primary);
  color: var(--color-light);
}

.natureheals-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.natureheals-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.natureheals-label {
  font-weight: 500;
  color: var(--color-dark);
}

.natureheals-input,
.natureheals-textarea {
  padding: var(--space-sm);
  border: 1px solid rgba(37,95,56,0.2);
  border-radius: 8px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: var(--transition);
}

.natureheals-input:focus,
.natureheals-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37,95,56,0.1);
}

.natureheals-textarea {
  min-height: 150px;
  resize: vertical;
}

.natureheals-footer {
  background: var(--color-dark);
  color: var(--color-light);
  padding: var(--space-xl) 0 var(--space-md);
}

.natureheals-footer a {
  color: rgba(255,255,255,0.8);
}

.natureheals-footer a:hover {
  color: var(--color-light);
}

.natureheals-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.natureheals-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.natureheals-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.natureheals-price-card {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  border-radius: 16px;
  background: var(--color-light);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.natureheals-price-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.natureheals-price-card.featured {
  border: 2px solid var(--color-primary);
}

.natureheals-price-card.featured::before {
  content: 'Populär';
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--color-primary);
  color: var(--color-light);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.natureheals-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: var(--space-md) 0;
}

.natureheals-price-unit {
  font-size: 1rem;
  color: var(--color-medium);
}

.natureheals-features {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.natureheals-features li {
  padding: var(--space-xs) 0;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.natureheals-features li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: bold;
}

.natureheals-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
}

.natureheals-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.natureheals-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,95,56,0.5), rgba(31,125,83,0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.natureheals-image-container:hover .natureheals-overlay {
  opacity: 1;
}

.natureheals-overlay-content {
  color: var(--color-light);
  text-align: center;
  padding: var(--space-md);
}

@media (max-width: 1024px) {
  .natureheals-col-6 {
    grid-column: span 12;
  }
  
  .natureheals-col-4 {
    grid-column: span 6;
  }
  
  .natureheals-col-3 {
    grid-column: span 6;
  }

  .natureheals-col-6  h1{
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  .natureheals-menu-toggle {
    display: block;
  }
  
  .natureheals-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-light);
    flex-direction: column;
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
  }
  
  .natureheals-menu.active {
    display: flex;
  }
  
  .natureheals-col-4,
  .natureheals-col-3 {
    grid-column: span 12;
  }
  
  .natureheals-section {
    padding: var(--space-xl) 0;
  }
  
  .natureheals-hero {
    min-height: 80vh;
  }
  
  .natureheals-price-card {
    padding: var(--space-lg) var(--space-md);
  }
  
  .natureheals-image-container {
    height: 400px!important;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .natureheals-container {
    padding: 0 var(--space-sm);
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .natureheals-card {
    padding: var(--space-md);
  }
  
  .natureheals-icon {
    width: 40px;
    height: 40px;
  }
  
  .natureheals-price {
    font-size: 2.5rem;
  }
}

@media (max-width: 360px) {
  html {
    font-size: 13px;
  }
  
  .natureheals-button {
    padding: var(--space-sm);
    font-size: 0.9rem;
  }
  
  .natureheals-price {
    font-size: 2rem;
  }
  
  .natureheals-image-container {
    height: 250px;
  }
}