/* ========================================
   WEBSITE & DIGITALISIERUNG MIT HERZ
   Shared Styles for all pages
   ======================================== */

/* ----- IMPORTS & VARIABLES ----- */
/* Quicksand */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/quicksand-v37-latin-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/quicksand-v37-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/quicksand-v37-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/quicksand-v37-latin-700.woff2') format('woff2');
}

/* Nunito */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/nunito-v32-latin-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/nunito-v32-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/nunito-v32-latin-700.woff2') format('woff2');
}
:root {
  /* Colors */
  --sage: #9CAF88;
  --sage-light: #E8F0E3;
  --sage-dark: #7A8F6A;
  --blush: #F4D4D4;
  --blush-light: #FAEAEA;
  --lavender: #D4C4E8;
  --lavender-light: #F5F0FA;
  --cream: #FDF8F3;
  --text: #4A4A4A;
  --text-light: #7A7A7A;
  --white: #FFFFFF;
  --danger: #d32f2f;
  
  /* Spacing & Layout */
  --max-width: 900px;
  --border-radius: 20px;
  --border-radius-sm: 12px;
  --border-radius-lg: 30px;
  
  /* Shadows */
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
  
  /* Transitions */
  --transition: all 0.3s ease;
}

/* ----- RESET & BASE ----- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, var(--cream) 0%, var(--sage-light) 100%);
  line-height: 1.7;
  padding: 2rem 1rem;
}

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

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4 {
  font-family: 'Quicksand', sans-serif;
  color: var(--text);
  line-height: 1.3;
}

h1 { font-size: 2rem; margin-bottom: 0.75rem; }
h2 { font-size: 1.5rem; margin: 2rem 0 1rem; }
h3 { font-size: 1.2rem; margin: 1.25rem 0 0.75rem; }

p { margin-bottom: 1rem; }

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

a:hover {
  color: var(--sage-dark);
  text-decoration: underline;
}

.text-center { text-align: center; }
.text-light { color: var(--text-light); }

/* ----- HEADER & HERO ----- */
.header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 2px dashed var(--sage-light);
  margin-bottom: 2rem;
}

.header .subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
}

.hero {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--blush-light) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.6;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--lavender-light) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.6;
}

.hero-content { position: relative; z-index: 1; }

.hero h1 span {
  display: block;
  font-size: 1.1rem;
  color: var(--sage);
  font-weight: 500;
  margin-top: 0.5rem;
}

.tagline {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- DECORATIVE ELEMENTS ----- */
.sparkle {
  position: fixed;
  font-size: 1.5rem;
  opacity: 0.3;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

.sparkle:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 20%; right: 8%; animation-delay: 2s; }
.sparkle:nth-child(3) { bottom: 15%; left: 7%; animation-delay: 4s; }

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

.heart { color: var(--blush); font-size: 1.3em; }

/* ----- BUTTONS ----- */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--blush) 0%, var(--lavender) 100%);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  text-decoration: none;
  color: var(--white);
}

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

.btn-secondary:hover {
  background: var(--sage-light);
  color: var(--sage-dark);
}

.btn-block { display: block; width: 100%; margin: 0.5rem 0; }

/* ----- PRICE TAG ----- */
.price-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  transition: var(--transition);
}

.price-tag:hover {
  transform: rotate(0deg) scale(1.05);
}

.price-tag small {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 0.25rem;
}

/* ----- SECTIONS ----- */
section { margin: 2.5rem 0; }

.section-card {
  background: var(--white);
  border-radius: var(--border-radius-sm);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

/* ----- INFO BOXES ----- */
.info-box {
  background: var(--sage-light);
  padding: 1.25rem;
  border-radius: var(--border-radius-sm);
  margin: 1rem 0;
  border-left: 4px solid var(--sage);
}

.info-box.warning {
  background: var(--blush-light);
  border-left-color: var(--blush);
}

.info-box.danger {
  background: var(--lavender-light);
  border-left-color: var(--lavender);
}

.info-box strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
}

/* ----- CONTACT BOX ----- */
.contact-box {
  background: var(--sage-light);
  padding: 1.25rem;
  border-radius: var(--border-radius-sm);
  margin: 1rem 0;
}

.contact-box strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.contact-box a {
  color: var(--sage);
  font-weight: 600;
}

.contact-box a:hover { text-decoration: underline; }

