/* ---------- Local Fonts (DSGVO-konform) ---------- */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url('fonts/Nunito/static/Nunito-ExtraLight.ttf') format('truetype');
}

@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Nunito/static/Nunito-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/Nunito/static/Nunito-SemiBold.ttf') format('truetype');
}

/* ---------- CSS Variables (Farben) ---------- */
:root {
  --sage-green: #9CAA9B;
  --sage-green-dark: #6B7A6A; /* Darker for better contrast */
  --sage-green-light: #B5C4B5;
  --accent-sage: rgba(156, 170, 155, 0.15);
  --text-dark: #333;
  --text-sage: #5A6B5A;
  /* Leuchtender Akzent - Warmes Salbei-Grün */
  --sage-bright: #6B9B7F;
  --sage-bright-light: rgba(107, 155, 127, 0.2);
  /* Leuchtendes Taubenblau für Akzente */
  --dove-blue: #7BA5CC;
  --dove-blue-light: rgba(123, 165, 204, 0.2);
}

/* ---------- Grundlayout ---------- */
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Nunito', 'Arial', sans-serif;
  font-weight: 200;
  line-height: 1.6;
  color: #333;
  background: 
    radial-gradient(circle at 20% 80%, rgba(139, 185, 174, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(188, 143, 113, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(119, 158, 203, 0.02) 0%, transparent 50%),
    #fafafa;
}

/* ---------- Accessibility Styles ---------- */
/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for better accessibility */
a:focus,
button:focus,
[tabindex]:focus {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
  border-radius: 3px;
}

/* Navigation links - no blue outline on click */
.nav-links a:focus,
.nav-links a:active {
  outline: none !important;
}

.mobile-nav a:focus,
.mobile-nav a:active {
  outline: none !important;
}

/* Brand link - no outline */
.brand:focus,
.brand:active {
  outline: none !important;
}

/* Burger menu focus - completely stable */
.burger:focus,
.burger:hover,
.burger:active {
  outline: none !important;
  background: none !important;
  transform: none !important;
  position: static !important;
  transition: none !important;
}

/* Skip link for keyboard navigation - completely hidden until focus */
.skip-link {
  position: absolute;
  top: -100px;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  text-decoration: none;
  z-index: 1000;
  border-radius: 3px;
  font-weight: bold;
}

.skip-link:focus {
  position: absolute;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  overflow: visible;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    transition: none;
    opacity: 1 !important;
    transform: none !important;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

/* Überschriften-Stile */
h1 { 
  margin: 0.5em 0;
  font-weight: 100;
  font-size: 1.8rem;
}

h2 {
  margin: 0.5em 0;
  font-weight: 400;
  font-size: 1.5rem;
}

h2.welcome-heading { color: #6B9B7F !important; margin: 0.5em 0;
  font-weight: 400;
  font-size: 1.5rem;} /* Salbei-Grün oder taubenblau 7B9FAD*/

 /* Salbei-Grün oder taubenblau 7B9FAD*/

h3 { 
  font-weight: 300;
  font-size: 1.3rem;
  margin-top: 2em;
}

h3:first-of-type { margin-top: 0.5em; }

/* Erstes Element in Section hat konsistenten Abstand */
section > *:first-child {
  margin-top: 0 !important;
}
p { margin: 0.5em 0; font-weight: 200; text-align: justify; hyphens: auto; }

/* Remove bottom margin from last paragraph in sections */
section p:last-child {
  margin-bottom: 0;
}

/* Main content - no bottom margin/padding */
main {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Section - really no bottom spacing */
section {
  margin-bottom: 0 !important;
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.delay-1 { transition-delay: 0.2s; }
.fade-in.delay-2 { transition-delay: 0.4s; }
.fade-in.delay-3 { transition-delay: 0.6s; }
.fade-in.delay-4 { transition-delay: 0.8s; }

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Navigation ---------- */
nav {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 4%;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 103;
  width: 100%;
  box-sizing: border-box;
}

/* Nav Links Container - direkt neben Brand */
.nav-left {
  display: flex;
  align-items: center;
  gap: 2em;
}

.nav-left .brand {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: 1.7rem;
  color: #7B9FAD;
  letter-spacing: 0.6px;
}

.nav-links {
  display: flex;
  gap: 2em;
  flex-wrap: nowrap;
}

.nav-links a {
  padding: 0.5em 1em;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  color: #7B9FAD;
}

.nav-links a:hover {
  background-color: var(--sage-bright-light);
  color: var(--sage-bright);
}

.nav-links a.active {
  /* Leuchtender Salbei-Akzent */
  background-color: var(--sage-bright-light) !important;
  color: var(--sage-bright) !important;
  border-bottom: 2px solid var(--sage-bright) !important;
  box-sizing: border-box;
  
  /* Alternative Farboptionen: */
  /* Warmes Beige/Terrakotta:
  background-color: rgba(188, 143, 113, 0.15);
  color: #8b5a3c; */
  
  /* Sanftes Blau:
  background-color: rgba(119, 158, 203, 0.15);
  color: #2c4b6b; */
  
  /* Warmes Rosa/Mauve:
  background-color: rgba(186, 148, 159, 0.15);
  color: #6b4c56; */
  
  /* Honig/Gold:
  background-color: rgba(218, 165, 98, 0.15);
  color: #8b5e2b; */
  
  font-weight: 400;
}

/* Burger-Icon standardmäßig verstecken */
.burger {
  display: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: #7B9FAD;
  opacity: 0.8;
  outline: none;
  border: none;
  background: none;
  position: relative;
  transition: none;
}

/* Body Overlay für Burger Menu */
body.menu-open::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 99;
  opacity: 0;
  animation: fadeInOverlay 0.3s ease forwards;
}

@keyframes fadeInOverlay {
  to {
    opacity: 1;
  }
}



/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  flex-direction: column;
  width: 200px;
  padding: 1em;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border-radius: 0 0 0 8px;
  z-index: 101;
}

.mobile-nav a {
  padding: 0.8em 1em;
  border-radius: 4px;
  margin-bottom: 0.2em;
  transition: background-color 0.2s ease;
}

.mobile-nav a:hover {
  background-color: rgba(0,0,0,0.05);
}

.mobile-nav a.active {
  /* Salbei-Grün auch für Mobile Menu */
  background-color: rgba(139, 185, 174, 0.15);
  color: #2d5747;
  font-weight: 400;
}

/* Mobile Screens and Tablets - Extended breakpoint to prevent two-line navbar */
@media (max-width: 1050px) {
  .nav-left .nav-links {
    display: none; /* Links verschwinden, Burger übernimmt */
  }

  .mobile-nav.show {
    display: flex; 
    flex-direction: column; /* sichtbar beim Klick auf Burger */
  }

  .burger {
    display: block;
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 102;
  }
  
  /* Brand etwas kleiner auf mobilen Geräten */
  .nav-left .brand {
    font-size: 1.5rem;
    color: #7B9FAD;
  }
}


/* ---------- Hero-Bereich ---------- */
.hero {
  position: relative;
  min-height: clamp(70vh, 85vh, 95vh);
  max-height: 95vh;
  background: 
    linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0)),
    url('img/hero5.JPG');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #D5E5D4;
  padding: 0 1em;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible; /* Damit die Welle nach unten ragen kann */
}

