/* Mutbürger – Modernes, ruhiges Design im Stil der Vorlage */

:root {
  --brown: #3a2e25;
  --brown-light: #5a4637;
  --gold: #e0b354;
  --gold-dark: #b38a4d;
  --white: #fff;
  --gray: #f7f6f4;
  --text: #2d2d2d;
  --red: #e30613;
  --radius: 18px;
  --shadow: 0 4px 24px rgba(58,46,37,0.08);
  --transition: all 0.2s cubic-bezier(.4,0,.2,1);
}

html, body {
  font-family: 'Inter', Arial, sans-serif;
  background: linear-gradient(120deg, var(--gray) 0%, var(--white) 100%);
  color: var(--text);
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden; /* Verhindert horizontales Scrollen */
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Topbar */
.topbar {
  background: #111;
  color: var(--gold);
  font-size: 1rem;
  padding: 0.5rem 0;
}
.topbar-brand {
  font-weight: 700;
  letter-spacing: 1px;
}
.topbar-link {
  color: var(--gold);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 600;
  transition: var(--transition);
}
.topbar-link.gold {
  color: var(--gold);
}
.topbar-link:hover {
  color: var(--white);
}

/* Navigation */
.mainnav {
  background: #111;
  color: var(--white);
  padding: 0.7rem 0;
  border-bottom: 1px solid #e0b35433;
  position: relative;
}

/* Burger Menu */
.nav-burger {
  display: none;
}

.burger-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: var(--transition);
}

.burger-line {
  width: 24px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.burger-menu-btn:hover .burger-line {
  background: var(--white);
}

/* Burger Menu Active State */
.burger-menu-btn.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu-btn.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu-btn.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Overlay */
.nav-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(17, 17, 17, 0.98);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-mobile-overlay.active {
  display: flex;
  opacity: 1;
}

.nav-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.nav-mobile-list li {
  margin: 1.5rem 0;
}

.nav-mobile-list a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  padding: 1rem 2rem;
  border-radius: 8px;
  display: block;
}

.nav-mobile-list a:hover {
  background: var(--gold);
  color: var(--brown);
}

.nav-logo .logo-img {
  height: 48px;
  border-radius: 50%;
  background: none;
  border: 2px solid #fff;
}

.nav-list {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
}

.nav-list a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  padding: 0.3rem 0.5rem;
  border-radius: 8px;
  white-space: nowrap;
}

.nav-list a:hover {
  background: var(--gold);
  color: var(--brown);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(180deg, #222 0%, #a80000 50%, #e0b354 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0 4rem 0;
  position: relative;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-logo {
  width: auto;
  max-width: 320px;
  height: 220px;
  object-fit: contain;
  margin-bottom: 1.2rem;
  margin-top: -0.5rem;
  border-radius: 0;
  background: none;
  box-shadow: none;
}
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  margin-top: -0.5rem;
  letter-spacing: -1px;
}
.hero-sub {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 2.5rem;
}
.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  padding: 0.9rem 2.2rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  margin: 0.2rem 0.2rem;
}
.btn-gold {
  background: var(--gold);
  color: var(--brown);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--brown);
}
.btn-lg {
  font-size: 1.2rem;
  padding: 1.1rem 2.7rem;
}

/* Info-Teaser */
.info-teaser {
  background: var(--white);
  padding: 3.5rem 0 2.5rem 0;
}
.info-grid {
  display: flex;
  gap: 2.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.info-box {
  flex: 1 1 250px;
  background: var(--gray);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  margin: 0.5rem 0;
  min-width: 260px;
  max-width: 370px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.info-box h3 {
  color: var(--red);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  text-align: center;
}
.info-box p {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.info-box .btn {
  margin-top: auto;
  align-self: center;
  margin-bottom: 0;
}

/* Section Titles */
.section-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--brown);
  margin: 3.5rem 0 2.2rem 0;
  text-align: center;
  letter-spacing: -0.5px;
}

/* Newsfeed */
.newsfeed-section {
  background: var(--white);
  padding: 2.5rem 0 2.5rem 0;
}
.newsfeed-grid {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.news-card {
  background: var(--gray);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  min-width: 240px;
  max-width: 320px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}
.news-img-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.news-img {
  width: 180px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(58,46,37,0.08);
}
.news-badge {
  background: var(--gold);
  color: var(--brown);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.2em 0.8em;
  margin-bottom: 0.7em;
  display: inline-block;
}
.news-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0.2em 0 0.7em 0;
  text-align: center;
}
.news-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.7em;
  text-align: center;
}
.news-date {
  color: #888;
  font-size: 0.9rem;
  font-weight: 500;
}
.news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}
.news-read-more {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  background: rgba(227, 6, 19, 0.1);
}
.news-read-more:hover {
  background: var(--red);
  color: white;
  transform: translateY(-1px);
}
.newsfeed-more {
  text-align: center;
  margin-top: 3rem;
}
.newsfeed-more .btn {
  margin: 0 auto;
}