/* ----- LISTS ----- */
ul { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

ul.checklist { list-style: none; padding-left: 0; }
ul.checklist li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
}

ul.checklist li::before {
  content: '✅';
  position: absolute;
  left: 0;
}

ul.x-list { list-style: none; padding-left: 0; }
ul.x-list li {
  padding: 0.4rem 0;
  padding-left: 1.75rem;
  position: relative;
}

ul.x-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--danger);
}

ul.sparkle-list { list-style: none; padding-left: 0; }
ul.sparkle-list li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
}

ul.sparkle-list li::before {
  content: '✨';
  position: absolute;
  left: 0;
}

/* ----- EXAMPLES GRID ----- */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.example-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.example-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.example-image {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--blush-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}

.example-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.1) 10px,
    rgba(255,255,255,0.1) 20px
  );
}

.example-label {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.95);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.example-info { padding: 1.5rem; }

/* ----- OFFER SECTION ----- */
.offer {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow);
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.offer::before {
  content: '✨';
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3rem;
  opacity: 0.2;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.offer-col {
  padding: 1.5rem;
  border-radius: var(--border-radius-sm);
}

.offer-col.you-bring {
  background: var(--blush-light);
  border: 2px dashed var(--blush);
}

.offer-col.i-do {
  background: var(--sage-light);
  border: 2px solid var(--sage);
}

/* ----- GUARANTEE ----- */
.guarantee {
  background: var(--lavender-light);
  border-left: 4px solid var(--lavender);
  padding: 1.25rem;
  border-radius: var(--border-radius-sm);
  margin: 2rem 0;
  font-style: italic;
}

.guarantee strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-style: normal;
}

/* ----- CTA SECTION ----- */
.cta {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--blush-light) 100%);
  border-radius: var(--border-radius-lg);
  margin: 3rem 0;
}

.urgency {
  display: inline-block;
  background: var(--blush);
  color: var(--text);
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-weight: 600;
  margin: 1rem 0;
  font-size: 0.95rem;
}

/* ----- PROCESS TIMELINE ----- */
.process-timeline {
  background: var(--cream);
  padding: 1.5rem;
  border-radius: var(--border-radius-sm);
  margin: 2rem 0;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.process-step {
  flex: 1;
  min-width: 150px;
  padding: 1rem;
}

.process-step .step-number {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.process-step strong { display: block; margin-bottom: 0.25rem; }
.process-step span { font-size: 0.9rem; color: var(--text-light); }

/* ----- TABLES ----- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.95rem;
}

.data-table th,
.data-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px dashed var(--sage-light);
}

.data-table th {
  background: var(--sage-light);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
}

.data-table tr:last-child td { border-bottom: none; }

/* ----- FOOTER & LEGAL LINKS ----- */
footer {
  text-align: center;
  padding: 2rem;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 3rem;
}

footer a { color: var(--sage); }

.legal-links {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 2px dashed var(--sage-light);
}

.legal-links a {
  color: var(--sage);
  margin: 0 0.75rem;
  font-weight: 600;
}

/* ----- BACK LINK ----- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sage);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: var(--sage-light);
  border-radius: 20px;
  transition: var(--transition);
}

.back-link:hover {
  background: var(--sage);
  color: var(--white);
  text-decoration: none;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 768px) {
  body { padding: 1rem; }
  
  .container {
    padding: 1.5rem 1rem;
    border-radius: var(--border-radius-sm);
  }
  
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  
  .hero { padding: 2rem 1rem; }
  .hero h1 { font-size: 1.5rem; }
  .tagline { font-size: 1rem; }
  
  .price-tag { font-size: 1.4rem; padding: 0.875rem 1.75rem; }
  
  .btn { width: 100%; margin: 0.5rem 0; }
  
  .examples-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  
  .offer { padding: 2rem 1.5rem; }
  .offer-grid { grid-template-columns: 1fr; }
  
  .process-steps { flex-direction: column; }
  
  .data-table { font-size: 0.85rem; }
  .data-table th, .data-table td { padding: 0.5rem; }
}

/* ----- PRINT ----- */
@media print {
  body {
    background: white;
    padding: 0;
  }
  
  .container {
    box-shadow: none;
    border: 1px solid #ddd;
    max-width: 100%;
  }
  
  .back-link,
  .sparkle,
  .btn,
  .cta { display: none; }
  
  a { color: #000; text-decoration: underline; }
}

/* ----- REDUCED MOTION ----- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}