.hero-text {
  text-align: right;
  margin-bottom: 4%;
  margin-right: 5%;   
  margin-left: 5%;
}



.hero-text h1 {
  font-size: clamp(1.6rem, 5vw, 1.8rem);
  line-height: 1.2;
}

.hero-text .author {
  display: block;
  font-size: clamp(1rem, 1.5vw, 1rem);
  opacity: 0.8;
}

.hero-text .subtitle {
  font-style: normal;
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  color: #D5E5D4;
  margin-top: 0.1em;
  text-align: right;
}

/* ---------- Mobile Page Indicator ---------- */
.page-indicator {
  display: none;
  padding: 1em 4% 0.5em;
  margin: 0 auto;
  max-width: 1000px;
}

.page-indicator h2 {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--sage-green);
  margin: 0;
  opacity: 0.9;
  text-align: left;
}

@media (max-width: 768px) {
  .page-indicator {
    display: block;
  }
}

/* ---------- Content Sections ---------- */
section {
  opacity: 1;
  transform: translateY(0);
  max-width: 1000px;
  margin: 0 auto;
  padding: 1em 4% 2em 4%;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

section:nth-child(even) {
  background-color: #fbfcfd;
  color: #555;
}

/* ---------- Dekorative Wellenlinien als Trenner ---------- */
.wave-divider {
  width: 100%;
  height: 80px;
  margin: 3em 0 2em 0;
  position: relative;
  overflow: hidden;
}

.wave-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Optional: für abwechselnde Farben */
.wave-divider.blue svg path {
  fill: #7BA5CC;
}

.wave-divider.sage svg path {
  fill: #6B9B7F;
}

/* ---------- Page Header (für Seiten ohne Hero) ---------- */
.page-header {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2em 4% 0.5em;
  text-align: center;
}

.page-header h1 {
  font-size: 1.8rem;
  margin-bottom: 0.3em;
  font-weight: 400;
  color: #555;
}

/* ---------- Responsives Design ---------- */
@media(min-width:768px){
  .hero {
    min-height:vh;
    max-height: 88vh;
    background-position: center 35%;
  }
  .hero-text h1 { font-size: 1.8rem; }
  .hero-text .author { font-size: 1.1rem; }
  .hero-text .subtitle { font-size: 1rem; }
}

@media(min-width:1200px){
  .hero {
    min-height: 85vh;
    max-height: 92vh;
    background-position: center 38%;
  }
  .hero-text h1 { font-size: 1.8rem; }
  .hero-text .author { font-size: 1rem; }
  .hero-text .subtitle { font-size: 0.9rem; }
}

@media(min-width:1600px){
  .hero {
    min-height: 88vh;
    max-height: 95vh;
    background-position: center 15%;
  }
}

/* ---------- Removed Animations for better UX ---------- */

/* ---------- Methoden mit Bildern ---------- */
.method-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3em;
  align-items: start;
  margin: 3em 0;
  padding: 2em 0;
  max-width: 100%;
}

