:root {
  --green-light: #F1F8F4;
  --green-dark: #4C7C59;
  --text-dark: #1C1C1C;
  --text-light: #555;
  --accent: #005A4E;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--green-light);
  color: var(--text-dark);
}

header {
  display: flex;
  position: sticky;
  top: 0;
  z-index: 1000;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
}

nav a:hover {
  color: var(--accent);
}

.language-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 1.5rem;
}

.lang-btn {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  color: #1C1C1C;
}

.lang-btn img {
  width: 20px;
  height: auto;
  border-radius: 2px;
}

.lang-menu {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 5px;
  z-index: 100;
  min-width: 140px;
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  text-decoration: none;
  color: #1C1C1C;
  font-weight: 500;
}

.lang-menu a:hover {
  background-color: #f0f0f0;
}

.language-dropdown:hover .lang-menu {
  display: block;
}

/* Farbige Links */
a {
  color: #005a4e; /* Dunkelgrün passend zum Gesamtstil */
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
  color: #003d34; /* etwas dunkler beim Hover */
}

/* Hero */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--green-dark);
  color: white;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text p a {
  color: #b3f3de;
  text-decoration: underline;
}

/* About Us */
.aboutus {
  padding: 3rem 2rem;
  text-align: center;
  background: white;
}

.aboutus h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  padding: 3rem 2rem;
  background: #fff;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.map-box {
  height: 400px;
}

iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.info-box {
  background: #f8f8f8;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.info-box h3 {
  margin-top: 0;
  color: var(--accent);
}

.info-box ul {
  list-style: none;
  padding: 0;
}

.info-box li {
  margin-bottom: 0.5rem;
}

.opening-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 0.5rem;
  column-gap: 1rem;
  margin-top: 0.5rem;
}

/* Footer */
.footer {
  background: var(--green-light);
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.footer a {
  color: var(--text-dark);
  text-decoration: none;
}

.footer a:hover {
    text-decoration: none;
    color: #005a4e;
}

.lang-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.lang-footer img {
  width: 16px;
  height: auto;
  border-radius: 2px;
  vertical-align: middle;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 1rem;
  }

  nav a {
    display: inline-block;
    margin: 0.5rem 0.5rem 0 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  header {
    padding: 1rem 1.5rem;
  }
}