@import url("https://use.typekit.net/vez1reh.css");

:root {
  --primary-color: #b7d55b;    /* Exact lime green from the website */
  --secondary-color: rgb(126,217,87);  /* Footer green */
  --tertiary-color: #D0EEBD;
  --dark-color: #4a8e3c;
  --text-color: #333333;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --header-height: 80px;
}

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

body {
  font-family: 'oscine', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--primary-color);
}

body.dark{
  background-color: var(--dark-color);
}

body.dark header{
  --text-color: var(--white);
  background-color: var(--dark-color);
}

body.dark header .dropdown a{
  color: #333333;
}

body.dark header .header-logo{
  filter: brightness(0) invert(1);
}

u{
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-medium {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-large {
  max-width: 95vw;
  margin: 0 auto;
  padding: 0 20px;
}


@media (max-width: 1200px) {
  .container-large {
    padding: 0;
  }

  .container-medium {
    padding: 0;
  }
    
}

/* Header Styles */
header {
  background: var(--primary-color);
  padding: 10px 0 10px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  height: auto;
  margin-bottom: 0px;
}

/* Navigation */
nav {
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

.header-logo {
  height: 120px;
  margin-bottom: 0 !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.nav-wrapper {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-top: 0;
  position: relative;
}

.nav-item {
  position: relative;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  display: block;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  padding: 15px 15px;
  transition: all 0.2s ease;
  border-bottom: 2px solid var(--text-color);
  border-top: 2px solid var(--text-color);
  display: block;
}

.nav-links a:hover,
.nav-links a.active {
  border-color: var(--white);
  background-color: var(--secondary-color);
  color: var(--white);
}

/* Dropdown Menu */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--tertiary-color);
  font-family: 'oscine', serif;
  min-width: 250px;
  padding: 0px 0;
  z-index: 1000;
  text-align: left;
  margin-top: 0;
}

.dropdown a {
  border: none;
  padding: 10px 15px;
  font-weight: normal;
  font-family: 'oscine', serif;
  font-size: 1em;
}

.dropdown a:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

/* Main Content */
main {
  margin-top: 200px;
  min-height: calc(80vh - 200px);
  position: relative;
  z-index: 2;
}

/* Main Content Layout */
.main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Logo Section */
.logo-section {
  flex: 1;
}

.main-logo {
  width: 600px;
  margin-bottom: 00px;
  margin-left: -100px;
}

.main-title {
  font-size: 1.3em;
  line-height: 1.4;
  color: var(--text-color);
  margin-top: -50px;
}

.main-title h1 {
  font-weight: normal;
}

/* Circle Images Section */
.circle-images {
  flex: 1;
  position: relative;
  height: 800px;
}

.circle-image {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  box-shadow: none;
  border: none;
}

.circle-image:nth-child(1) {
  top: 0;
  left: 0;
  z-index: 1;
  transform: translateX(-50%);
}

.circle-image:nth-child(2) {
  top: 50%;
  right: 0;
  transform: translate(15%, -70%);
  z-index: 2;
}

.circle-image:nth-child(3) {
  bottom: 0;
  left: 0;
  z-index: 3;
  transform: translate(-10%, 0%);
}

/* Triangle Decoration */
.triangle-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background-color: #4a8e3c;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  transform: translateY(-100%);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 4rem 0;
  margin-top: 100px;
  position: relative;
}

footer:before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 95vw;
  height: 1px;
  background-color: var(--white);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  align-items: center;
}

.footer-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-footer{
  width: 180px;
  filter: brightness(0) invert(1);
}

.footer-section i {
  background-color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-color);
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
}

