:root {

    --primary: #ff5a1f;
    --primary-dark: #e64a19;

    --black: #111111;
    --white: #ffffff;

    --light: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #fff;
    color: #222;
}

.container {
    width: min(1200px, 90%);
    margin: auto;
}

.header {
    background: #111;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 80px;
}

.nav {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.nav a:hover {
    color: var(--primary);
}

.nav a.active {

    color: var(--primary);

    position: relative;
}

.nav a.active::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 100%;
    height: 2px;

    background: var(--primary);
}

.hero {

    min-height: 60vh;

    background: linear-gradient(
            rgba(0, 0, 0, .65),
            rgba(0, 0, 0, .65)
    ),
    url("../images/hero.png");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;

    color: white;
}

.hero h1 {

    font-size: 4rem;
    max-width: 700px;
}

.hero p {

    margin-top: 20px;
    font-size: 1.3rem;
}

.hero-buttons {

    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.btn {

    background: var(--primary);

    color: white;

    text-decoration: none;

    padding: 15px 30px;

    border-radius: 8px;

    font-weight: bold;
}

.btn-outline {

    background: transparent;

    border: 2px solid white;
}

.menu-toggle {

    display: none;

    background: none;
    border: none;

    color: white;

    font-size: 2rem;

    cursor: pointer;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    #mainNav {

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        background: #111;

        display: none;
    }

    #mainNav.active {
        display: block;
    }

    .nav {

        flex-direction: column;
        padding: 20px;
    }

    .nav li {
        margin-bottom: 15px;
    }
}

.news-section {

    padding: 80px 0;
}

.news-section h2 {

    text-align: center;
    margin-bottom: 40px;
}

.news-grid {

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;
}

.news-card {

    background: white;

    border-radius: 15px;

    padding: 25px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    transition: .3s;
}

.news-card:hover {

    transform: translateY(-5px);
}

.news-date {
    font-size: 0.8rem;
    opacity: 0.6;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 6px;
}

.news-text {
    margin-top: 8px;
    line-height: 1.5;
    color: #333;
}

.news-fulltext {
    margin-top: 15px;
}

.news-fulltext h3 {
    font-size: 1.1rem;
    margin: 18px 0 8px;
    color: #111;
}

.news-fulltext p {
    line-height: 1.6;
    margin-bottom: 12px;
    color: #333;
}

.news-fulltext ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.news-fulltext li {
    margin-bottom: 5px;
}

.read-more {
    margin-top: 10px;
    padding: 6px 12px;
    font-size: 0.85rem;
    border: 1px solid #ff5a1f;
    background: transparent;
    color: #ff5a1f;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.read-more:hover {
    background: #ff5a1f;
    color: white;
}

.modal, .lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    max-height: 85vh;
    overflow-y: auto;
}

.close {
    float: right;
    font-size: 28px;
    cursor: pointer;
}

.news-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.news-images img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.news-images img:hover {
    transform: scale(1.03);
}

.lightbox img {
    display: block;
    max-width: 90%;
    max-height: 90%;
    margin: 5% auto;
    border-radius: 10px;
}

.footer {

    background: #111;
    color: white;

    margin-top: 80px;
}

.footer-grid {

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(250px, 1fr));

    gap: 40px;

    padding: 60px 0;
}

.footer h3 {

    margin-bottom: 20px;

    color: var(--primary);
}

.footer ul {

    list-style: none;
}

.footer li {

    margin-bottom: 10px;
}

.footer a {

    color: white;
    text-decoration: none;
}

.footer a:hover {

    color: var(--primary);
}

.footer-bottom {

    text-align: center;

    padding: 20px;

    border-top: 1px solid #333;
}

.events-section {

    background: #f8f8f8;

    padding: 80px 0;
}

.events-section h2 {

    text-align: center;

    margin-bottom: 40px;
}

.event-item {

    background: white;

    padding: 20px;

    margin-bottom: 15px;

    border-left: 5px solid var(--primary);

    border-radius: 8px;
}

.event-item span {

    color: var(--primary);

    font-weight: bold;
}

.sponsors {

    padding: 80px 0;
}

.sponsors h2 {

    text-align: center;

    margin-bottom: 40px;
}

.sponsor-grid {

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(200px, 1fr));

    gap: 30px;
}

.sponsor-card {

    background: white;

    border-radius: 12px;

    padding: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);

    transition: .3s;
}