.method-content,
.method-image {
  min-width: 0;
  width: 100%;
  margin-top: 0;
}

.method-item:first-child {
  margin-top: 0;
  padding: 0;
}

.method-item:nth-child(even) .method-content {
  order: 2;
}

.method-item:nth-child(even) .method-image {
  order: 1;
}

.method-content h3 {
  margin-top: 0;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--sage-green);
}

.method-image {
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 500px;
  margin: 12px auto 0 auto;
  align-self: flex-start;
  padding: 0;
}

.method-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.2s ease;
  display: block;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.method-image img:hover {
  transform: scale(1.01);
}

/* Mobile: Bilder immer oben */
@media (max-width: 768px) {
  .method-item {
    grid-template-columns: 1fr;
    gap: 1.5em;
    margin: 2em 0;
  }
  
  .method-image {
    order: -1;
  }
  
  .method-content {
    order: 1;
  }
  
  .method-content h3 {
    text-align: center;
  }
  
  .method-image img {
    height: 250px;
  }
}

/* ---------- Photo and Qualifications Layout ---------- */
.photo-qualifications-container {
  display: flex;
  gap: 3em;
  margin: 3em 0 2em 0;
  align-items: start;
}

.photo-column {
  flex-shrink: 0;
  width: 220px;
}

.photo-column img {
  width: 220px !important;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.qualifications-column {
  flex: 1;
}

.qualifications-column h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.qualifications-column ul {
  font-size: 0.9rem;
  line-height: 1.6;
}

.qualifications-column li {
  margin-bottom: 0.6em;
}

/* About page qualifications with portrait on the side (large screens only) */
.about-qualifications-container {
  display: flex;
  gap: 3em;
  margin-bottom: 3em;
  align-items: center;
}

.about-qualifications-content h2 {
  margin-top: 0;
}

.about-qualifications-content {
  flex: 1;
}

/* Default: Hide portrait column */
.about-portrait-column {
  flex-shrink: 0;
  display: none;
}

.about-portrait-column img {
  width: 220px;
  max-width: 220px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Show portrait next to qualifications on tablet and larger screens */
@media (min-width: 769px) {
  .about-portrait-column {
    display: block !important;
  }
}

/* Qualifications list styling (like service-list) */
.qualifications-list {
  padding-left: 0;
  list-style: none;
  margin: 15px 0;
  color: #666; /* Gräulicher Text wie bei service-list */
}

.qualifications-list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  line-height: 1.8;
}

.qualifications-list li:before {
  content: "•";
  color: var(--sage-green);
  font-weight: bold;
  position: absolute;
  left: 3px;
  top: 6px;
}

/* Tablet: Stack vertically */
@media (max-width: 1024px) {
  .photo-qualifications-container {
    flex-direction: column;
    gap: 2em;
  }
  
  .photo-column {
    width: 280px;
  }
  
  .photo-column img {
    width: 280px !important;
    margin: 0 auto;
    display: block;
  }
  
  .about-qualifications-container {
    flex-direction: column;
  }
}

/* Mobile: Smaller photo */
@media (max-width: 480px) {
  .photo-column {
    width: 240px;
  }
  
  .photo-column img {
    width: 240px !important;
  }
  
  .qualifications-column ul {
    font-size: 0.85rem;
  }
}

/* ---------- Image Gallery ---------- */
.image-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  margin: 3em 0 2em 0;
  align-items: start;
}

.image-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.image-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

/* Hochformat für Portrait-Bilder (Verhältnis 3840:4986 ≈ 3:4) */
.image-item.portrait img {
  height: 360px;
  width: 85%;
  margin: 0 auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center center;
}

.image-item img:hover {
  transform: scale(1.02);
}

.image-item h4 {
  margin: 1em 0 0.5em;
  font-weight: 400;
  color: #333;
}

