:root { --primary: #12454b; --accent: #d33b05; --dark: #000000; --light: #f6f8f8; --white: #ffffff; --container-width: 1100px; } 
/* Reset & Base */ * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { font-family: 'Helvetica Neue', Arial, sans-serif; line-height: 1.7; color: #1a1a1a; font-size: 22px; background: var(--white); overflow-x: hidden; } .container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; width: 100%; } .section-padding { padding: clamp(50px, 10vw, 100px) 0; } .bg-light { background: var(--light); } .bg-dark { background: var(--dark); color: var(--white); } .text-center { text-align: center; } .white-text { color: var(--white); } .centered { text-align: center; } 
/* Header */ .site-header { min-height: 100px; background: var(--dark); display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; padding: 15px 0; } .header-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; } .logo-link img { height: clamp(60px, 10vw, 90px); width: auto; transition: transform 0.3s ease; display: block; } .logo-link:hover img { transform: scale(1.05); } .nav-links { display: flex; list-style: none; gap: clamp(10px, 3vw, 25px); align-items: center; } .nav-links a { color: var(--white); text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: clamp(0.75rem, 2vw, 1rem); position: relative; padding: 5px 0; transition: color 0.3s ease; } .nav-item::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background-color: var(--accent); transition: width 0.3s ease; } .nav-item:hover { color: var(--accent); } .nav-item:hover::after { width: 100%; } .nav-cta { background: var(--accent); padding: 10px 20px !important; border-radius: 2px; } .btn-blink-header { animation: pulse-strong 1.2s infinite; } @keyframes pulse-strong { 0% { background-color: var(--accent); box-shadow: 0 0 0 0 rgba(211, 59, 5, 0.7); } 50% { background-color: #ff4500; box-shadow: 0 0 15px 8px rgba(211, 59, 5, 0.6); } 100% { background-color: var(--accent); box-shadow: 0 0 0 0 rgba(211, 59, 5, 0); } } 
/* Hero Video */ .hero-video { width: 100%; background: #000; display: flex; justify-content: center; padding: 20px 0; } .video-container { position: relative; width: 90%; max-width: 1400px; } .video-container video { width: 100%; height: auto; display: block; border-radius: 4px; } .video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(18, 69, 75, 0.1); pointer-events: none; } 
/* Typografie */ h1 { font-size: clamp(1.8rem, 5vw, 3.5rem); color: var(--primary); text-transform: uppercase; margin-bottom: 15px; line-height: 1.1; } .accent-subtitle { color: var(--accent); font-size: clamp(1.2rem, 3vw, 2.2rem); text-transform: uppercase; font-weight: 300; margin-bottom: 30px; } h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 25px; text-transform: uppercase; } .section-title { color: var(--primary); border-left: 6px solid var(--accent); padding-left: 20px; } p { margin-bottom: 1.2rem; } 
/* Grid System */ .grid-row { display: flex; flex-direction: column; gap: 40px; align-items: center; } .media, .text { width: 100%; } .media img { width: 100%; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } 
/* Highlight Quote */ .highlight-quote { font-size: clamp(1.2rem, 3vw, 1.8rem); font-weight: 700; color: var(--primary); margin: 30px 0; border-left: 6px solid var(--accent); padding: 10px 25px; line-height: 1.4; } 
/* Comparison Cards */ .comparison-row { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; } .comp-item { padding: 30px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); flex: 1; } .status-label { display: block; font-size: 1.2rem; font-weight: 800; margin-bottom: 15px; text-transform: uppercase; color: var(--accent); } .status-label.accent { color: #1fb9cb; } 
/* Sport List */ .sport-list { list-style: none; margin-bottom: 40px; } .sport-list li { padding: 10px 0; border-bottom: 1px solid #eee; } .sport-list li::before { content: "• "; color: var(--accent); font-weight: bold; margin-right: 10px; } 
/* Requirement Boxes */ .requirement-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 30px; } .req-box { padding: 30px; border: 1px solid #ddd; border-radius: 4px; } .req-header { display: block; font-size: 1.3rem; margin-bottom: 15px; text-transform: uppercase; } .req-list { list-style: none; padding-left: 0; } .req-list li { position: relative; padding-left: 25px; margin-bottom: 10px; font-size: 1.1rem; line-height: 1.4; } .req-list li::before { content: "–"; position: absolute; left: 0; font-weight: bold; } .req-box.orange { border-color: var(--accent); background: rgba(211, 59, 5, 0.05); } .req-box.orange .req-header { color: var(--accent); } .req-box.green { border-color: var(--primary); background: rgba(18, 69, 75, 0.05); } .req-box.green .req-header { color: var(--primary); } 
/* Infoboxen */ .point-box { background: var(--white); padding: 40px; border: 1px solid #eee; margin: 30px 0; border-top: 8px solid var(--primary); color: #1a1a1a; box-shadow: 0 10px 30px rgba(0,0,0,0.05); } .outcome-box { background: var(--primary); color: var(--white); padding: 40px; border-radius: 4px; } .mt-20 { margin-top: 25px; } 
/* Format List */ .format-list { list-style: none; } .format-list li { padding: 15px 0; border-bottom: 1px solid #ddd; font-size: 1.2rem; } 
/* Data Grid */ .data-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; } .data-item { border-left: 4px solid var(--accent); padding-left: 20px; } .data-item span { display: block; text-transform: uppercase; font-size: 1.75rem; color: var(--accent); margin-bottom: 8px; font-weight: 700; } .data-item strong { color: var(--white); font-size: 1.25rem; display: block; line-height: 1.3; } 
/* Signup & Blinking Button Bottom */ .signup-flex { display: flex; flex-direction: column; background: var(--light); border-radius: 8px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.1); } .signup-img img { width: 100%; height: 100%; object-fit: cover; } .signup-content { padding: clamp(30px, 5vw, 60px); } .btn-wrapper { margin: 40px 0; } .btn-main { background: var(--accent); color: var(--white); padding: 20px 45px; text-decoration: none; font-weight: 800; display: inline-block; text-transform: uppercase; border-radius: 4px; transition: transform 0.2s; } .btn-blink { animation: pulse-animation 2s infinite; } @keyframes pulse-animation { 0% { transform: scale(1); background-color: var(--accent); } 50% { transform: scale(1.05); background-color: #f0460a; box-shadow: 0 0 20px 5px rgba(211, 59, 5, 0.4); } 100% { transform: scale(1); background-color: var(--accent); } } .btn-blink-header:hover, .btn-blink:hover { transform: scale(1.1) !important; animation: none; } .motto { border-top: 1px solid #ddd; padding-top: 25px; font-style: italic; opacity: 0.8; font-size: 1.1rem; } .instagram-logo-container { text-align: center; margin-top: 20px; } .instagram-logo { width: 60px; height: auto; display: inline-block; } 
/* Footer */
.site-footer {
  padding: 60px 0;
  background: #000;
  color: #fff;
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  width: 100%;
  padding: 0 15px; /* Schutzabstand zum Rand auf Handys */
  box-sizing: border-box;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* WICHTIG: Erlaubt Logos in die nächste Zeile zu springen */
  gap: 30px;
  width: 100%;
}

.foxyard-footer-logo {
  height: auto;
  max-height: 70px;
  max-width: 100%; /* Verhindert das Herausragen */
  border-radius: 2px;
  object-fit: contain;
}

.footer-logo img, 
.dsg-link img {
  height: auto;
  max-height: 80px;
  max-width: 100%; /* Verhindert das Herausragen */
  transition: opacity 0.3s;
  object-fit: contain;
}

.dsg-link:hover img {
  opacity: 0.8;
}

.impressum-wrapper {
  text-align: center;
  margin-top: 50px;
  width: 100%;
}

/* Optionale Handy-Anpassung für sehr kleine Bildschirme */
@media (max-width: 480px) {
  .footer-logos {
    gap: 20px; /* Kleinerer Abstand auf dem Handy */
  }
  
  .foxyard-footer-logo,
  .footer-logo img, 
  .dsg-link img {
    max-height: 60px; /* Logos etwas kleiner, damit mehr nebeneinander passt */
  }
}.impressum-toggle { cursor: pointer; text-decoration: underline; color: inherit; font-weight: 700; } .impressum-content { width: 75%; margin: 20px auto 0 auto; background: #ffffff; color: #000000; display: none; padding: 20px; box-sizing: border-box; } .impressum-content.open { display: block; } 
/* Desktop Settings */ @media (min-width: 992px) { .grid-row { flex-direction: row; align-items: stretch; } .grid-row.reverse-desktop { flex-direction: row-reverse; } .media, .text { width: 50%; } .comparison-row { flex-direction: row; } .requirement-grid { grid-template-columns: 1fr 1fr; } .signup-flex { flex-direction: row; } .signup-img, .signup-content { width: 50%; } .footer-grid { flex-direction: row; justify-content: space-between; text-align: left; } } 
/* FAQ & Contact Styles */ .faq-container { max-width: 900px; margin: 0 auto; } .faq-item { border-bottom: 1px solid #ddd; padding: 10px 0; } .faq-question { width: 100%; background: none; border: none; text-align: left; padding: 15px; font-size: 1.1rem; font-weight: bold; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: #333; } .faq-question::after { content: '+'; font-size: 1.5rem; transition: transform 0.3s; } .faq-item.active .faq-question::after { content: '−'; transform: rotate(180deg); } .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; padding: 0 15px; } .faq-item.active .faq-answer { max-height: 1000px; padding: 10px 15px 20px 15px; } .faq-table { width: 100%; margin-top: 10px; border-collapse: collapse; } .faq-table th, .faq-table td { text-align: left; padding: 8px; border-bottom: 1px solid #eee; } .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; max-width: 800px; margin: 0 auto; text-align: center; } .contact-item h3 { font-size: 1.2rem; margin-bottom: 10px; color: #ff5722; 
/* Akzentfarbe falls vorhanden */ } .contact-item p { margin: 5px 0; font-size: 1rem; }