.sponsor-card:hover {

    transform: translateY(-5px);
}

.sponsor-card img {

    max-width: 100%;
    max-height: 80px;
}

.page-hero {

    background: linear-gradient(
            rgba(0, 0, 0, .75),
            rgba(0, 0, 0, .75)
    );

    color: white;

    text-align: center;

    padding: 100px 0;
}

.page-hero h1 {

    font-size: 3rem;
}


/* Trainer */

.trainer-section {

    padding: 70px 0;
}

.trainer-accordion {

    margin-bottom: 20px;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);

    background: white;
}

.trainer-accordion summary {

    padding: 18px 24px;

    cursor: pointer;

    background: var(--primary);

    color: white;

    font-size: 20px;

    font-weight: 600;
}

.trainer-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));

    gap: 25px;

    padding: 25px;
}

.trainer-card {

    display: flex;

    gap: 20px;

    background: #fafafa;

    border-radius: 12px;

    padding: 18px;

    align-items: center;

    border: 1px solid #ececec;
}

.trainer-photo {

    width: 90px;

    height: 90px;

    flex-shrink: 0;
}

.trainer-photo img {

    width: 100%;

    height: 100%;

    border-radius: 50%;

    object-fit: cover;
}

.trainer-content {

    flex: 1;
}

.trainer-content h3 {

    margin-bottom: 8px;
}

.trainer-content p {

    margin: 6px 0;
}

.trainer-content a {

    color: var(--primary);

    text-decoration: none;
}

.trainer-content a:hover {

    text-decoration: underline;
}

@media (max-width: 768px) {

    .trainer-card {

        flex-direction: column;

        text-align: center;

    }

}

/* DOWNLOADS */

.downloads-section {

    padding: 80px 0;
}

.search-box {

    width: 100%;

    padding: 15px;

    margin-bottom: 40px;

    border: 1px solid #ddd;

    border-radius: 10px;

    font-size: 1rem;
}

.download-category {

    margin-bottom: 60px;
}

.download-category h2 {

    margin-bottom: 25px;

    color: var(--primary);
}

.download-grid {

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(300px, 1fr));

    gap: 25px;
}