.image-item p {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

/* Tablet: Bilder kleiner */
@media (max-width: 1024px) and (min-width: 481px) {
  .image-item img {
    height: 220px;
  }
  
  .image-item.portrait img {
    height: 280px;
    width: 80%;
    object-fit: cover;
  }
}

/* Mobile: Bilder untereinander */
@media (max-width: 480px) {
  .image-gallery {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
  
  .image-item img {
    height: 250px;
  }
  
  .image-item.portrait img {
    height: 320px;
    width: 75%;
    aspect-ratio: 3/4;
    object-fit: cover;
  }
}

/* ---------- Service Items (Angebote) ---------- */
.service-item {
    background: 
      radial-gradient(circle at 10% 20%, rgba(139, 185, 174, 0.02) 0%, transparent 40%),
      white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
}

.service-item h3 {
    color: var(--sage-green);
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-list {
    padding-left: 0;
    list-style: none;
    margin: 15px 0;
}

.service-list li {
    padding: 6px 0;
    padding-left: 25px;
    position: relative;
}

.service-list li:before {
    content: "•";
    color: var(--sage-green);
    font-weight: bold;
    position: absolute;
    left: 3px;
    top: 4px;
}

.session-info {
    background: var(--accent-sage);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    margin-bottom: 60px;
    border-left: 4px solid var(--sage-green);
}

.workshop-themes {
    margin: 20px 0;
}

.workshop-themes h4 {
    color: var(--sage-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.praxis-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5em;
  flex-wrap: wrap;
}
.praxis-bild {
  width: 150px;
  height: 150px;
  object-fit: cover;
  max-width: 40vw;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.praxis-adresse {
  font-size: 1em;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .praxis-card-inner {
    flex-direction: column;
    gap: 1em;
    align-items: flex-start;
  }
  .praxis-bild {
    width: 100%;
    max-width: 100%;
  }
}

.payment-info {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    font-size: 0.9em;
}

.payment-info h4 {
    color: #2d5747;
    margin-bottom: 10px;
}

/* ---------- Legal Info ---------- */
.legal-info {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    font-size: 0.9em;
    line-height: 1.6;
}

.legal-info h4 {
    color: var(--sage-green);
    margin-bottom: 15px;
    font-size: 1em;
    font-weight: 600;
}

.legal-info p {
    color: #555;
    margin: 0;
}

.contact-info-inner {
  display: flex;
  align-items: flex-start; /* Bild oben am Text ausrichten */
  gap: 1.5em; /* Abstand zwischen Bild und Text */
  flex-wrap: wrap; /* Damit es auf kleinen Bildschirmen untereinander geht */
}

/* Überschriften in Kontakt-Boxen hervorheben */
.contact-info h3 {
  color: var(--sage-green);
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 1em;
}

.kontakt-profilfoto {
  width: 150px; /* Breite des Bildes */
  height: 150px;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex-shrink: 0; /* Bild wird nicht kleiner */
}

.contact-text {
  flex: 1; /* Text nimmt verbleibenden Platz ein */
}




/* ---------- Footer ---------- */
footer {
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
  margin-top: 3em;
  padding: 2em 4%;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 2em !important;
  flex-wrap: nowrap !important;
  flex-direction: row !important;
  margin-bottom: 0.8em;
}

.footer-links a {
  color: var(--sage-green);
  text-decoration: none;
  padding: 0.3em 0.6em;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  background-color: var(--accent-sage);
}

.footer-credits {
  font-size: 0.8rem;
  opacity: 0.7;
  margin: 0;
}

/* Mobile Footer */
@media (max-width: 480px) {
  .footer-links {
    flex-direction: column;
    gap: 0.8em;
    align-items: center;
  }
  
  footer {
    padding: 1.5em 4%;
    font-size: 0.85rem;
  }
  
  /* Überschriften noch dezenter auf sehr kleinen Screens */
  h1, h2 { 
    font-weight: 100; 
    font-size: 0.95em; 
  }
  
  h3 { 
    font-weight: 200; 
    font-size: 0.9em;
  }
}

/* ---------- Page Navigation ---------- */
.page-navigation {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1em 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
  z-index: 1;
  position: relative;
}

.nav-button {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 1em 1.5em;
  background: var(--sage-bright-light);
  color: var(--sage-bright);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 400;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.nav-button:hover {
  background: var(--sage-bright);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 155, 127, 0.3);
}

.nav-button.disabled {
  background: #f8f9fa;
  color: #aaa;
  cursor: not-allowed;
  opacity: 0.5;
}

.nav-button.disabled:hover {
  transform: none;
  box-shadow: none;
}

.nav-arrow {
  font-size: 1.2em;
}

/* Mobile Page Navigation */
@media (max-width: 768px) {
  .page-navigation {
    padding: 1.5em 4%;
  }
  
  .nav-button {
    padding: 0.8em 1.2em;
    font-size: 0.9rem;
  }
  
  .nav-button span:not(.nav-arrow) {
    display: none;
  }
  
  /* Responsive Überschriften auf mobilen Geräten */
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
}