.footer-section p {
  margin: 0;
  line-height: 1.4;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.footer-social a {
  background-color: rgba(255, 255, 255, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.footer-social a:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* Add responsive footer styles */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .footer-section:nth-child(4),
  .footer-section:nth-child(5) {
    grid-column: span 3;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-content: center;
  }
  
  .footer-section:nth-child(1),
  .footer-section:nth-child(4),
  .footer-section:nth-child(5),.footer-social {
    grid-column: span 2;
    justify-content: center;
    text-align: center;
    align-items: center;
  }
  
  .footer-section {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    gap: 2rem;
  }
  
  .footer-section {
    grid-column: span 1;
    height: 100%;
  }

  
  .footer-section i {
    margin-bottom: 10px;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .logo{
    z-index: 1002;
  }
  .hamburger {
    display: block;
    z-index: 1002;
    position: relative;
    cursor: pointer;
  }

  .nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--dark-color);
    transition: all 0.3s ease;
    padding-top: var(--header-height);
    overflow-y: auto;
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
  }

  .nav-wrapper.active {
    right: 0;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    margin-top: 0;
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 15px;
    border: none;
    color: var(--white) !important;
    position: relative;
  }

  /* Disable hover effects on mobile */
  .nav-links a:hover {
    background-color: transparent;
    color: var(--white) !important;
  }

  .nav-links a.active {
    background-color: var(--primary-color);
    color: var(--dark-color);
  }

  .dropdown {
    position: static;
    width: 100%;
    background-color: var(--dark-color);
    margin-top: 0;
    display: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .dropdown.active {
    display: block;
    max-height: 500px;
    transition: max-height 0.5s ease-in;
  }

  /* Disable hover-based dropdown on mobile */
  .nav-item:hover .dropdown
  .nav-item:focus-within .dropdown {
    display: none;
  }

  .dropdown a {
    padding: 12px 15px;
    color: var(--white);
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
  }

  /* Disable hover effects on dropdown items */
  .dropdown a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  /* Add arrow indicator only for items with dropdown */
  .nav-item:has(.dropdown) > a::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    margin-left: 10px;
    transition: transform 0.3s ease;
  }

  .nav-item:has(.dropdown) > a.active::after {
    transform: rotate(-135deg);
  }

  /* Remove the old arrow styles */
  .nav-item > a::after {
    display: none;
  }

  .nav-item > a.active::after {
    display: none;
  }

  /* Hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .header-logo {
    height: 80px;
  }

  .main-content {
    flex-direction: column;
    text-align: center;
  }

  .logo-section {
    max-width: 100%;
  }

  .main-logo {
    margin: 0 auto 30px;
  }

  .circle-images {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .circle-image {
    position: static;
    width: 300px;
    height: 300px;
    transform: none;
  }
}

@media (max-width: 600px) {
  .main-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .logo-section {
    max-width: 100%;
  }
  .main-logo {
    width: 80vw;
    margin: 0 auto 20px auto;
    margin-left: 0;
  }
  .circle-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    height: auto;
    position: relative;
    width: 100%;
  }
  .circle-image {
    position: static;
    width: 100%;;
    height: 80vw;
    max-width: 350px;
    max-height: 350px;
    margin: 0;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: none;
    border: none;
    transform: none !important;
  }
}

.philosophy-section {
  display: flex;
  margin-top: 50px;
  align-items: stretch;
}

.philosophy-image {
  flex: 1;
  max-width: 50%;
}

.philosophy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-content {
  flex: 1;
  position: relative;
  background-color: var(--primary-color);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.philosophy-circle {
  background-color: var(--dark-color);
  border-radius: 50%;
  padding: 40px;
  color: white;
  margin: 20px;
  height: 700px;
  width: 700px;

}

.philosophy-circle h2 {
  font-family: 'oscine', serif;
  font-size: 2em;
  margin-bottom:25px;
  text-align: center;
}

.philosophy-list {
  list-style: none;
  padding: 0;
}

.philosophy-list li {
  padding-left: 20px;
  max-width: 500px;
  text-align: left;
  margin: 0 auto;
  position: relative;
  line-height: 1.4;
}

.philosophy-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--tertiary-color);
}

.statuten-button {
  display: inline-block;
  background-color: var(--tertiary-color);
  color: var(--text-color);
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 30px;
  margin-top: 50px;
  transition: all 0.3s ease;
  font-family: 'oscine', serif;
  text-align: center;
}

.statuten-button:hover {
  background-color: var(--primary-color);
}

.button-container {
  text-align: center;
  margin-top: 0px;
  position: relative;
  z-index: 2;
}

.history-content {
  flex: 1;
  position: relative;
  background-color: var(--primary-color);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.history-content h2 {
  font-family: 'oscine', serif;
  font-size: 2em;
  margin-bottom: 10px;
  text-align: left;
}

.history-content p {
  font-size: 1.1em;
  line-height: 1.6;
  white-space: pre-line;
  text-align: left;

}
.history-content p span{
  white-space: normal;
}

.history-image {
  flex: 1;
  max-width: 50%;
}

.history-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Adjust existing philosophy section for history page */
.history-section {
  display: flex;
  margin-top: 50px;
  align-items: stretch;
  min-height: 80vh;
}

@media (max-width: 1024px) {
  .history-section {
    flex-direction: column;
  }

  .history-image {
    max-width: 100%;
    height: 400px;
  }

  .history-content {
    padding: 20px;
  }

  .history-content h2 {
    font-size: 2em;
    text-align: center;
  }
}

.vfd-section {
  display: flex;
  min-height: 80vh;
  margin-top: 0;
}

.vfd-left {
  flex: 1;
  background: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vfd-logo-text {
  color: #184d25;
  text-align: left;
  max-width: 600px;
  width: 90%;
  margin-left: 5vw;
  font-size: 2em;
  font-family: 'oscine', 'Arial', sans-serif;
  font-weight: 400;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.vfd-logo-text.cover-image{
  margin-left: 0;
  height: 100%;
  width: 100%;
  max-width: none;
  opacity: 1;
}
.vfd-logo-text.cover-image img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.vfd-right {
  flex: 1;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vfd-circle {
  background: var(--dark-color);
  border-radius: 50%;
  width: 700px;
  height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 60px 60px 40px 60px;
  box-sizing: border-box;
}

.vfd-circle h2 {
  color: var(--white);
  font-family: 'oscine', serif;
  font-size: 2.8em;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 400;
}

.vfd-circle p {
  font-size: 1.25em;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.vfd-circle p a{
  color: inherit;
}

.vfd-circle .statuten-button {
  background: var(--primary-color);
  color: var(--dark-color);
  font-size: 1.1em;
  font-family: 'oscine', serif;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 0;
  border: none;
  box-shadow: none;
}

.vfd-circle .statuten-button:hover {
  background: var(--tertiary-color);
  color: var(--dark-color);
}

@media (max-width: 1200px) {
  .vfd-circle {
    width: 90vw;
    height: 90vw;
    max-width: 600px;
    max-height: 600px;
    padding: 30px;
  }
  .vfd-logo-text {
    font-size: 1.2em;
  }
}

@media (max-width: 900px) {
  .vfd-section {
    flex-direction: column;
  }
  .vfd-left, .vfd-right {
    min-height: 300px;
    max-width: 100vw;
  }
  .vfd-circle {
    width: 95vw;
    height: auto;
    border-radius: 40px;
    max-width: 95vw;
    max-height: none;
  }
}

.vorstand-title {
  text-align: center;
  font-family: 'oscine', serif;
  font-size: 2.8em;
  color: var(--primary-color);
  margin: 40px 0 30px 0;
  letter-spacing: 1px;
}

.vorstand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.vorstand-card {
  background: var(--dark-color);
  color: #fff;
  border-radius: 20px;
  padding: 20px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  min-height: 100%;
}

.dein-weg-image{
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.vorstand-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--primary-color);
  margin-bottom: 18px;
  background: #fff;
}

.vorstand-name {
  font-family: 'oscine', serif;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 2px;
  text-align: center;
}

.vorstand-role {
  font-size: 1em;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 12px;
  text-align: center;
}

.vorstand-card p {
  font-size: 0.98em;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  margin: 0;
}

.vorstand-card .mehr-link {
  color: var(--white);
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
  font-size: 1em;
  text-decoration: underline;
  background-color: transparent;
  border: none;
  transition: color 0.2s;
}

.vorstand-card .email-row {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--white);
  padding: 5px 0;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.vorstand-card .email-row:hover {
  background: var(--primary-color);
}
.vorstand-card .email-icon {
  color: var(--white);
  font-size: 1.2em;
  cursor: pointer;
  transition: color 0.2s;
}
.vorstand-card .email-icon:hover {
  color: #fff;
}
.vorstand-card .email-link {
  color: var(--white);
  font-size: 1em;
  text-decoration: underline;
  margin-left: 4px;
  display: none;
  word-break: break-all;
}
.vorstand-card .email-link.visible {
  display: inline;
}

@media (max-width: 1400px) {
  .vorstand-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .vorstand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vorstand-title {
    font-size: 2em;
  }
}
@media (max-width: 600px) {
  .vorstand-grid {
    grid-template-columns: 1fr;
  }
  .vorstand-title {
    font-size: 1.3em;
  }
  .vorstand-img {
    width: 100px;
    height: 100px;
  }
  .vorstand-card {
    padding: 12px 8px 8px 8px;
  }
}

.mitgliedsantrag-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
.mitgliedsantrag-title {
  font-family: 'oscine', serif;
  font-size: 2.8em;
  color: var(--dark-color);
  margin-bottom: 30px;
  margin-top: 30px;
}
.mitgliedsantrag-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}
.mitgliedsantrag-logo {
  width: 340px;
  height: 340px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  object-fit: contain;
}
.mitgliedsantrag-arrows {
  width: 400px;
  height: 400px;
  z-index: 1;
}
.mitgliedsantrag-link {
  display: block;
  margin-top: 30px;
  font-size: 1.5em;
  color: var(--dark-color);
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  transition: color 0.2s;
}
.mitgliedsantrag-link:hover {
  color: var(--dark-color);
  text-decoration: underline;
}
@media (max-width: 600px) {
  .mitgliedsantrag-logo-wrap {
    width: 90vw;
    height: 90vw;
  }
  .mitgliedsantrag-arrows {
    width: 90vw;
    height: 90vw;
  }
  .mitgliedsantrag-logo {
    width: 70vw;
    height: 70vw;
  }
  .mitgliedsantrag-title {
    font-size: 1.5em;
  }
  .mitgliedsantrag-link {
    font-size: 1em;
  }
} 



.impressum-wrapper {
  max-width: 900px;
  margin: 60px auto 60px auto;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 40px 30px 30px 30px;
}

.impressum-title {
  text-align: center;
  font-family: 'oscine', serif;
  font-size: 2.5em;
  color: var(--dark-color);
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.impressum-wrapper p,
.impressum-wrapper ul {
  text-align: center;
  font-size: 1.1em;
  color: #333;
  margin-bottom: 18px;
}

.impressum-wrapper ul {
  list-style: none;
  padding: 0;
}

.impressum-wrapper li {
  margin-bottom: 8px;
}

.impressum-highlight {
  font-weight: bold;
  color: var(--dark-color);
}

@media (max-width: 600px) {
  .impressum-wrapper {
      padding: 18px 5vw;
  }

  .impressum-title {
      font-size: 1.3em;
  }
}

/* Responsive: Philosophy Section */
@media (max-width: 1200px) {
  .philosophy-circle {
    width: 90vw;
    height: 90vw;
    max-width: 600px;
    max-height: 600px;
    padding: 30px;
  }
}
@media (max-width: 900px) {
  main{
    margin-top: 100px;
  }
  .philosophy-section {
    flex-direction: column;
    align-items: center;
  }
  .philosophy-image,
  .philosophy-content {
    max-width: 100%;
    width: 100%;
  }
  .philosophy-circle {
    width: 95vw;
    height: auto;
    border-radius: 40px;
    max-width: 95vw;
    max-height: none;
    padding: 20px;
    margin: 20px 0;
  }
}
@media (max-width: 600px) {
  .philosophy-section {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .philosophy-image {
    max-width: 100%;
    width: 100%;
    height: 400px;
  }
  .philosophy-image img {
    height: 400px;
  }
  .philosophy-content {
    padding: 10px;
  }
  .philosophy-circle {
    width: 98vw;
    min-width: 0;
    height: auto;
    border-radius: 20px;
    padding: 10vw 4vw;
    margin: 10px 0;
  }
  .philosophy-circle h2 {
    font-size: 1.2em;
  }
  .philosophy-list li {
    font-size: 0.98em;
    max-width: 95vw;
    padding-left: 16px;
  }
  .statuten-button {
    padding: 10px 10vw;
    font-size: 1em;
    margin-top: 20px;
  }
}

/* Responsive: History Section */
@media (max-width: 1024px) {
  .history-section {
    flex-direction: column;
    align-items: center;
  }
  .history-image {
    max-width: 100%;
    width: 100%;
    height: 400px;
  }
  .history-image img {
    height: 400px;
  }
  .history-content {
    padding: 20px 10px;
    width: 100%;
  }
  .history-content h2 {
    font-size: 1.3em;
    text-align: center;
  }
}

/* Responsive: VFD Section */
@media (max-width: 1200px) {
  .vfd-circle {
    width: 90vw;
    height: 90vw;
    max-width: 600px;
    max-height: 600px;
    padding: 30px;
  }
}
@media (max-width: 900px) {
  .vfd-section {
    flex-direction: column;
    align-items: center;
    
  }
  .vfd-left, .vfd-right {
    min-height: 200px;
    max-width: 100vw;background-color: transparent;
    width: 100%;
  }
  .vfd-circle {
    width: 95vw;
    height: auto;
    border-radius: 0;
    max-width: 95vw;
    max-height: none;
    padding: 20px;
    margin: 20px 0;
  }
}
@media (max-width: 600px) {
  .vfd-section {
    flex-direction: column;
    align-items: center;
  }
  .vfd-left, .vfd-right {
    min-height: 120px;
    width: 100%;
  }
  .vfd-circle {
    width: 98vw;
    min-width: 0;
    height: auto;
    border-radius: 20px;
    padding: 10vw 4vw;
    margin: 10px 0;
  }
  .vfd-circle h2 {
    font-size: 1.2em;
  }
  .vfd-circle p {
    font-size: 1em;
  }
  .vfd-circle .statuten-button {
    font-size: 1em;
    padding: 10px 10vw;
  }
}

.kontakt-form-wrapper {
  background: var(--white);
  max-width: 600px;
  margin: 0 auto 3rem auto;
  padding: 2.5rem 2rem 2rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(74, 142, 60, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kontakt-form-title {
  font-size: 2.5rem;
  color: var(--dark-color);
  font-family: 'oscine', serif;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.kontakt-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.kontakt-form-row {
  display: flex;
  gap: 1rem;
}
.kontakt-form input,
.kontakt-form textarea {
  background: var(--primary-color);
  border: none;
  border-radius: 10px;
  padding: 1rem;
  font-size: 1.4rem;
  color: var(--white);
  width: 100%;
  font-family: 'oscine', serif;
  transition: box-shadow 0.2s;
}
.kontakt-form input::placeholder,
.kontakt-form textarea::placeholder{
  color: var(--white);
}
.kontakt-form input:focus,
.kontakt-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--secondary-color);
}
.kontakt-form textarea {
  min-height: 120px;
  resize: vertical;
}
.kontakt-form-submit {
  background: var(--dark-color);
  color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 0.8rem 2.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1.2rem auto 0 auto;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'oscine', serif;
  display: block;
}
.kontakt-form-submit:hover {
  background: var(--secondary-color);
}
.kontakt-form-success {
  background: #d0eebd;
  color: var(--dark-color);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.2rem;
}
.kontakt-form-error {
  background: #ffd6d6;
  color: #a94442;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.2rem;
}
@media (max-width: 700px) {
  .kontakt-form-wrapper {
    max-width: 98vw;
    padding: 1.2rem 0.5rem;
  }
  .kontakt-form-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  .kontakt-form input,
  .kontakt-form textarea {
    font-size: 1.1rem;
    padding: 0.7rem;
  }
  .kontakt-form-title {
    font-size: 2rem;
  }
  .kontakt-form-submit {
    font-size: 1.1rem;
    padding: 0.7rem 1.5rem;
  }
}