/* Events */
.events-section {
  background: var(--gray);
  padding: 2.5rem 0 2.5rem 0;
}
.events-grid {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  min-width: 220px;
  max-width: 300px;
  flex: 1 1 220px;
  margin-bottom: 1.2rem;
}
.event-date {
  background: var(--gold);
  color: var(--brown);
  font-weight: 700;
  border-radius: 8px;
  padding: 0.2em 0.8em;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 0.7em;
}
.event-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0.2em 0 0.7em 0;
  text-align: center;
}
.event-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.7em;
  text-align: center;
}
.events-more {
  text-align: center;
  margin-top: 1.5rem;
}

/* Video Section */
.video-section {
  background: var(--white);
  padding: 2.5rem 0 2.5rem 0;
}
.video-grid {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.5rem;
}
.video-box {
  flex: 1 1 350px;
  min-width: 320px;
  max-width: 520px;
  background: var(--gray);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-box iframe {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 12px;
}
.video-info {
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 420px;
  padding: 1.2rem 0.5rem;
}
.video-info h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  color: var(--brown);
  text-align: center;
}
.video-info p {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  text-align: center;
}
.content-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Testimonials */
.testimonials-section {
  background: var(--gray);
  padding: 2.5rem 0 2.5rem 0;
}
.testimonials-grid {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  min-width: 220px;
  max-width: 300px;
  flex: 1 1 220px;
  margin-bottom: 1.2rem;
  text-align: center;
}
.testimonial-card p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 0.7em;
  text-align: center;
}
.testimonial-author {
  color: var(--brown-light);
  font-size: 0.98rem;
  font-weight: 600;
}