.download-card {

    background: white;

    border-radius: 15px;

    padding: 25px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.pdf-icon {

    width: 60px;
    height: 60px;

    border-radius: 12px;

    background: #ff5a1f;

    color: white;

    display: flex;

    justify-content: center;
    align-items: center;

    font-weight: bold;

    margin-bottom: 20px;
}

.download-card h3 {

    margin-bottom: 10px;
}

.download-card p {

    margin-bottom: 20px;

    min-height: 50px;
}

/* VEREIN */
.about-section {

    padding: 80px 0;
}

.about-logo {
    display: block;
    max-width: 280px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.about-grid {

    display: grid;

    grid-template-columns:
    1fr 1fr;

    gap: 50px;

    align-items: center;
}

.about-grid img {

    width: 100%;

    border-radius: 15px;
}

.facts-section {

    background: #111;

    color: white;

    padding: 80px 0;
}

.facts-grid {

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(220px, 1fr));

    gap: 30px;
}

.fact-card {

    text-align: center;
}

.fact-card h3 {

    font-size: 3rem;

    color: var(--primary);
}

.board-section,
.clubs-section,
.mission-section {

    padding: 80px 0;
}

.board-grid,
.clubs-grid,
.mission-grid {

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;
}

.board-card,
.club-card,
.mission-card {

    background: white;

    border-radius: 15px;

    overflow: hidden;

    padding: 25px;

    text-align: center;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.board-card img {

    width: 100%;

    object-fit: cover;
}

.board-role {

    color: var(--primary);

    font-weight: bold;

    margin: 10px 0;
}

.club-card img {

    max-height: 120px;

    max-width: 100%;
}

.club-card {

    text-decoration: none;

    color: inherit;
}

@media (max-width: 768px) {

    .about-grid {

        grid-template-columns:1fr;
    }
}

.legal-section {

    padding: 80px 0;
}

.legal-content {

    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {

    margin-top: 40px;
    margin-bottom: 15px;

    color: var(--primary);
}

.legal-content h3 {

    margin-top: 30px;
    margin-bottom: 10px;
}

.legal-content p,
.legal-content li {

    line-height: 1.8;
}

.legal-content ul {

    margin-left: 20px;
}

/* Teams */
.teams-toolbar {

    display: flex;
    flex-direction: column;
    gap: 25px;

    margin-bottom: 40px;
}

.team-search {

    width: 100%;

    padding: 14px 20px;

    border-radius: 10px;

    border: 1px solid #ddd;

    font-size: 16px;
}

.team-filter {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    justify-content: center;
}

.team-filter button {

    padding: 10px 20px;

    border-radius: 30px;

    border: none;

    cursor: pointer;

    background: #ececec;

    transition: .3s;
}

.team-filter button.active {

    background: var(--primary);

    color: white;
}

.team-filter button:hover {

    background: var(--primary);

    color: white;
}

.team-card{

    margin-bottom:22px;

    border-radius:14px;

    overflow:hidden;

    background:#fff;

    box-shadow:0 8px 22px rgba(0,0,0,.08);

}

.team-image {

    margin-bottom:25px;
}

.team-image img {

    width:100%;

    height:260px;

    object-fit:cover;

    border-radius:12px;
}

.team-content{

    padding:30px;

    animation:fadeTeam .25s ease;

}

.team-summary{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 28px;

    cursor:pointer;

    list-style:none;

    background:var(--primary);

    color:#fff;

}

.team-summary::-webkit-details-marker{

    display:none;

}

.team-summary::after{

    content:"+";

    font-size:30px;

    font-weight:bold;

    transition:.3s;

}

.team-card[open] .team-summary::after{

    transform:rotate(45deg);

}

.team-summary h2{

    margin:0;

    color:#fff;

}

.team-summary span{

    opacity:.9;

}

.team-years{

    font-weight:600;

}

.league {

    color: var(--primary);

    font-weight: bold;

    margin-bottom: 15px;
}

.staff-list{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-top:15px;

    margin-bottom:30px;

}

.staff-item{

    display:flex;

    align-items:center;

    gap:18px;

    padding:16px;

    border:1px solid #e7e7e7;

    border-radius:12px;

    background:#fafafa;

    transition:.25s;

}

.staff-item:hover{

    box-shadow:0 6px 18px rgba(0,0,0,.08);

    transform:translateY(-2px);

}

.staff-photo{

    width:72px;

    height:72px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid var(--primary);

    flex-shrink:0;

}

.staff-info{

    flex:1;

}

.staff-info h4{

    margin:0 0 5px;

    font-size:18px;

}

.staff-role{

    color:var(--primary);

    font-weight:600;

    margin-bottom:6px;

}

.staff-license{

    font-size:14px;

    color:#666;

    margin-bottom:10px;

}

.staff-contact{

    display:flex;

    flex-direction:column;

    gap:5px;

}

.staff-contact a{

    text-decoration:none;

    color:#444;

    font-size:15px;

}

.staff-contact a:hover{

    color:var(--primary);

}

@media (max-width:768px){

    .staff-item{

        flex-direction:column;

        text-align:center;

    }

    .team-summary{

        flex-direction:column;

        align-items:flex-start;

        gap:10px;

    }


}

.training-table {

    width: 100%;

    border-collapse: collapse;

    margin-top: 15px;
}

.training-table th {

    background: #222;

    color: white;

    padding: 10px;
}

.training-table td {

    padding: 10px;

    border-bottom: 1px solid #eee;
}

.team-buttons {

    margin-top: 30px;

    display: flex;

    gap: 15px;
}

.form-section{

    padding:70px 0;

}

.form-card{

    background:white;

    border-radius:18px;

    padding:40px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.form-card h2{

    margin-bottom:15px;

}

.form-card p{

    margin-bottom:30px;

    line-height:1.7;

}

.form-wrapper{

    position:relative;

    width:100%;

    height:1400px;

    overflow:hidden;

    border-radius:12px;

}

.form-wrapper iframe{

    width:100%;

    height:100%;

    border:none;

}

@media (max-width: 768px) {

    .staff-item {

        flex-direction: column;

        gap: 5px;

    }

    .form-card{

        padding:20px;

    }

    .form-wrapper{

        height:1800px;

    }

}

.no-result{

    padding:40px;

    text-align:center;

    font-size:18px;

    color:#666;

}

@keyframes fadeTeam{

    from{

        opacity:0;

        transform:translateY(-8px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
