/* ===============================
   Farb-Konzept (Corporate Identity)
   =============================== */
:root {
    --primary-red: #b22222;
    --primary-gold: #f2c94c;

    --neutral-light: #f5f5f5;
    --neutral-dark: #222222;

    --sport-badminton: #1abc9c;
    --sport-tischtennis: #2980b9;
    --sport-wingchun: #e67e22;
}

/* ===============================
   Grundlayout
   =============================== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: var(--neutral-light);
    color: var(--neutral-dark);
}


/* ===============================
   Hero
   =============================== */
.hero {
    height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.container {
    padding: 40px;
    max-width: 1100px;
    margin: auto;
}

h1 {
    color: var(--primary-gold);
    margin-bottom: 15px;
}

h2 {
    color: var(--primary-red);
    margin-bottom: 10px;
}



/* ===============================
   Sportarten-Boxen
   =============================== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.sport {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.12);
    border-left: 10px solid;
}

/* Farbakzente pro Sportart */
#federball { border-color: var(--sport-badminton); }
#tischtennis { border-color: var(--sport-tischtennis); }
#wingchun { border-color: var(--sport-wingchun); }



.box {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}


.button {
    display: inline-block;
    background-color: var(--primary-red);
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.button:hover {
    background-color: var(--primary-gold);
    color: black;
}

