/* 001 Grundlegende Body-Styles */
body {
  font-family: Arial, sans-serif;
  color: #9f8130;         /* Hauptschriftfarbe */
  background-color: #2c3f37;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* 010 Container für Header, Section, Footer */
header, section, footer {
  padding: 2rem;
  max-width: 960px;
  margin: auto;
}

/* 020 Header Styles */
header {
  background: #f4f4f4;
  text-align: center;
}

/* 030 Navigation */
nav {
  display: flex;
  justify-content: center;  /* OZ 030.1: Menü mittig */
  gap: 2rem;                /* OZ 030.2: Abstand zwischen Links */
  align-items: center;      /* OZ 030.3: Vertikal zentriert */
  padding: 0.5rem 0;
}

nav a {
  font-weight: bold;        /* OZ 030.4: Schriftgewicht */
  color: black;             /* OZ 030.5: Linkfarbe */
  text-decoration: underline;
  padding: 0.2rem 0.5rem;
}

nav a:hover {
  color: #9f8130;
  text-decoration: underline;
}

/* 040 Steps Container */
.steps {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* 050 Einzelner Step */
.step {
  flex: 1;
  background: #eee;
  padding: 1rem;
  border-radius: 8px;
  min-width: 250px;
}

/* 060 Galerie Container */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* 070 Galerie Item */
.gallery .item {
  width: 220px;
  text-align: center;
}

/* 080 Galerie Bild */
.gallery .item img {
  width: 100%;
  height: 160px;
  object-fit: cover; /* OZ 080.1: Zuschneiden bei Erhalt der Proportion */
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* 090 Galerie Bildunterschrift */
.gallery .item p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #9f8130;
  font-style: italic;
}

/* 100 Kontaktformular (sofern vorhanden) */
.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* 110 Footer */
footer {
  font-size: 0.8rem;
  color: #777;
  text-align: center;
  background: #f9f9f9;
}

footer a {
  color: black;
  font-weight: bold;
  text-decoration: underline;
}

footer a:hover {
  color: #9f8130;
  text-decoration: underline;
}

/* 120 Allgemeine Links */
a {
  color: black;
  font-weight: bold;
  text-decoration: underline;
}

a:visited {
  color: #9f8130;
  text-decoration: none;
}

a:hover,
a:active {
  color: #7c6425;
  text-decoration: underline;
}

/* 130 Logo Styling */
.logo {
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-style: italic;
  font-size: 2.5rem;
  margin: 0;
}

.logo .k { color: black; }
.logo .u { color: red; }
.logo .n { color: blue; }
.logo .s { color: hotpink; }
.logo .t { color: red; }

.logo .sprechstunde {
  color: black;
}

/* 140 Button Styles */
.button-link {
  display: inline-block;
  background-color: black;
  color: white;
  padding: 0.5rem 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.button-link:hover {
  background-color: #9f8130; /* Ocker beim Hover */
  color: white;
}

/* 150 Gold-Button */
.gold-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  background: linear-gradient(145deg, #f1c65c, #d6a842); /* hellerer Goldton */
  color: #1e1508; /* dunkles Braun für gute Lesbarkeit */
  font-weight: bold;
  text-decoration: none;
  font-family: 'Arial Black', sans-serif;
  letter-spacing: 0.5px;
  text-align: center;
  border: 2px solid #7c6425;

  /* Plastischer Text (Relief-Effekt) */
  text-shadow:
    2px 2px 2px rgba(0, 0, 0, 0.6),     /* Schatten unten rechts */
   -2px -2px 2px rgba(255, 255, 255, 0.5); /* Lichtkante oben links */

  /* Button-Tiefe */
  box-shadow:
    inset 0 1px 3px rgba(255, 255, 255, 0.4),
    0 4px 6px rgba(0, 0, 0, 0.3);

  transition: all 0.3s ease;
}

.gold-button:hover {
  background: linear-gradient(145deg, #f8d978, #e1b94f); /* noch etwas heller beim Hover */
  box-shadow:
    0 0 12px rgba(255, 215, 0, 0.7),
    inset 0 1px 3px rgba(255, 255, 255, 0.5);
  cursor: pointer;

  /* Verstärkte Prägung beim Hover */
  text-shadow:
    2px 2px 3px rgba(0, 0, 0, 0.7),
   -2px -2px 2px rgba(255, 255, 255, 0.6);
}

/* 160 Responsive Design für kleine Bildschirme */
@media (max-width: 600px) {
  .steps {
    flex-direction: column;
  }
  .gold-button {
    display: block;
    margin: 1rem auto;
    width: fit-content;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .gallery .item {
    width: 100%;
  }
  
  nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}