/* Footer */
.footer-section {
  background: #111;
  color: var(--white);
  padding: 3rem 0 1.5rem 0;
}
.footer-grid {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-brand {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
}
.footer-logo {
  height: 48px;
  border-radius: 50%;
  background: none;
  padding: 0;
  margin-bottom: 1rem;
  box-shadow: none;
}
.footer-links {
  flex: 1 1 160px;
  min-width: 160px;
  max-width: 200px;
}
.footer-links h5 {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  margin-bottom: 0.5rem;
}
.footer-links ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}
.footer-links ul li a:hover {
  color: var(--gold);
}
.copyright {
  text-align: center;
  color: var(--gold);
  font-size: 0.98rem;
  margin-top: 2.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .container { padding: 0 1rem; }
  .info-grid, .newsfeed-grid, .events-grid, .testimonials-grid, .footer-grid, .video-grid { gap: 1.2rem; }
}
@media (max-width: 900px) {
  .info-grid, .newsfeed-grid, .events-grid, .testimonials-grid, .footer-grid, .video-grid {
    flex-direction: column;
    align-items: center;
  }
  .nav-list { gap: 1.2rem; }
}
@media (max-width: 768px) {
  /* Hide desktop navigation */
  .nav-list {
    display: none;
  }
  
  /* Show burger menu */
  .nav-burger {
    display: block;
  }
  
  /* Center logo on mobile */
  .mainnav .container {
    position: relative;
  }
  
  .nav-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  /* Adjust burger menu position */
  .nav-burger {
    position: relative;
    z-index: 1001;
  }
  
  /* Hide topbar on mobile for more space */
  .topbar {
    display: none;
  }
  
  /* Kompaktere Tablet-Version */
  .hero-section {
    padding: 2.5rem 0 2rem 0 !important;
  }
  
  .info-teaser {
    padding: 2.5rem 0 2rem 0 !important;
  }
  
  .info-box {
    padding: 1.8rem 1.2rem 1.5rem 1.2rem !important;
  }
  
  .section-title {
    margin: 3rem 0 2rem 0 !important;
  }
  
  .newsfeed-section,
  .events-section,
  .video-section {
    padding: 2rem 0 !important;
  }
  
  .news-card,
  .event-card {
    padding: 1.5rem 1.2rem 1.2rem 1.2rem !important;
    margin-bottom: 1rem !important;
  }
  
  .cta-section {
    padding: 3rem 0 2rem 0 !important;
  }
}
@media (max-width: 600px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.3rem; }
  .container { padding: 0 0.5rem; }
  .btn, .btn-lg { font-size: 1rem; padding: 0.7rem 1.2rem; }
  
  /* Adjust mobile navigation for smaller screens */
  .nav-mobile-list a {
    font-size: 1.3rem;
    padding: 0.8rem 1.5rem;
  }
  
  .nav-mobile-list li {
    margin: 1rem 0;
  }
  
  /* Kompaktere mobile Version */
  .hero-section {
    padding: 2rem 0 1.5rem 0 !important;
  }
  
  .hero-logo {
    max-width: 340px !important;
    height: 240px !important;
  }
  
  .hero-title {
    margin-bottom: 0.8rem !important;
    margin-top: -0.3rem !important;
  }
  
  .hero-sub {
    margin-bottom: 1.5rem !important;
  }
  
  .info-teaser {
    padding: 2rem 0 1.5rem 0 !important;
  }
  
  .info-box {
    padding: 1.5rem 1rem 1.2rem 1rem !important;
    margin: 0.3rem 0 !important;
  }
  
  .info-box h3 {
    margin-bottom: 0.8rem !important;
  }
  
  .info-box p {
    margin-bottom: 1.2rem !important;
    line-height: 1.5 !important;
  }
  
  .section-title {
    margin: 2.5rem 0 1.5rem 0 !important;
  }
  
  .newsfeed-section,
  .events-section,
  .video-section {
    padding: 1.5rem 0 !important;
  }
  
  .news-card,
  .event-card {
    padding: 1.2rem 1rem 1rem 1rem !important;
    margin-bottom: 0.8rem !important;
  }
  
  .news-card h4,
  .event-card h4 {
    margin: 0.1em 0 0.5em 0 !important;
  }
  
  .news-card p,
  .event-card p {
    margin-bottom: 0.5em !important;
    line-height: 1.5 !important;
  }
  
  .news-footer {
    margin-top: 0.8rem !important;
    padding-top: 0.8rem !important;
  }
  
  .newsfeed-more,
  .events-more {
    margin-top: 2rem !important;
  }
  
  .video-row {
    margin-bottom: 1.5rem !important;
  }
  
  .video-col iframe {
    border-radius: 12px !important;
  }
  
  .cta-section {
    padding: 2.5rem 0 1.5rem 0 !important;
  }
  
  .cta-section .section-title {
    margin-bottom: 0.3rem !important;
  }
  
  .cta-section p {
    margin-bottom: 1.5rem !important;
  }
  
  .cta-grid > div {
    padding: 1.5rem 1rem 1.2rem 1rem !important;
  }
  
  .cta-grid > div h3 {
    margin-bottom: 0.5rem !important;
  }
  
  .cta-grid > div p {
    line-height: 1.5 !important;
  }
}

.video-cards {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .video-cards {
    flex-direction: row;
    gap: 3.5rem;
  }
}
.video-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  align-items: stretch;
}
@media (min-width: 900px) {
  .video-card {
    flex-direction: row;
    min-width: 0;
    flex: 1 1 0;
    gap: 0;
  }
  .video-card-reverse {
    flex-direction: row-reverse;
  }
}
.video-card-media {
  flex: 1 1 320px;
  min-width: 220px;
  max-width: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray);
  padding: 2rem 1.5rem;
}
.video-card-media iframe {
  width: 100%;
  min-width: 220px;
  max-width: 480px;
  height: 260px;
  border: none;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(58,46,37,0.10);
}
.video-card-info {
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 420px;
  padding: 2.2rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.video-card-info h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  color: var(--brown);
  text-align: center;
}
.video-card-info p {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  text-align: center;
}
.video-card-info .btn,
.video-card-info .content-links {
  margin-top: 0.7rem;
}
.video-card-info .content-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.video-cards-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  max-width: 900px;
  margin: 0 auto 3.5rem auto;
}
.video-card-modern {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(58,46,37,0.10);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  width: 100%;
  min-width: 0;
}
@media (min-width: 900px) {
  .video-card-modern {
    flex-direction: row;
    min-width: 0;
    width: 100%;
    max-width: 900px;
  }
}
.video-card-modern-media {
  flex: 1 1 380px;
  min-width: 260px;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray);
  padding: 2.5rem 2rem;
}
.video-card-modern-media iframe {
  width: 100%;
  min-width: 220px;
  max-width: 420px;
  height: 260px;
  border: none;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(58,46,37,0.10);
}
.video-card-modern-info {
  flex: 1 1 320px;
  min-width: 220px;
  max-width: 480px;
  padding: 2.5rem 2.5rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.video-card-modern-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--brown);
  text-align: center;
}
.video-card-modern-info p {
  color: #444;
  font-size: 1.08rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.video-card-modern-info .btn,
.video-card-modern-info .content-links {
  margin-top: 1.1rem;
}
.video-card-modern-info .content-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .video-card-modern-media, .video-card-modern-info {
    padding: 2rem 1.2rem;
  }
  .video-card-modern {
    border-radius: 18px;
  }
}
@media (max-width: 600px) {
  .video-card-modern-media, .video-card-modern-info {
    padding: 1.2rem 0.5rem;
  }
  .video-card-modern-info h2 {
    font-size: 1.1rem;
  }
}

