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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  color: #1D3E37;
  background: #C9D2BF;
  min-height: 100vh;
}

/* Header */
header {
  background: #1D3E37;
  color: white;
  padding: 60px 20px;
  text-align: center;
  box-shadow: 0 4px 0 rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

header::before {
  display: none;
}

header::after {
  display: none;
}

header h1 {
  font-size: 2.8em;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

header .accent {
  color: #F2A93A;
  display: inline;
  margin-left: 0;
  font-weight: 900;
}

header p {
  font-size: 1.1em;
  opacity: 0.95;
  font-weight: 300;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}

/* Main Content */
main {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px;
  background: white;
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: none;
  position: relative;
  z-index: 10;
}

p {
  margin-bottom: 24px;
  font-size: 1.05em;
  color: #1D3E37;
}

/* Button */
.button {
  display: inline-block;
  padding: 16px 40px;
  background: #F2A93A;
  color: white;
  text-decoration: none;
  border-radius: 0;
  font-weight: 700;
  font-size: 1.05em;
  transition: background 0.2s ease;
  box-shadow: 0 4px 0 rgba(0,0,0,0.15);
  border: none;
  letter-spacing: 0.5px;
}

.button:hover {
  background: #D98625;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0,0,0,0.15);
}

.button:active {
  transform: translateY(0);
}

/* Secondary Link */
a:not(.button) {
  color: #1D3E37;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  font-weight: 500;
}

a:not(.button):hover {
  border-bottom-color: #F2A93A;
  color: #1D3E37;
}

/* Divider */
hr {
  margin: 40px 0;
  border: none;
  height: 4px;
  background: #F2A93A;
}

/* Footer Links */
.footer-links {
  text-align: center;
  font-size: 0.95em;
  color: #1D3E37;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid #1D3E37;
}

.footer-links a {
  margin: 0 12px;
}

.footer-links a:first-child {
  margin-left: 0;
}

.footer-links a:last-child {
  margin-right: 0;
}

/* Button Container */
.button-container {
  text-align: center;
  margin: 32px 0;
}

/* Mundorgel Section */
.mundorgel-section {
  background: #F9F9F9;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  margin-bottom: 48px;
}

.mundorgel-section p {
  margin-bottom: 16px;
}

.mundorgel-section p:last-child {
  margin-bottom: 0;
}

/* Image Section */
.image-section {
  margin-top: 40px;
  text-align: center;
}

.image-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: inline-block;
}

/* Footer */
footer {
  background: #1D3E37;
  color: white;
  padding: 40px 20px;
  text-align: center;
  margin-top: 48px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #F2A93A;
  color: white;
  text-decoration: none;
  border-radius: 50%;
  font-size: 1.4em;
  transition: all 0.3s ease;
  border: none;
}

.social-links a .material-icons {
  font-size: 28px;
}

.social-links a:hover {
  background: #D98625;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

footer p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.95em;
}

/* Impressum & Info Sections */
h2 {
  color: #1D3E37;
  font-size: 2em;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 4px solid #F2A93A;
}

h3 {
  color: #1D3E37;
  font-size: 1.3em;
  margin-bottom: 12px;
  margin-top: 24px;
}

.info-section {
  margin-bottom: 32px;
}

.info-section p {
  margin-bottom: 12px;
}

footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: white;
  border-bottom-color: transparent;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  header {
    padding: 40px 20px;
  }

  header h1 {
    font-size: 2em;
    letter-spacing: 1px;
  }

  p {
    font-size: 1em;
  }

  main {
    padding: 30px 16px;
  }

  .button {
    display: block;
    width: 100%;
    padding: 14px 20px;
    font-size: 1em;
  }

  .button:hover {
    transform: translateY(-1px);
  }

  .button-container {
    margin: 24px 0;
  }

  .image-section {
    margin-top: 32px;
  }

  .mundorgel-section {
    padding: 24px;
    margin-bottom: 32px;
  }

  .social-links {
    gap: 16px;
  }

  .social-links a {
    width: 44px;
    height: 44px;
    font-size: 1.2em;
  }
}
