/* Datei: /css/style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255,215,0,0.12), transparent 25%),
    radial-gradient(circle at bottom right, rgba(192,192,192,0.08), transparent 25%),
    #050505;

  color: #ffffff;
  font-family: "Segoe UI", sans-serif;
  overflow-x: hidden;
}

/* Glow Background */

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
}

.glow-1 {
  width: 350px;
  height: 350px;
  background: rgba(255, 215, 0, 0.15);
  top: -100px;
  left: -100px;
}

.glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(192, 192, 192, 0.12);
  bottom: -100px;
  right: -100px;
}

/* Header */

.header {
  width: 100%;
  padding: 20px 40px;

  display: flex;
  align-items: center;
  gap: 25px;

  position: sticky;
  top: 0;

  backdrop-filter: blur(12px);

  background: rgba(0,0,0,0.55);

  border-bottom: 1px solid rgba(255,255,255,0.08);

  z-index: 999;
}

.navbar {
  margin-left: auto;
}
.hero-main-logo {
  text-align: center;
  margin-bottom: 40px;
}

.hero-main-logo img {
  max-width: 700px;
  width: 100%;
  height: auto;

  filter:
    drop-shadow(0 0 12px rgba(255,215,0,0.35))
    drop-shadow(0 0 35px rgba(255,215,0,0.15));
}

/* Logo */

.logo-area {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo-placeholder {
  width: 70px;
  height: 70px;

  border-radius: 50%;

  border: 2px solid gold;

  display: flex;
  align-items: center;
  justify-content: center;

  color: gold;
  font-weight: bold;

  background: rgba(255,255,255,0.04);

  box-shadow:
    0 0 12px rgba(255,215,0,0.4),
    0 0 25px rgba(255,215,0,0.2);
}
.logo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text h1 {
  font-size: 28px;
  color: gold;
  text-shadow: 0 0 10px rgba(255,215,0,0.4);
}

.brand-text p {
  color: silver;
  font-size: 14px;
  letter-spacing: 2px;
}

/* Navigation */

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: white;

  font-weight: 500;

  transition: 0.3s;
}

.nav-links a:hover {
  color: gold;

  text-shadow:
    0 0 10px rgba(255,215,0,0.8),
    0 0 20px rgba(255,215,0,0.4);
}

/* Dropdown */

.dropdown-menu {
  position: absolute;

  top: 40px;
  left: 0;

  background: rgba(10,10,10,0.95);

  border: 1px solid rgba(255,215,0,0.25);

  border-radius: 12px;

  min-width: 220px;

  display: none;

  padding: 10px 0;

  box-shadow:
    0 0 20px rgba(255,215,0,0.15);

  backdrop-filter: blur(10px);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Hero */

.hero {
  min-height: 85vh;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 60px 20px;
}

.hero-content {
  max-width: 900px;
}

.hero h2 {
  font-size: 58px;
  margin-bottom: 25px;

  color: white;

  text-shadow:
    0 0 10px rgba(255,255,255,0.2),
    0 0 25px rgba(255,215,0,0.25);
}

.hero p {
  font-size: 22px;
  color: #cccccc;
  margin-bottom: 40px;
}

/* Buttons */

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 34px;

  border-radius: 40px;

  text-decoration: none;

  font-weight: bold;

  transition: 0.3s;

  border: 1px solid transparent;
}

