:root {
    --color-primary: #173C83;
    --color-secondary: #A0B7E3;
    --color-light: #E0E0D4;
    --color-dark: #0C1D35;
    --color-gray: #BABCBE;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hanken Grotesk', sans-serif;
    line-height: 1.6;
    background-color: #000;
}

/* Header & Navigation */
.top-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #fff;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}

.back-button {
    padding: 0.5rem 1rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: var(--color-secondary);
}

/* Hero Section */
.hero-section {
    padding: 120px 2rem 12px;
    text-align: center;
    color: white;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}


/* Training Grid */
.training-grid {
    max-width: 1400px;
    margin: 12px auto;
    padding: 0 2rem;
}

.training-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
}

/* Container für Herren Teams */
.herren-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.row {
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
    height: 100%;
}

/* Spezifische Styles für die verschiedenen Reihen */
.row:first-child {
    background: var(--color-light);
    color: var(--color-dark);
    margin-bottom: 2rem;
}

/* Herren Teams Styling */
.herren-container .row {
    margin-bottom: 0;
}

.herren-container .row:nth-child(1) {
    background: var(--color-gray);
    color: var(--color-dark);
    margin-bottom: 0;
}

.herren-container .row:nth-child(2) {
    background: var(--color-secondary);
    color: var(--color-dark);
}

.column {
    flex: 1;
}

.column:first-child {
    flex: 0 0 300px;
}

.column img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.column h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.dayoftraining {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    color: inherit;
}

.timeoftraining {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.whichteam {
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1rem;
    opacity: 0.7;
}

/* CTA Section */
.cta-section {
    background-color: var(--color-light);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-dark);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--color-dark);
}

/* Footer Styles */
.footer-container {
    height: 500px;
    background: black;
    display: flex;
    flex-direction: column;
    padding: 2em;
}

.logo-container {
    height: auto;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    margin-top: 25px;
}

.saldenburg-logo {
    height: 50px;
    display: flex;
    align-items: center;
}

.saldenburg-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.saldenburg-text {
    color: #fff;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: white;
    margin: 1em 0;
}

.footer-copy {
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.footer-container a {
    text-decoration: none;
    color: #fff;
}

.Veit-Advertisement {
    width: 100%;
    text-align: center;
    color: #fff;
    margin-top: 200px;
}

.veit-link {
    text-decoration: underline !important;
    color: var(--color-secondary) !important;
}

.pulse-emoji {
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Spezielle Positionierung und Styling für die Jugendkarte */
.training-card:nth-child(3) {
    grid-column: 1 / -1;
    grid-row: 1;
    background: var(--color-light);
    padding: 3rem;
}

/* Herren 1 und 2 in der zweiten Reihe */
.training-card:nth-child(1) {
    grid-row: 2;
    color: white;
}

.training-card:nth-child(2) {
    grid-row: 2;
    background: var(--color-secondary);
}

/* Training Times Layout */
.training-times {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.training-day {
    margin-bottom: 1.5rem;
}

.day {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: inherit;
}

.time {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.age-group {
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.location {
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Responsive Anpassungen */
@media (max-width: 1200px) {
    .herren-container {
        grid-template-columns: 1fr;
    }
    
    .herren-container .row {
        margin-bottom: 2rem;
    }
    
    .herren-container .row:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .row {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }

    .column:first-child {
        flex: 1;
    }

    .column img {
        height: 200px;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .training-times {
        grid-template-columns: 1fr;
    }
} 