/* CSS für die Navigation (navigation.css) */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    /* Wichtig: Padding für den fixed Header */
    padding-top: 80px;
}

/* Header Navigation */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 50px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: #ff0000; /* Rot */
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: #ff0000; /* Rot */
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #ff0000;
}

.shop-button {
    flex-shrink: 0;
}

.shop-btn {
    background: #ff0000;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.shop-btn:hover {
    background-color: #fff;
    color: #000;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1920" height="1080" fill="%23333"><rect width="1920" height="1080" fill="%23222"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-btn {
    background: #ff0000;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    transition: transform 0.3s;
}

.hero-btn:hover {
    transform: scale(1.05);
}

/* Sponsors */
.sponsors {
    background: #f5f5f5;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.sponsor-logo {
    height: 40px;
    width: 120px;
    background: #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: bold;
}

/* News Section */
.news-section {
    padding: 80px 50px;
    background: #fff;
    color: #000;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-arrows {
    display: flex;
    gap: 10px;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    background: #ff0000;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: #000;
    color: #fff;
    overflow: hidden;
}

.news-image {
    height: 250px;
    background: #333;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.news-content {
    padding: 30px;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.news-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #ccc;
}

.learn-more-btn {
    background: #ff0000;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
}

/* Statistics Section */
.stats-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.stats-left {
    background: #000;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-right {
    background: #ff0000;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.welcome-text {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 40px;
}

.trophy-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #ff0000;
}

.trophy-text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.big-number {
    font-size: 8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.years-text {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.mission-text {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.mission-text .highlight {
    color: #ff0000;
}

/* Matches Section */
.matches-section {
    background: #000;
    padding: 80px 50px;
}

.next-match {
    text-align: center;
    margin-bottom: 60px;
}

.match-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.match-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.match-teams {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.team-logo {
    font-size: 3rem;
    font-weight: 900;
    color: #ff0000;
}

.vs {
    font-size: 2rem;
    color: #666;
}

.match-opponent {
    color: #ff6600;
}

.previous-matches {
    margin-top: 60px;
}

.previous-title {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.matches-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.match-row {
    display: grid;
    grid-template-columns: 50px 200px 300px 100px 50px 200px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.win-indicator {
    width: 30px;
    height: 30px;
    background: #00ff00;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.team-name {
    font-weight: bold;
}

.match-info {
    color: #666;
    font-size: 14px;
}

.score {
    font-weight: bold;
    text-align: center;
}

/* Merch Section */
.merch-section {
    background: #fff;
    color: #000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.merch-image {
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.merch-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.merch-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 30px;
}

.merch-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 40px;
}

.shop-now-btn {
    background: #ff0000;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    display: inline-block;
    width: fit-content;
}

/* Join Section */
.join-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.join-left {
    background: #ff0000;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.join-right {
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.join-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 40px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    color: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #000;
    padding: 40px 50px;
    border-top: 1px solid #333;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
}

.footer-nav a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.footer-social {
    width: 40px;
    height: 40px;
    background: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #ff0000;
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;