.video-cards-pro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.5rem;
  max-width: 900px;
  margin: 0 auto 4.5rem auto;
}
.video-card-pro {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 40px rgba(58,46,37,0.13);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  padding: 0;
  margin: 0;
}
@media (min-width: 900px) {
  .video-card-pro {
    flex-direction: row;
    min-width: 0;
    width: 100%;
    max-width: 900px;
    height: 340px;
  }
  .video-card-pro-reverse {
    flex-direction: row-reverse;
  }
}
.video-card-pro-media {
  flex: 1 1 420px;
  min-width: 260px;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray);
  padding: 2.5rem 2rem;
}
.video-card-pro-media iframe {
  width: 100%;
  min-width: 220px;
  max-width: 420px;
  height: 240px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(58,46,37,0.10);
  background: #000;
}
.video-card-pro-info {
  flex: 1 1 320px;
  min-width: 220px;
  max-width: 480px;
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.video-card-pro-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: var(--brown);
  letter-spacing: -1px;
  text-align: center;
}
.video-card-pro-text {
  color: #444;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  text-align: center;
}
.video-card-pro-info .btn,
.video-card-pro-info .content-links {
  margin-top: 1.1rem;
}
.video-card-pro-info .content-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .video-card-pro-media, .video-card-pro-info {
    padding: 2rem 1.2rem;
  }
  .video-card-pro {
    border-radius: 18px;
    height: auto;
  }
  .video-card-pro-title {
    font-size: 1.3rem;
  }
}
@media (max-width: 600px) {
  .video-card-pro-media, .video-card-pro-info {
    padding: 1.2rem 0.5rem;
  }
  .video-card-pro-title {
    font-size: 1.1rem;
  }
}

.video-cards-equal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  max-width: 900px;
  margin: 0 auto 4.5rem auto;
}
.video-card-equal {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(58,46,37,0.10);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  min-height: 320px;
  height: 440px;
}
.video-card-equal-reverse {
  flex-direction: row-reverse;
}
.video-card-equal-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2.5rem 2.5rem;
  min-width: 0;
}
.video-card-equal-media {
  align-items: center;
  background: var(--gray);
  padding: 2.5rem 2rem;
}
.video-card-equal-media iframe {
  width: 100%;
  max-width: 420px;
  height: 290px;
  border: none;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(58,46,37,0.10);
  background: #000;
}
.video-card-equal-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  color: var(--brown);
  letter-spacing: -0.5px;
  line-height: 1.2;
  text-align: center;
}
.video-card-equal-text {
  color: #444;
  font-size: 0.98rem;
  margin-bottom: 1.1rem;
  line-height: 1.5;
  text-align: center;
}
.video-card-equal-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.video-card-equal-buttons .btn {
  font-size: 0.98rem;
  padding: 0.7rem 1.2rem;
}
@media (max-width: 900px) {
  .video-card-equal, .video-card-equal-reverse {
    flex-direction: column;
    height: auto;
    min-height: 0;
  }
  .video-card-equal-content, .video-card-equal-media {
    padding: 2rem 1.2rem;
    align-items: center;
    text-align: center;
  }
  .video-card-equal-title {
    font-size: 1.2rem;
  }
  .video-cards-equal > .video-card-equal:nth-child(2) .video-card-equal-buttons {
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .video-card-equal-content, .video-card-equal-media {
    padding: 1.2rem 0.5rem;
  }
  .video-card-equal-title {
    font-size: 0.95rem;
  }
}

/* Buttons in unterer Box nebeneinander */
.video-cards-equal > .video-card-equal:nth-child(2) .video-card-equal-buttons {
  flex-direction: row;
  gap: 1.2rem;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .video-cards-equal > .video-card-equal:nth-child(2) .video-card-equal-buttons {
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
  }
}

/* Legal Pages Styles */
.page-header {
  background: linear-gradient(180deg, #222 0%, #a80000 50%, #e0b354 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 0 3rem 0;
  position: relative;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  text-align: center;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0;
  text-align: center;
}

.legal-content {
  background: var(--white);
  padding: 3rem 0;
}

.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section h2 {
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  text-align: center;
}

.legal-section h3 {
  color: var(--brown);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem 0;
  text-align: center;
}

.legal-info {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.legal-info p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text);
  text-align: center;
}

.legal-info p:last-child {
  margin-bottom: 0;
}

.legal-info ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
  text-align: center;
}

