:root {
  --primary-color: #111111;
  --secondary-color: #1a1a1a;
  --accent-color: #333333;
  --text-color: #ffffff;
  --text-secondary: #cccccc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--accent-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

/* Navigation */
.navbar {
  background-color: var(--secondary-color);
  padding: 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
   display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap; /* Wichtig: verhindert Umbruch */
}

.logo {
  width: 100px;
  height: auto;
  transition: transform 0.3s ease;
  padding: 5px 20px;
}

.logo:hover {
  transform: scale(1.1);
}

.nav-links {
  display: flex;
  gap: 2rem;
  padding-left: 1rem;
  align-items: center;
}

.nav-links a {
  padding: 1rem 0;
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-links a:hover {
  color: var(--text-secondary);
}

/* Dropdown */
.dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.dropbtn {
  height: 100%;
  display: flex;
  align-items: center;
}

.dropdown-content {
  top: 100%;
  margin-top: 0;
  display: none;
  position: absolute;
  background-color: var(--secondary-color);
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  border-radius: 4px;
  left: 0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  padding: 12px 16px;
  display: block;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: 76px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  font-size: clamp(40px, 8vw, 90px);
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  animation: slideIn 1s ease-out forwards;
  color: var(--text-color);
}

/* Carousel */
.carousel {
  max-width: 1200px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 1rem;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.8);
}

.prev {
  left: 1rem;
}

.next {
  right: 1rem;
}

.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: white;
}

/* About Section */
.about-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 2rem;
  background: linear-gradient(145deg, var(--secondary-color), var(--primary-color));
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.about-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.5rem;
}

.about-section p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  padding: 3rem 0;
  margin-top: 4rem;
  border-top: 1px solid var(--accent-color);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.footer-content h3 {
  margin-bottom: 1rem;
}

.footer-content p {
  color: var(--text-secondary);
  margin: 0.5rem 0;
}

/* Animations */
@keyframes slideIn {
  from {
    left: -100%;
    opacity: 0;
  }
  to {
    left: 5%;
    opacity: 1;
  }
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background-color: var(--text-color);
  transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    padding: 1rem;
  }
  
  .hero-text {
    font-size: clamp(30px, 6vw, 60px);
  }
  
  .carousel-slide img {
    height: 400px;
  }
}

/* Event Styles */
.event-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.event-header {
    text-align: center;
    margin-bottom: 3rem;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.event-card:hover {
    transform: translateY(-5px);
}

.card-date-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-card-body {
    padding: 1.5rem;
}

.event-card h5 {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
}

.event-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.btn-outline {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid white;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    margin-top: 1rem;
}

.btn-outline:hover {
    background: white;
    color: black;
}

.cta-section {
    text-align: center;
    margin: 4rem 0;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.btn-large {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

/* Member Styles */
.member-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
}

.member-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: white;
    margin-right: 1rem;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
}

/* Info Styles */
.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

/* Media Queries */
@media (max-width: 768px) {
    .event-grid {
        grid-template-columns: 1fr;
    }
}
.testimonials-section {
  background-color: var(--accent-color);
  color: #f0f0f0;
  padding: 80px 20px;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.testimonial-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-box {
  background-color: #1e1e1e;
  padding: 30px 35px;
  border-radius: 20px;
  border: 1px solid #2a2a2a;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  text-align: left;
}

.testimonial-box:hover {
  transform: translateY(-8px);
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-author {
  text-align: right;
  font-weight: 600;
  color: #bbb;
}

.event-image {
    width: 50%;
    height: auto; /* oder auto für natürliche Höhe */
    object-fit: contain;
    background-color: #fff; /* Heller Hintergrund für transparente Bilder */
    padding: 10px; /* Gibt dem Bild "Luft", verhindert gequetschte Darstellung */
    border-radius: 12px 12px 0 0; /* Für abgerundete Ecken am oberen Rand */
    display: block;
}
.social-icons {
    margin-left: auto;
    padding-left: 20px;
}

.social-icons a {
    color: #ffffff;
    font-size: 2rem; /* größer als Standard */
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #e1306c; /* z.B. pink beim Hover */
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  width: 100%;
}

.contact-form button {
  background-color: #000;
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #444;
}

#form-status {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: green;
}
.download-button {
  display: inline-block;
  background-color: #28a745;
  color: #fff;
  padding: 0.75rem 1.2rem;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.download-button:hover {
  background-color: #218838;
}

.download-button i {
  margin-right: 0.5rem;
}
.aufbauprozess-section {
    padding: 4rem 2rem;
    background-color: var(--accent-color);
    text-align: center;
    color: var(--text-color);
}

.aufbauprozess-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.aufbau-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateX(100px);
    animation: slide-in 1s ease forwards;
}

.aufbau-item.left {
    flex-direction: row;
}

.aufbau-item.right {
    flex-direction: row-reverse;
}

.aufbau-item img {
    width: 45%;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    padding: 5px;
}

.aufbau-item p {
    width: 50%;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Animationen je nach Richtung */
.aufbau-item[data-direction="left"] {
    transform: translateX(-100px);
    animation: slide-in-left 1s ease forwards;
}
.aufbau-item[data-direction="right"] {
    transform: translateX(100px);
    animation: slide-in-right 1s ease forwards;
}

@keyframes slide-in-left {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slide-in-right {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Layout */
@media (max-width: 768px) {
    .aufbau-item {
        flex-direction: column !important;
        text-align: center;
    }

    .aufbau-item img,
    .aufbau-item p {
        width: 100%;
    }
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 76px; /* Höhe deiner fixierten Navbar */
  left: 0;
  width: 100%;
  background-color: var(--secondary-color);
  z-index: 999;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.mobile-nav a {
  padding: 1.2rem 1.5rem;
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--accent-color);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav a:hover {
  background-color: var(--accent-color);
  color: var(--text-secondary);
}

.mobile-nav.active {
  display: flex;
}
