/* Reset und Basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - TV08 Stil */
.header {
    background: #1a365d;
    color: white;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Navigation */
.main-nav {
    display: flex;
    gap: 5px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 4px;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255,255,255,0.15);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #3182ce 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-text {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: 0.95;
    line-height: 1.6;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #e53e3e;
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(229,62,62,0.4);
}

.btn-primary:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229,62,62,0.5);
}

/* News Section */
.news {
    padding: 80px 0;
    background: #f7fafc;
}

.news h2,
.training h2,
.teams h2,
.contact h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1a365d;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.news h2::after,
.training h2::after,
.teams h2::after,
.contact h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #e53e3e;
    border-radius: 2px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3182ce;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.news-date {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.news-card h3 {
    color: #1a365d;
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 600;
}

.news-card p {
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.read-more:hover {
    color: #2c5282;
}

/* Training Section */
.training {
    padding: 80px 0;
    background: white;
}

.training-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 50px;
    color: #4a5568;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.training-card {
    background: #f7fafc;
    padding: 35px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.training-card:hover {
    border-color: #3182ce;
    box-shadow: 0 4px 15px rgba(49,130,206,0.15);
    transform: translateY(-3px);
}

.training-card h3 {
    color: #1a365d;
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 600;
}

.age {
    color: #e53e3e;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: inline-block;
    background: #fed7d7;
    padding: 4px 12px;
    border-radius: 20px;
}

.time {
    color: #3182ce;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.time-detail {
    color: #1a365d;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.coach {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #4a5568;
    font-style: italic;
}

.location {
    color: #718096;
    font-size: 0.9rem;
    margin-top: 8px;
}

/* Teams Section */
.teams {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
}

.teams h2 {
    color: white;
}

.teams h2::after {
    background: #e53e3e;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: white;
    color: #1a365d;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.team-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.team-result {
    margin-top: 10px;
    color: #e53e3e;
    font-weight: 600;
}

.team-spirit {
    margin-top: 8px;
    color: #4a5568;
    font-style: italic;
}

.team-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #1a365d;
}

.team-card p {
    color: #4a5568;
    margin-bottom: 5px;
}

.team-coach {
    margin-top: 12px;
    font-weight: 500;
    color: #3182ce !important;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f7fafc;
}

.contact h2 {
    color: #1a365d;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-info h3,
.contact-cta h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: #1a365d;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-cta {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(49,130,206,0.3);
}

.contact-cta h3 {
    color: white;
}

.contact-cta p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-cta strong {
    color: #bee3f8;
}

/* Footer */
.footer {
    background: #1a202c;
    color: #a0aec0;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
}

.footer-links a {
    color: #63b3ed;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #90cdf4;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .main-nav {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .main-nav a {
        padding: 8px 14px;
        font-size: 0.9rem;
    }
    
    .header .container {
        flex-direction: column;
        padding: 15px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
}