.legal-info ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  text-align: center;
}

.legal-info a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.legal-info a:hover {
  color: var(--brown);
  text-decoration: underline;
}

.legal-info strong {
  color: var(--brown);
  font-weight: 600;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }
  
  .page-subtitle {
    font-size: 1.1rem;
  }
  
  .legal-section h2 {
    font-size: 1.3rem;
  }
  
  .legal-section h3 {
    font-size: 1.1rem;
  }
  
  .legal-info {
    padding: 1.5rem;
  }
}

@media (max-width: 600px) {
  .page-header {
    padding: 3rem 0 2rem 0;
  }
  
  .page-title {
    font-size: 1.8rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  .legal-content {
    padding: 2rem 0;
  }
  
  .legal-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
  
  .legal-info {
    padding: 1.2rem;
  }
}

/* Video-Bereich Startseite */
.video-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}
.video-col {
  flex: 1 1 350px;
  min-width: 320px;
  max-width: 520px;
  display: flex;
  justify-content: center;
}
.video-col iframe {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 16px;
  background: #000;
}
@media (max-width: 900px) {
  .video-row {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .video-col {
    max-width: 100%;
    min-width: 0;
  }
  .video-col iframe {
    max-width: 100%;
  }
}

/* Call-to-Action Bereich Startseite */
.cta-section {
  background: #fff;
  padding: 3.5rem 0 2.5rem 0;
}
.cta-section .section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}
.cta-section p {
  text-align: center;
  color: #888;
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}
.cta-grid {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.cta-grid > div {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  background: #f7f6f4;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(58,46,37,0.08);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  text-align: center;
}
.cta-grid > div h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e30613;
  margin-bottom: 0.7rem;
  text-align: center;
}
.cta-grid > div p {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 0;
  text-align: center;
}
.cta-grid > div div {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
}
.cta-section .btn {
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
}
@media (max-width: 900px) {
  .cta-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .cta-grid > div {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .cta-section {
    padding: 2rem 0 1.5rem 0;
  }
  .cta-section .section-title {
    font-size: 1.3rem;
  }
  .cta-section p {
    font-size: 1rem;
  }
  .cta-grid > div {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .cta-section .btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

/* Animationen */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.animated {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1), transform 0.6s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform;
}
.animate-fadein.visible {
  animation: fadeIn 1s cubic-bezier(.4,0,.2,1) forwards;
}
.animate-slideup.visible {
  animation: slideUp 0.8s cubic-bezier(.4,0,.2,1) forwards;
}
.stagger-delay {
  animation-delay: var(--stagger-delay, 0s);
}

/* Hero Animation */
.hero-section.animated { opacity: 0; }
.hero-section.animate-fadein.visible { opacity: 1; animation: fadeIn 1.2s 0.1s both; }

/* Cards Animation */
.news-card.animated,
.event-card.animated,
.testimonial-card.animated,
.cta-section.animated {
  opacity: 0;
  transform: translateY(40px);
}
.news-card.animate-slideup.visible,
.event-card.animate-slideup.visible,
.testimonial-card.animate-slideup.visible,
.cta-section.animate-slideup.visible {
  opacity: 1;
  transform: translateY(0);
  animation: slideUp 0.8s cubic-bezier(.4,0,.2,1) forwards;
}

/* Button Hover sanfter */
.btn, .btn-lg {
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s cubic-bezier(.4,0,.2,1);
}
.btn:hover, .btn:focus {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 6px 24px rgba(227,6,19,0.10);
}

/* Card Hover sanfter */
.news-card, .event-card, .testimonial-card {
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s cubic-bezier(.4,0,.2,1);
}
.news-card:hover, .event-card:hover, .testimonial-card:hover {
  transform: translateY(-7px) scale(1.025);
  box-shadow: 0 10px 32px rgba(58,46,37,0.13);
}

/* CTA-Grid Card Hover */
.cta-grid > div {
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s cubic-bezier(.4,0,.2,1);
}
.cta-grid > div:hover {
  transform: translateY(-7px) scale(1.025);
  box-shadow: 0 10px 32px rgba(227,6,19,0.10);
}

/* Spezifische Regeln für werwirsind.html */
.historie-text p,
.engagement-text p,
.populismus-text p,
.challenges-text p {
  text-align: center !important;
}

.section-header h2,
.section-header p {
  text-align: center !important;
}

.timeline-item h3,
.timeline-item p,
.pillar-item h3,
.pillar-item p,
.principle-item h3,
.principle-item p,
.challenge-card h3,
.challenge-card p {
  text-align: center !important;
}

.gebot-card p {
  text-align: center !important;
}

/* Spezifische Regeln für wofuer.html */
.content-intro h2,
.content-intro p,
.intro-text p {
  text-align: center !important;
}

.value-card h3,
.value-card h4,
.value-card p {
  text-align: center !important;
}

.value-points {
  text-align: center !important;
}

.value-points li {
  text-align: center !important;
}

.vision-text h2,
.vision-text p {
  text-align: center !important;
} 

/* Hero-Bild nur auf der Startseite */
.hero-index {
  background: linear-gradient(rgba(34,34,34,0.45), rgba(34,34,34,0.45)), url('../images/Titelbild_1024x650.png') center center / cover no-repeat;
  position: relative;
} 

/* Auffälliger Pfeil in Info-Boxen */
.arrow {
  font-weight: 900;
  font-size: 1.5em;
  color: var(--red);
  vertical-align: middle;
  margin-left: 0.2em;
  letter-spacing: 0.05em;
}

/* Größere Subline im Hero */
.hero-sub-big {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 2.5rem;
} 

/* Neue Media Queries für bessere Responsivität */
@media (max-width: 480px) {
  .container {
    padding: 0 0.8rem;
  }
  
  .hero-logo {
    max-width: 280px !important;
    height: 200px !important;
  }
  
  .hero-title {
    font-size: 1.8rem !important;
  }
  
  .hero-sub {
    font-size: 1.1rem !important;
  }
  
  .info-box {
    padding: 1.2rem 0.8rem 1rem 0.8rem !important;
  }
  
  .info-box h3 {
    font-size: 1.2rem !important;
  }
  
  .info-box p {
    font-size: 0.95rem !important;
  }
  
  .news-card,
  .event-card,
  .testimonial-card {
    padding: 1rem 0.8rem 0.8rem 0.8rem !important;
  }
  
  .news-card h4,
  .event-card h4 {
    font-size: 1.1rem !important;
  }
  
  .news-card p,
  .event-card p,
  .testimonial-card p {
    font-size: 0.9rem !important;
  }
  
  .btn {
    font-size: 0.9rem !important;
    padding: 0.6rem 1rem !important;
  }
  
  .btn-lg {
    font-size: 1rem !important;
    padding: 0.8rem 1.5rem !important;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 0.5rem;
  }
  
  .hero-logo {
    max-width: 240px !important;
    height: 170px !important;
  }
  
  .hero-title {
    font-size: 1.6rem !important;
  }
  
  .hero-sub {
    font-size: 1rem !important;
  }
  
  .section-title {
    font-size: 1.2rem !important;
  }
  
  .info-box {
    padding: 1rem 0.6rem 0.8rem 0.6rem !important;
  }
  
  .news-card,
  .event-card,
  .testimonial-card {
    padding: 0.8rem 0.6rem 0.6rem 0.6rem !important;
  }
  
  .btn {
    font-size: 0.85rem !important;
    padding: 0.5rem 0.8rem !important;
  }
} 