.gold-btn {
  background: linear-gradient(135deg, #FFD700, #B8860B);

  color: black;

  box-shadow:
    0 0 20px rgba(255,215,0,0.4);
}

.gold-btn:hover {
  transform: translateY(-3px);

  box-shadow:
    0 0 35px rgba(255,215,0,0.7);
}

.silver-btn {
  background: linear-gradient(135deg, #C0C0C0, #6e6e6e);

  color: black;

  box-shadow:
    0 0 20px rgba(192,192,192,0.3);
}

.silver-btn:hover {
  transform: translateY(-3px);

  box-shadow:
    0 0 35px rgba(192,192,192,0.6);
}

/* Features */

.features {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 30px;

  padding: 80px 40px;
}

.feature-card {
  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 20px;

  padding: 35px;

  backdrop-filter: blur(10px);

  transition: 0.3s;

  box-shadow:
    0 0 20px rgba(255,255,255,0.04);
}

.feature-card:hover {
  transform: translateY(-6px);

  border-color: rgba(255,215,0,0.35);

  box-shadow:
    0 0 30px rgba(255,215,0,0.12);
}

.feature-card h3 {
  color: gold;
  margin-bottom: 15px;
}

.feature-card p {
  color: #d2d2d2;
  line-height: 1.7;
}

/* Footer */

.footer {
  padding: 30px 20px;
  text-align: center;

  border-top: 1px solid rgba(255,255,255,0.08);

  background: rgba(0,0,0,0.5);

  color: #999999;
}
.hero-text-section {
  padding: 80px 20px;
}

.hero-text-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.hero-text-container h2 {
  font-size: 52px;
  margin-bottom: 20px;

  color: white;

  text-shadow:
    0 0 10px rgba(255,255,255,0.2),
    0 0 25px rgba(255,215,0,0.25);
}

.hero-subtitle {
  font-size: 22px;
  color: #cccccc;
  margin-bottom: 50px;
}

.hero-text-box {
  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,215,0,0.15);

  border-radius: 24px;

  padding: 50px;

  text-align: left;

  line-height: 1.9;

  font-size: 18px;

  color: #d7d7d7;

  backdrop-filter: blur(12px);

  box-shadow:
    0 0 30px rgba(255,215,0,0.08);
}

.hero-text-box p {
  margin-bottom: 28px;
}

.hero-text-box strong {
  color: gold;
}
.club-description-section {
  padding: 100px 20px;
}

.club-description-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.club-logo-large {
  margin-bottom: 40px;
}

.club-logo-large img {
  max-width: 600px;
  width: 100%;
  height: auto;

  filter:
    drop-shadow(0 0 15px rgba(255,215,0,0.35))
    drop-shadow(0 0 40px rgba(255,215,0,0.15));
}

.club-description-container h2 {
  font-size: 54px;
  margin-bottom: 20px;

  color: white;

  text-shadow:
    0 0 10px rgba(255,255,255,0.2),
    0 0 25px rgba(255,215,0,0.25);
}

.club-subtitle {
  font-size: 22px;
  color: #cccccc;
  margin-bottom: 50px;
}

.club-description-box {
  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,215,0,0.15);

  border-radius: 24px;

  padding: 50px;

  text-align: left;

  line-height: 1.9;

  font-size: 18px;

  color: #d7d7d7;

  backdrop-filter: blur(12px);

  box-shadow:
    0 0 30px rgba(255,215,0,0.08);
}

.club-description-box p {
  margin-bottom: 28px;
}

.club-description-box strong {
  color: gold;
}


@media (max-width: 768px) {

  .hero-text-container h2 {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-text-box {
    padding: 30px 22px;
    font-size: 16px;

  }
  .hero-main-logo img {
   max-width: 90%;
  }

  .club-description-container h2 {
    font-size: 36px;
  }

  .club-subtitle {
    font-size: 18px;
  }

  .club-description-box {
    padding: 30px 22px;
    font-size: 16px;
  }

  .club-logo-large img {
    max-width: 90%;
  }


}


/* Mobile */

.mobile-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: gold;
}

@media (max-width: 950px) {

  .header {
    flex-wrap: wrap;
    padding: 20px;
  }

  .mobile-toggle {
    display: block;
  }

  .navbar {
    width: 100%;
    display: none;
    margin-top: 20px;
  }

  .navbar.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .dropdown-menu {
    position: relative;
    top: 10px;
    margin-bottom: 10px;
  }

  .hero h2 {
    font-size: 38px;
  }

  .hero p {
    font-size: 18px;
  }

}