/* ALLGEMEIN */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
    text-align: center;
}

.wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* HEADER & LOGOS */
.main-header {
    background-color: #fcfcfc;
    border-bottom: 4px solid #ff0000;
    padding-top: 20px;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.header-logo {
    max-height: 120px;
    width: auto;
}

.title-box h1 {
    color: #ff0000;
    font-size: 1.6rem;
    margin: 0;
}

/* NAVIGATION */
.main-nav {
    background: #333;
    margin-top: 20px;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.main-nav li a {
    display: block;
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    font-weight: bold;
}

.main-nav li a:hover {
    background: #ff0000;
}

/* INHALTE */
.intro-section {
    padding: 30px 0;
}

.highlight-text {
    font-family: "Comic Sans MS", cursive; /* Erhält den alten Charme */
    color: #ff0000;
    font-size: 1.2rem;
    font-weight: bold;
}

.email-button {
    background: #ff0000;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
}

.red-divider {
    border: 0;
    height: 2px;
    background: #ff0000;
    margin: 40px 0;
}

/* TABELLE & GRUPPEN */
.training-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.groups-box {
    border: 2px solid #ff0000;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
}

.times-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 500px;
}

.times-table th, .times-table td {
    border: 1px solid #ccc;
    padding: 10px;
}

.times-table th {
    background: #ff0000;
    color: white;
}

/* BERICHTE */
.report-item {
    margin-bottom: 60px;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
}

.report-item h3 {
    color: #ff0000;
    text-decoration: underline;
    font-size: 1.5rem;
}

.report-img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.press-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.thumb {
    width: 150px;
    border: 1px solid #ccc;
}

/* FOOTER */
.main-footer {
    background: #f4f4f4;
    padding: 40px 20px;
    margin-top: 50px;
}

.sponsor-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.sponsor-grid img {
    max-height: 80px;
}

.disclaimer {
    font-size: 0.8rem;
    color: #666;
    max-width: 600px;
    margin: 20px auto;
}

.big-button {
    display: inline-block;
    background: #333;
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 8px;
    border-bottom: 4px solid #ff0000;
}

/* MOBILE */
@media (max-width: 600px) {
    .main-nav ul { flex-direction: column; }
    .header-content { flex-direction: column; }
}