:root {
  --paragraph-gray: #535353;
  --primary-dark: #0e0e0e;
  --primary: #ff0000;
  --orange: #eca14d;
  --primary-light: #f8f4ea;
  --white: white;
  --black: black;
}

/* Prevent horizontal scrolling / swiping on all pages */
html,
body {
  overflow-x: hidden !important;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

h2 {
  color: var(--primary-dark);
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Oswald, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2em;
}

h3 {
  color: var(--primary-dark);
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Oswald, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2em;
}

h5 {
  color: var(--primary-dark);
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Oswald, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2em;
}

h6 {
  color: var(--primary-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Oswald, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2em;
}

p {
  color: var(--paragraph-gray);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Barlow, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
}

a {
  color: var(--primary);
  align-items: center;
  font-size: 18px;
  line-height: 1.2em;
  text-decoration: none;
  transition: color .3s;
}

img {
  border-radius: 3px;
  max-width: 100%;
  display: inline-block;
}

.base-container {
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.primary-button {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  letter-spacing: .5px;
  text-transform: none;
  border-radius: 3px;
  padding: 11px 29px;
  transition: all .3s;
  display: inline-block;
}

.primary-button:hover {
  background-color: var(--white);
  opacity: 1;
  color: var(--primary);
}

.footer {
  background-color: var(--black);
  text-align: center;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 60px;
}

.footer-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: .7fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  display: grid;
}

.white-text {
  color: #fff;
}

.footer-brand-wrapper {
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.footer-brand {
  z-index: 10;
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand.w--current {
  color: #fff;
  padding-left: 0;
  font-family: Poppins;
}

.footer-links-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-link {
  color: var(--white);
  border-bottom: 1px solid #ffffff4d;
  margin-bottom: 8px;
  padding-top: 10px;
  padding-bottom: 2px;
  transition: all .3s;
}

.footer-link:hover {
  border-bottom-color: var(--orange);
  color: var(--orange);
}

.footer-contact-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
  font-style: normal;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  color: #ff9999;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
}

.contact-value a {
  color: #ff9999;
  transition: color 0.3s ease;
}

.contact-value a:hover {
  color: var(--orange);
}

.contacts-detail {
  flex-direction: column;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 4px;
  display: flex;
}

.contacts-detail.footer {
  flex-direction: row;
  padding-top: 8px;
  padding-bottom: 10px;
}

.contacts-icon {
  color: var(--orange);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 16px;
}

.contact {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
}

.email {
  color: var(--white);
}

.img-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-columns: 1fr 1fr;
  margin-top: 10px;
}

.gallery-footer-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-newslater-wrap {
  border-bottom: 1px solid #ffffff4d;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  padding-bottom: 60px;
  display: flex;
}

.subtitle {
  grid-column-gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.line-subtitle {
  background-color: #ffffff4d;
  width: 50px;
  height: 1px;
}

.line-subtitle.primary {
  background-color: var(--primary);
}

.orange-text {
  color: var(--orange);
}

.form-footer {
  grid-column-gap: 15px;
  justify-content: center;
  align-items: center;
  max-width: 680px;
  display: flex;
}

.text-field {
  border: 1px solid var(--white);
  color: var(--black);
  border-radius: 3px;
  width: 320px;
  height: 46px;
  margin-bottom: 0;
  padding: 11px 29px;
  font-size: 18px;
}

.text-field:focus {
  border-color: var(--orange);
}

.text-field::placeholder {
  font-size: 18px;
}

.form-block-footer {
  margin-top: 20px;
}

.button-wrapper {
  margin-top: 40px;
  display: flex;
}

.success-message-footer {
  background-color: var(--primary-light);
  border-radius: 3px;
}

.error-message-footer {
  border-radius: 3px;
}

.w-form-done {
  background-color: var(--primary-light);
  padding: 20px;
  text-align: center;
}

.w-form-fail {
  background-color: #ffdede;
  margin-top: 10px;
  padding: 10px;
  text-align: center;
}

.w-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 940px;
}

.w-input,
.w-select {
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}

.w-button {
  display: inline-block;
  padding: 9px 15px;
  background-color: #3898ec;
  color: white;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f2f2f2;
}

/* ---- HEADER / OVERLAY ---- */
.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 75px;
  background: #ff0000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
  box-sizing: border-box;
  z-index: 100;
}

.logo img {
  height: 50px;
}

.menu a {
  color: white;
  text-decoration: none;
  margin-left: 25px;
  font-size: 1.1rem;
  font-weight: bold;
}

main {
  padding: 100px 20px 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/* ---- FOOTER ---- */
footer {
  background: #ff0000;
  color: white;
  text-align: center;
  padding: 75px 0;
  margin-top: 300px;
}

.logo_bottom {
  width: 200px;
  height: auto;
}

.mwn {
  display: inline-block;
}

.mwn_logo {
  width: 125px;
  height: auto;
  margin-left: 100px;
}

.golf-img-1 {
  object-fit: cover;
  width: 400px;
  height: 600px;
  margin-left: 350px;
}

.mb-15 {
  margin-bottom: 15px;
}

/* Webflow Form States */
.w-form {
  margin: 0 0 15px;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.w-lightbox {
  background: rgba(0, 0, 0, 0.9);
  cursor: auto;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
}

@font-face {
  font-family: 'Fa brands 400';
  src: url('https://cdn.prod.website-files.com/63f8946a2ea727a9cb0bb50e/63f8946b2ea72758950bb54a_fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fa solid 900';
  src: url('https://cdn.prod.website-files.com/63f8946a2ea727a9cb0bb50e/63f8946b2ea7275fea0bb54b_fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fa 400';
  src: url('https://cdn.prod.website-files.com/63f8946a2ea727a9cb0bb50e/63f8946b2ea727759a0bb557_fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Media Queries */
@media screen and (max-width: 991px) {
  .footer-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .footer-brand-wrapper {
    width: 100%;
  }

  .gallery-footer-wrapper {
    width: 100%;
    order: 4;
  }

  .footer-links-wrapper {
    order: 2;
  }

  .footer-contact-wrapper {
    order: 3;
  }
}

@media screen and (max-width: 767px) {
  .footer-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 40px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .footer-brand-wrapper {
    flex-wrap: wrap;
  }

  .footer-brand {
    padding-left: 0;
  }

  .footer-links-wrapper {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .footer-contact-wrapper {
    align-items: center;
  }

  .gallery-footer-wrapper {
    justify-content: center;
    align-items: center;
  }

  .footer-newslater-wrap {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .contacts-detail.footer {
    text-align: left;
  }
}

@media screen and (max-width: 479px) {
  .footer {
    text-align: left;
  }

  .footer-social-icons-wrapper {
    justify-content: center;
    margin-top: 30px;
  }

  .footer-brand-wrapper {
    flex-direction: column;
  }

  .footer-links-wrapper {
    align-items: center;
  }

  .form-footer {
    grid-row-gap: 15px;
    flex-direction: column;
  }

  .text-field {
    width: 100%;
  }

  .form-block-footer {
    width: 100%;
    margin-top: 30px;
  }
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-link {
  color: white;
  text-decoration: none;
  margin-left: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #cc0000;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
  z-index: 200;
  margin-top: 10px;
}

.dropdown-menu a {
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  margin-left: 0;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.dropdown-menu a:hover {
  background-color: #990000;
}

.dropdown-menu.active {
  display: block;
}

/* ===== Hero Section (mit Bild + Overlay) ===== */
.hero-image {
  position: relative;
  height: 90vh;
  background: url("Meggele_Header_scs.png") center center/cover no-repeat;
  /* <- DEIN Bild hier */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

/* Dunkle Schicht über dem Bild */
.hero-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(62, 62, 62, 0.5);
  /* dunkle Transparenz */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content .date {
  font-size: 14px;
  opacity: 0.9;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 3em;
  margin: 10px 0;
}

.hero-content h2 {
  font-size: 1.8em;
  font-weight: 400;
  margin-bottom: 25px;
  color: #ffffff;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
  color: #d60000;
}

/* ===== Join Section bleibt ===== */
.join-section {
  background-color: #d60000;
  text-align: center;
  padding: 40px 20px;
  color: #fff;
}

.join-section p {
  font-size: 18px;
  margin-bottom: 10px;
  color: white;
}

.join-section .join:hover {
  background: #fff;
  color: #d60000;
}

/* === ROOT FARBEN === */
:root {
  --paragraph-gray: #535353;
  /* Grau für normale Texte */
  --primary-dark: #0e0e0e;
  /* Dunkelgrau/Schwarz für Überschriften */
  --primary: #ff0000;
  /* ROT - Hauptfarbe für Buttons, Header */
  --orange: #ff0000;
  /* Orange für Akzente */
  --primary-light: #f8f4ea;
  /* Helles Beige für Success Messages */
  --white: white;
  --black: black;
  /* SCHWARZ für Footer Hintergrund */
}

/* === BASIC RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Barlow', Arial, sans-serif;
  background: #f2f2f2;
  /* Hellgrauer Hintergrund für die Seite */
}

/* === HEADER (ROT) - ZENTRIERT === */
.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 75px;
  background: var(--primary);
  /* ROT - Header Hintergrund */
  display: flex;
  justify-content: center;
  /* Navigation in die Mitte */
  align-items: center;
  padding: 0 25px;
  box-sizing: border-box;
  z-index: 100;
}

.logo {
  position: absolute;
  /* Logo links fixieren */
  left: 25px;
}

.logo img {
  height: 50px;
}

.menu {
  display: flex;
  /* Navigation Items nebeneinander */
  gap: 25px;
  /* Abstand zwischen Links */
}

.menu a {
  color: var(--white);
  /* WEISS - Navigation Links */
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  transition: opacity 0.3s;
}

.menu a:hover {
  opacity: 0.8;
  /* Leicht transparent beim Hover */
}

/* === MAIN CONTENT AREA === */
main {
  padding: 120px 20px 60px;
  /* Abstand oben wegen fixem Header */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 200px);
}

/* Memberhsip styles moved to Mitgliedschaft.css */
/* === BUTTON === */
.btn {
  display: inline-block;
  padding: 14px 35px;
  background: var(--primary);
  /* ROT - Button Hintergrund */
  color: var(--white);
  /* WEISS - Button Text */
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s;
  border: 2px solid var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn:hover {
  background: var(--white);
  /* WEISS - Button Hintergrund beim Hover */
  color: var(--primary);
  /* ROT - Button Text beim Hover */
}

/* === FOOTER (SCHWARZ) === */
.footer {
  background-color: var(--black);
  /* SCHWARZ - Footer Hintergrund */
  text-align: center;
  padding: 60px 20px;
  margin-top: 80px;
  color: var(--white);
  /* WEISS - Footer Text */
}

.base-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-newslater-wrap {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  /* WEISS transparent - Trennlinie */
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.subtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.line-subtitle {
  background-color: rgba(255, 255, 255, 0.3);
  /* WEISS transparent - Deko-Linie */
  width: 50px;
  height: 1px;
}

h6 {
  color: var(--orange);
  /* ORANGE - Newsletter Überschrift */
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.footer h3 {
  color: var(--white);
  /* WEISS - "Join Our Newsletter" */
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  margin-bottom: 25px;
}

/* === NEWSLETTER FORM === */
.form-footer {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.text-field {
  border: 1px solid var(--white);
  /* WEISS - Input Border */
  color: var(--black);
  /* SCHWARZ - Input Text */
  background: var(--white);
  /* WEISS - Input Hintergrund */
  border-radius: 4px;
  width: 320px;
  height: 46px;
  padding: 11px 20px;
  font-size: 16px;
}

.text-field:focus {
  outline: none;
  border-color: var(--orange);
  /* ORANGE - Input Border beim Focus */
}

.primary-button {
  background-color: var(--primary);
  /* ROT - Submit Button */
  color: var(--white);
  /* WEISS - Submit Button Text */
  border: 1px solid var(--primary);
  padding: 11px 29px;
  height: 46px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  text-transform: uppercase;
}

.primary-button:hover {
  background-color: var(--white);
  /* WEISS - Button beim Hover */
  color: var(--primary);
  /* ROT - Button Text beim Hover */
}

/* === FOOTER GRID === */
.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.footer-brand-wrapper {
  text-align: center;
}

.logo_bottom {
  width: 150px;
  height: auto;
}

.footer h5 {
  color: var(--white);
  /* WEISS - Footer Überschriften */
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-link {
  color: var(--white);
  /* WEISS - Footer Links */
  text-decoration: none;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--orange);
  /* ORANGE - Footer Links beim Hover */
}

.contacts-detail {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.contacts-icon {
  color: var(--orange);
  /* ORANGE - Kontakt Icons */
  margin-right: 15px;
  font-size: 16px;
}

.contact,
.email {
  color: var(--white);
  /* WEISS - Kontakt Text */
  text-decoration: none;
}

.email:hover {
  color: var(--orange);
  /* ORANGE - Email beim Hover */
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .membership-container {
    grid-template-columns: 1fr;
  }

  .form-footer {
    flex-direction: column;
    width: 100%;
  }

  .text-field {
    width: 100%;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links-wrapper,
  .footer-contact-wrapper {
    text-align: center;
  }

  .contacts-detail {
    justify-content: center;
  }
}

/* ====== MIDDLE CONTENT SECTION ====== */
.middle-content {
  background: #fff;
  padding: 80px 20px;
}

.content-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.content-container h2 {
  color: var(--primary);
  font-size: 42px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.intro-text {
  font-size: 20px;
  color: var(--paragraph-gray);
  margin-bottom: 50px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.feature-box {
  background: #f9f9f9;
  padding: 35px 25px;
  border-radius: 8px;
  transition: all 0.3s;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.15);
}

.feature-box .icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-box h3 {
  color: var(--primary-dark);
  font-size: 24px;
  margin-bottom: 12px;
}

.feature-box p {
  color: var(--paragraph-gray);
  font-size: 16px;
  line-height: 1.5;
}

/* ============================================
   NEWS / AKTUELLES SECTION
   ============================================ */

.news-box {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 3rem;
}

.news-box h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #2c3e50;
}

.news-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.news {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.news:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.news-date {
  display: inline-block;
  color: #000000;
  font-weight: 600;
  font-size: 0.9rem;
  background: #d60000;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.news h4 {
  font-size: 1.3rem;
  margin: 0.5rem 0;
  color: #2c3e50;
}

.news p {
  color: #666;
  line-height: 1.6;
  margin: 0.75rem 0 1rem 0;
}

.news a {
  color: #e74c3c;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.news a:hover {
  color: #c0392b;
  padding-left: 5px;
}

/* ============================================
   RESPONSIVE - News Section
   ============================================ */

@media (max-width: 768px) {
  .news-items {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .news-box {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .news-box h3 {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .news {
    padding: 1.25rem;
  }

  .news h4 {
    font-size: 1.15rem;
  }

  .news-date {
    font-size: 0.85rem;
  }
}

/* Turnier styles moved to Turnier.css */
/* Anmeldung styles moved to Anmeldung.css */
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff0000;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  border: none;
}

.button:hover {
  background-color: #a30000;
}

/* === Allgemein === */
body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
  color: #ffffff;
  margin-top: 40px;
}
h2 {
  text-align: center;
  color: #ff0000;
  margin-top: 40px;
}

/* Shop styles moved to Shop.css */
/* === Fotos Galerie Styles === */

/* Gallery Intro Text */
.gallery-intro {
  text-align: center;
  color: var(--paragraph-gray);
  font-size: 18px;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Year Grid Layout */
.year-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Year Card */
.year-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.year-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(255, 0, 0, 0.2);
}

/* Year Image Section */
.year-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.year-image::before {
  content: '📷';
  font-size: 80px;
  opacity: 0.3;
  position: absolute;
}

.year-number {
  font-size: 72px;
  font-weight: bold;
  color: white;
  font-family: 'Oswald', sans-serif;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Year Info Section */
.year-info {
  padding: 30px;
  text-align: center;
}

.year-info h2 {
  color: var(--primary-dark);
  font-size: 28px;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}

.year-info p {
  color: var(--paragraph-gray);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Photo Count Badge */
.photo-count {
  display: inline-block;
  background: #f5f5f5;
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* View Button statisch, keine Animation oder Effekt */
.view-button {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;

  /* Übergänge komplett entfernen */
  transition: none !important;
}

/* Hover-Effekt deaktivieren */
.view-button:hover {
  background: var(--primary) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
}

/* Klick/Active-Effekt deaktivieren */
.view-button:active {
  background: var(--primary) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
}


/* Responsive Design */
@media (max-width: 768px) {
  .year-grid {
    grid-template-columns: 1fr;
  }

  .year-number {
    font-size: 60px;
  }

  .year-info {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .year-image {
    height: 200px;
  }

  .year-number {
    font-size: 50px;
  }

  .gallery-intro {
    font-size: 16px;
    padding: 0 15px;
  }
}

.footer-social-wrapper {
  text-align: left;
}

.footer-social-wrapper .white-text {
  margin-bottom: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.tiktok {
  background: #000000;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* Contact styles moved to Kontakt.css */
/* Team and Verein styles moved to Team.css and UeberVerein.css */
/* ======================================= */
/* NEUES TEAM SEITE STYLING: ROT & WEISS (DESIGN 2) */
/* ======================================= */

/* New Team styles moved to Team.css */
/* Anmeldung styles moved to Anmeldung.css */
/* ============================================
   RESPONSIVE MEDIA QUERIES - MOBILE FIRST
   ============================================ */

/* ===== HAMBURGER MENU FÜR MOBILE ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  padding: 5px;
  z-index: 101;
}

/* ===== TABLET & KLEINER (max-width: 991px) ===== */
@media screen and (max-width: 991px) {

  /* Navigation */
  .topbar {
    padding: 0 20px;
  }

  .menu {
    position: fixed;
    top: 75px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 75px);
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
  }

  .menu.active {
    right: 0;
  }

  .menu a {
    width: 100%;
    margin: 0;
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .menu-toggle {
    display: block;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: none;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: none;
    margin: 0;
    width: 100%;
  }

  .dropdown-menu.active {
    display: block;
  }

  .dropdown-menu a {
    padding-left: 30px;
  }

  /* Hero Section */
  .hero-image {
    height: 60vh;
  }

  .hero-content h1 {
    font-size: 2.5em;
  }

  .hero-content h2 {
    font-size: 1.5em;
  }

  /* Content Grids */
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .news-items {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  /* Membership */
  .membership-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  /* Stats Grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Values Grid */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Form Rows */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Steps Grid */
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== MOBILE (max-width: 767px) ===== */
@media screen and (max-width: 767px) {

  /* Typography */
  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  h5 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
  }

  /* Header */
  .topbar {
    height: 65px;
    padding: 0 15px;
  }

  .logo img {
    height: 40px;
  }

  .menu {
    top: 65px;
    height: calc(100vh - 65px);
    width: 100%;
  }

  /* Hero Section */
  .hero-image {
    height: 50vh;
  }

  .hero-content h1 {
    font-size: 2em;
  }

  .hero-content h2 {
    font-size: 1.2em;
  }

  .hero-content .date {
    font-size: 12px;
  }

  /* Main Content */
  main {
    padding: 90px 15px 40px;
  }

  .base-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Content Container */
  .content-container h2,
  .team-container h2,
  .regeln-container h2 {
    font-size: 28px;
  }

  .intro-text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  /* Feature Grid - Single Column */
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-box {
    padding: 25px 20px;
  }

  /* News Section */
  .news-box {
    padding: 30px 20px;
  }

  .news-box h3 {
    font-size: 28px;
  }

  /* Team Header */
  .team-header h1,
  .verein-header h1,
  .turnier-header h1,
  .anmeldung-header h1 {
    font-size: 32px;
  }

  .team-subtitle,
  .verein-subtitle,
  .turnier-date,
  .anmeldung-subtitle {
    font-size: 16px;
  }

  /* Team Grid */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Team Presentation */
  .team-overlay-text {
    position: static;
    transform: none;
    max-width: 100%;
    margin-top: 20px;
  }

  .team-overlay-text h2 {
    font-size: 1.8em;
  }

  /* Stats Grid - 2 columns */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-number {
    font-size: 36px;
  }

  /* Values Grid - Single Column */
  .values-grid {
    grid-template-columns: 1fr;
  }

  /* Activities */
  .activity-item {
    flex-direction: column;
    text-align: center;
  }

  /* Turnier Info Grid */
  .info-grid {
    gap: 15px;
  }

  /* Regeln Grid */
  .regeln-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Footer */
  .footer {
    padding: 40px 15px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-brand-wrapper,
  .footer-links-wrapper,
  .footer-contact-wrapper,
  .gallery-footer-wrapper {
    align-items: center;
    text-align: center;
  }

  .footer-newslater-wrap {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .footer h3 {
    font-size: 24px;
  }

  /* Form Footer */
  .form-footer {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .text-field {
    width: 100%;
  }

  /* Contact */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info {
    padding: 30px 20px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  /* Shop */
  .shop-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Gallery */
  .year-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .year-image {
    height: 200px;
  }

  .year-number {
    font-size: 56px;
  }

  /* Anmeldung */
  .anmeldung-form {
    padding: 30px 20px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .info-banner {
    flex-direction: column;
    padding: 25px 20px;
  }

  /* Buttons */
  .btn,
  .primary-button,
  .submit-btn {
    padding: 12px 25px;
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  /* Contact Options */
  .contact-options {
    flex-direction: column;
    width: 100%;
  }

  .contact-option {
    width: 100%;
    justify-content: center;
  }

  /* Team Hero */
  .team-hero h1 {
    font-size: 2.5em;
  }

  /* Role Grid - Horizontal Scroll (from your original CSS) */
  .role-grid {
    grid-template-columns: repeat(2, 300px);
    gap: 20px;
    overflow-x: auto;
    width: fit-content;
    padding: 0 20px 20px 20px;
  }

  .role-grid::-webkit-scrollbar {
    height: 8px;
  }

  .role-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
  }

  .team-roles {
    padding: 60px 0;
  }
}

/* ===== VERY SMALL MOBILE (max-width: 479px) ===== */
@media screen and (max-width: 479px) {

  /* Typography */
  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  /* Hero */
  .hero-content h1 {
    font-size: 1.8em;
  }

  .hero-content h2 {
    font-size: 1.1em;
  }

  /* Stats Grid - Single Column on very small screens */
  .stats-grid {
    grid-template-columns: 1fr;
  }

  /* Role Grid - Single Column */
  .role-grid {
    grid-template-columns: 300px;
    overflow-x: hidden;
    width: 100%;
    padding: 0 10px 20px 10px;
    justify-content: center;
  }

  /* Footer */
  .footer {
    text-align: center;
  }

  .mwn_logo {
    transform: translateX(0) scale(1.5) !important;
  }

  /* Images */
  .golf-img-1 {
    width: 100%;
    height: auto;
    margin-left: 0;
  }

  /* Main padding adjustment */
  main {
    padding-top: 80px;
  }
}

/* ===== LANDSCAPE MOBILE (max-height: 500px) ===== */
@media screen and (max-height: 500px) and (orientation: landscape) {

  .hero-image {
    height: 70vh;
  }

  .menu {
    padding: 15px 20px;
  }

  .menu a {
    padding: 10px;
  }
}

/* ===== ADDITIONAL RESPONSIVE UTILITIES ===== */

/* Hide on mobile */
@media screen and (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

/* Hide on desktop */
@media screen and (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

/* Full width on mobile */
@media screen and (max-width: 767px) {
  .full-width-mobile {
    width: 100% !important;
  }
}

/* Prevent horizontal scroll */
body {
  overflow-x: hidden;
}

/* Images responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Iframe responsive */
iframe {
  max-width: 100%;
}

/* ===== PRINT STYLES ===== */
@media print {

  .topbar,
  .footer,
  .menu-toggle {
    display: none;
  }

  main {
    padding-top: 0;
  }
}

/* ============================================
   TEAM PAGE - FIXES FÜR KÄSTCHEN
   ============================================ */

/* Team Hero optimiert */
.team-hero {
  background-color: #ff0000;
  color: white;
  text-align: center;
  padding: 120px 20px 60px;
  /* Mehr Padding oben wegen Header */
  margin-top: 0;
  /* Kein extra Margin */
}

.team-hero h1 {
  font-size: 3.5em;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: white;
}

/* Team Presentation Section */
.team-presentation {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
}

.team-image-wrapper {
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}

.main-team-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Namen Liste Container - Als eigenes Kästchen */
.name-list-container {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.name-list-container h3 {
  color: #ff0000;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

.name-list-container p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}

.hinweis-text {
  color: #999;
  font-size: 0.9em;
  font-style: italic;
  margin-top: 20px;
}

/* Rollen Section - Bessere Überschrift */
.team-roles {
  text-align: center;
  padding: 80px 20px;
  background-color: #f5f5f5;
}

.team-roles h2 {
  font-size: 2.5em;
  color: #ff0000;
  margin-bottom: 20px;
  margin-top: 0;
  text-transform: uppercase;
}

/* Role Cards - Optimiert damit alles drin bleibt */
.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.role-card {
  background-color: white;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  /* Mindesthöhe für einheitliche Karten */
}

.role-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Überschrift in Card - bleibt drin */
.role-card h3 {
  color: #ff0000;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 12px;
  line-height: 1.3;
  word-wrap: break-word;
  /* Lange Wörter umbrechen */
}

/* Namen in Card */
.role-card .card-names {
  color: #ff0000;
  font-weight: 600;
  font-size: 0.95em;
  margin-top: 0;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.6;
  text-align: center;
}

/* Beschreibung in Card */
.role-card p:not(.card-names) {
  text-align: left;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
  /* Nimmt verfügbaren Platz */
  font-size: 0.95em;
}

/* Kontakt CTA Section */
.kontakt-cta {
  background-color: #ff0000;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.kontakt-cta h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  margin-top: 0;
  color: white;
}

.kontakt-cta p {
  font-size: 1.15em;
  margin-bottom: 35px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: white;
  line-height: 1.6;
}

/* Button Styling */
.button {
  display: inline-block;
  background-color: white;
  color: #ff0000;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1em;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #f0f0f0;
  color: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ============================================
   RESPONSIVE ANPASSUNGEN FÜR TEAM PAGE
   ============================================ */

@media (max-width: 991px) {
  .team-hero h1 {
    font-size: 2.8em;
    letter-spacing: 3px;
  }

  .team-roles h2,
  .kontakt-cta h2 {
    font-size: 2em;
  }

  .role-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .role-card {
    min-height: 260px;
  }
}

@media (max-width: 767px) {
  .team-hero {
    padding: 100px 20px 50px;
  }

  .team-hero h1 {
    font-size: 2.2em;
    letter-spacing: 2px;
  }

  .team-presentation {
    padding: 40px 15px;
  }

  .name-list-container {
    padding: 25px 20px;
  }

  .name-list-container h3 {
    font-size: 1.3em;
  }

  .team-roles {
    padding: 60px 15px;
  }

  .team-roles h2 {
    font-size: 1.8em;
  }

  /* Role Grid - Single Column für sehr kleine Screens */
  .role-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .role-card {
    min-height: auto;
    padding: 25px 20px;
  }

  .role-card h3 {
    font-size: 1.25em;
  }

  .kontakt-cta {
    padding: 60px 20px;
  }

  .kontakt-cta h2 {
    font-size: 1.8em;
  }

  .kontakt-cta p {
    font-size: 1em;
  }
}

@media (max-width: 479px) {
  .team-hero h1 {
    font-size: 1.8em;
  }

  .team-roles h2,
  .kontakt-cta h2 {
    font-size: 1.5em;
  }

  .name-list-container h3 {
    font-size: 1.2em;
  }

  .role-card h3 {
    font-size: 1.15em;
  }

  .button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

/* ============================================
   SPEZIAL: HORIZONTAL SCROLL FÜR MOBILE
   (Falls du das behalten möchtest)
   ============================================ */

/* Aktiviere diese Variante wenn du horizontal scroll möchtest: */
/*
@media (max-width: 800px) {
    .role-grid {
        grid-template-columns: repeat(2, 300px);
        gap: 20px;
        overflow-x: auto;
        width: fit-content;
        padding: 0 20px 20px 20px;
        justify-content: flex-start;
    }
    
    .role-grid::-webkit-scrollbar {
        height: 8px;
    }
    
    .role-grid::-webkit-scrollbar-thumb {
        background: #ff0000;
        border-radius: 4px;
    }
    
    .team-roles {
        padding: 60px 0;
        overflow-x: hidden;
    }
}

@media (max-width: 650px) {
    .role-grid {
        grid-template-columns: 300px;
        overflow-x: hidden;
        width: 100%;
        padding: 0 10px 20px 10px;
        justify-content: center;
    }
}
*/
/* Fix für Mitgliedschaft Seite */
.mitgliedschaft-page main {
  padding-top: 100px !important;
}

/* Titel besser positionieren */
.membership-container {
  margin-top: 0;
}

.pricing-card {
  margin-top: 20px;
}

/* Microsoft Forms iframe Container */
#orderFormIframe {
  margin-top: 40px;
  padding: 0 20px;
}

#orderFormIframe h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 30px;
  font-size: 36px;
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   Füge diese am Ende deiner bestehenden styles.css hinzu
   ============================================ */

/* Mobile Menu Toggle Button - nur für Mobile sichtbar */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

/* ============================================
   TABLET & MOBILE - 992px und kleiner
   ============================================ */
@media (max-width: 992px) {

  /* Header & Navigation */
  .topbar {
    padding: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--primary-color, #cc0000);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    z-index: 999;
  }

  .menu.active {
    right: 0;
  }

  .menu>a {
    width: 100%;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Dropdown auf Mobile */
  .dropdown {
    width: 100%;
  }

  .dropdown-link {
    width: 100%;
    display: block;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu {
    position: static;
    display: block;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.3s ease;
    border-radius: 0;
  }

  .dropdown-menu.active {
    max-height: 300px;
    padding: 0.5rem 0;
  }

  .dropdown-menu a {
    padding: 0.75rem 1.5rem 0.75rem 2rem;
    border-bottom: none;
    color: white;
  }

  .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  /* Hero Section */
  .hero {
    min-height: 50vh;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  /* Content Sections */
  .middle-content,
  .content-wrapper,
  .content-container,
  .turnier-info,
  .team-presentation,
  .team-roles,
  .anmeldung-form-section,
  .contact-form {
    padding: 2rem 1rem;
  }

  /* Grids - zu 1 Spalte */
  .feature-grid,
  .news-items,
  .year-grid,
  .shop-container,
  .role-grid,
  .info-grid,
  .regeln-grid,
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Forms - zu 1 Spalte */
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Team Rollen */
  .activity-item {
    flex-direction: column;
    text-align: center;
  }

  /* Kontakt */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Stats Grid - 2 Spalten */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  /* Sponsor Logo im Footer - nach rechts verschieben */
  .gallery-footer-wrapper .mwn_logo,
  .mwn_logo {
    transform: translateX(60px) scale(2.0) !important;
    margin: 0 auto;
    display: block;
  }

  .gallery-footer-wrapper,
  .footer-brand-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
  }
}

/* ============================================
   TABLET - 768px und kleiner
   ============================================ */
@media (max-width: 768px) {

  /* Typography */
  .middle-content h2,
  .turnier-header h1,
  .verein-header h1,
  .team-roles h2,
  .values-container h2,
  .activities-section h2,
  .cta-box h2 {
    font-size: 2rem;
  }

  /* Hero */
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  /* Sections */
  .join-section {
    padding: 2rem 1rem;
  }

  .join-section p {
    font-size: 1.1rem;
  }

  /* Map */
  .map {
    height: 300px;
  }

  /* Turnier Date */
  .turnier-date {
    font-size: 1.1rem;
  }

  /* Buttons */
  .btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

}

/* ============================================
   MOBILE - 576px und kleiner
   ============================================ */
@media (max-width: 576px) {

  /* Header */
  .topbar {
    padding: 0.75rem 1rem;
  }

  .logo img {
    height: 40px;
  }

  /* Mobile Menu volle Breite */
  .menu {
    width: 100%;
    right: -100%;
  }

  /* Hero */
  .hero {
    min-height: 40vh;
    padding: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .hero .date {
    font-size: 1rem;
  }

  /* Sections */
  .middle-content,
  .content-wrapper,
  .content-container {
    padding: 2rem 1rem;
  }

  .middle-content h2 {
    font-size: 1.75rem;
  }

  /* Stats Grid - 1 Spalte auf sehr klein */
  .stats-grid {
    grid-template-columns: 1fr;
  }

  /* Contact Hero */
  .contact-hero h1,
  .verein-header h1 {
    font-size: 1.75rem;
  }

  /* Pricing Card */
  .pricing-card {
    padding: 2rem;
  }

  /* iFrames */
  #orderFormIframe {
    padding: 0 1rem;
  }

  #orderFormIframe iframe {
    min-height: 600px;
  }
}

/* ============================================
   SEHR KLEINE MOBILE - 400px und kleiner
   ============================================ */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero h2 {
    font-size: 1rem;
  }

  .middle-content h2 {
    font-size: 1.5rem;
  }

  .feature-box,
  .news,
  .role-card,
  .value-card {
    padding: 1.5rem;
  }
}