@charset "UTF-8";

/* ==========================================
   BC TreVpunt 2026
   Hoofdstylesheet
========================================== */


/* ==========================================
   ALGEMEEN
========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    background: #0f2d5c;
    color: #ffffff;
    line-height: 1.6;
}


/* ==========================================
   HEADER
========================================== */

header {
    padding: 16px 20px;
    background: #0f2d5c;
    text-align: center;
}

.logo {
    display: block;
    width: 100%;
    max-width: 720px;
    height: auto;
    margin: 0 auto;
    padding: 10px 18px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}


/* ==========================================
   HOOFDMENU
========================================== */

body > nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px 20px;
    background: #0f2d5c;
}

body > nav a {
    display: block;
    padding: 12px 22px;
    background: #ffffff;
    color: #0f2d5c;
    border: 2px solid #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

body > nav a:hover,
body > nav a:focus-visible {
    background: #b30000;
    color: #ffffff;
    border-color: #b30000;
}


/* ==========================================
   HOOFDINHOUD
========================================== */

main {
    width: calc(100% - 40px);
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
}

main h2 {
    margin-bottom: 20px;
    color: #ffffff;
}

main h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #ffd700;
}

main p {
    margin-bottom: 16px;
}


/* ==========================================
   LINKS IN DE HOOFDINHOUD
========================================== */

main a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: bold;
}

main a:hover,
main a:focus-visible {
    color: #ffd700;
}


/* ==========================================
   ALGEMENE KNOPPEN
========================================== */

.button,
.knop {
    display: inline-block;
    padding: 12px 26px;
    background: #b30000;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.button {
    margin-top: 10px;
}

.button:hover,
.button:focus-visible,
.knop:hover,
.knop:focus-visible {
    background: #2b5d9a;
    color: #ffffff;
}

.actieknoppen {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 35px 0 20px;
}

.actieknoppen .knop {
    min-width: 190px;
    padding: 12px 20px;
    text-align: center;
}


/* ==========================================
   FOOTER
========================================== */

footer {
    margin-top: 40px;
    padding: 20px;
    background: #111111;
    color: #ffffff;
    text-align: center;
}

footer p {
    margin-bottom: 8px;
}

footer p:last-child {
    margin-bottom: 0;
}

footer a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover,
footer a:focus-visible {
    color: #ffffff;
    text-decoration: underline;
}


/* ==========================================
   HOMEPAGINA
========================================== */

.welkom,
.homeblok,
.nieuwe-leden {
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
}

.welkom h2 {
    margin-bottom: 20px;
    color: #ffd700;
    font-size: 2rem;
}

.homeblok h3,
.nieuwe-leden h3 {
    margin-bottom: 18px;
    color: #ffd700;
    font-size: 1.45rem;
}

.welkom p,
.homeblok p,
.nieuwe-leden p {
    max-width: 700px;
    margin: 0 auto 18px;
    line-height: 1.8;
}

.homeblok,
.nieuwe-leden {
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.nieuwe-leden {
    margin-bottom: 20px;
}


/* ==========================================
   SPEELDAGENOVERZICHT
========================================== */

.speeldagen-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.speeldagen-grid a {
    display: block;
    padding: 18px 10px;
    background: #ffffff;
    color: #0f2d5c;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.speeldagen-grid a:hover,
.speeldagen-grid a:focus-visible {
    background: #2b5d9a;
    color: #ffffff;
}


/* ==========================================
   LIGAKALENDER
========================================== */

.kalender-sectie {
    margin-top: 35px;
}

.kalender-wrapper {
    width: 100%;
    margin-top: 18px;
    overflow-x: auto;
}

.kalender {
    width: 100%;
    min-width: 720px;
    background: #ffffff;
    color: #222222;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
}

.kalender th,
.kalender td {
    padding: 12px 14px;
    border-bottom: 1px solid #d6d6d6;
    text-align: left;
    vertical-align: middle;
}

.kalender th {
    background: #b30000;
    color: #ffffff;
}

.kalender tbody tr:nth-child(even) {
    background: #f2f5f9;
}

.kalender tbody tr:hover {
    background: #e1e9f3;
}

.kalender .vakantie {
    background: #fff1c7;
    font-style: italic;
}

.kalender .activiteit {
    background: #dcecff;
    font-weight: bold;
}


/* ==========================================
   SPEELDAGPAGINA
========================================== */

.speeldag-kop {
    margin-bottom: 30px;
    padding: 25px;
    background: #ffffff;
    color: #222222;
    border-left: 6px solid #b30000;
    border-radius: 8px;
}

.speeldag-kop h2 {
    margin-bottom: 12px;
    color: #0f2d5c;
}

.speeldag-kop p {
    margin-bottom: 8px;
}

.speeldag-kop p:last-child {
    margin-bottom: 0;
}

.seizoen {
    color: #b30000;
    font-weight: bold;
    text-transform: uppercase;
}


/* ==========================================
   KLASSEMENTSECTIES
========================================== */

.klassement {
    margin: 35px 0 0;
}

.klassement h3 {
    margin-top: 0;
}

.tabel-wrapper {
    width: 100%;
    margin-top: 15px;
    overflow-x: auto;
}


/* ==========================================
   RESULTATENTABELLEN
========================================== */

.resultatentabel {
    width: 100%;
    min-width: 650px;
    background: #ffffff;
    color: #222222;
    border-collapse: collapse;
}

.resultatentabel th,
.resultatentabel td {
    padding: 12px;
    border-bottom: 1px solid #d6d6d6;
    vertical-align: middle;
}

.resultatentabel th {
    background: #c00000;
    color: #ffffff;
}

.resultatentabel tbody tr:nth-child(even) {
    background: #eef2f7;
}

.resultatentabel tbody tr:hover {
    background: #dfe8f4;
}


/* ==========================================
   SCORETABEL
========================================== */

.scoretabel th:first-child,
.scoretabel td:first-child {
    text-align: left;
    padding-left: 32px;      /* <-- Naam verder naar binnen */
}

.scoretabel th:nth-child(n + 2),
.scoretabel td:nth-child(n + 2) {
    text-align: center;
}


/* ==========================================
   KLASSEMENTTABEL
========================================== */

/* Plaats */

.klassementtabel th:first-child,
.klassementtabel td:first-child {
    text-align: center;
}

/* Naam */

.klassementtabel th:nth-child(2),
.klassementtabel td:nth-child(2) {
    text-align: left;
    padding-left: 32px;      /* <-- Namen verder naar binnen */
}

/* Overige kolommen */

.klassementtabel th:nth-child(n + 3),
.klassementtabel td:nth-child(n + 3) {
    text-align: center;
}
/* ==========================================
   NAVIGATIE TUSSEN SPEELDAGEN
========================================== */

.speeldag-navigatie {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin: 40px 0 0;
    padding: 0;
    background: transparent;
}

.speeldag-navigatie a {
    display: block;
    padding: 12px 18px;
    background: #ffffff;
    color: #0f2d5c;
    border: 2px solid #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.speeldag-navigatie a:hover,
.speeldag-navigatie a:focus-visible {
    background: #b30000;
    color: #ffffff;
    border-color: #b30000;
}


/* ==========================================
   LEDENLIJST
========================================== */

.ledentabel {
    width: 100%;
    min-width: 650px;
    margin-top: 20px;
    background: #ffffff;
    color: #222222;
    border-collapse: collapse;
}

.ledentabel th,
.ledentabel td {
    padding: 12px 14px;
    border-bottom: 1px solid #d6d6d6;
    vertical-align: middle;
}

.ledentabel th {
    background: #b30000;
    color: #ffffff;
}

.ledentabel tbody tr:nth-child(even) {
    background: #f2f5f9;
}

.ledentabel tbody tr:hover {
    background: #e1e9f3;
}

/* Naam en voornaam links uitlijnen */

.ledentabel th:nth-child(1),
.ledentabel td:nth-child(1),
.ledentabel th:nth-child(2),
.ledentabel td:nth-child(2) {
    text-align: left;
}

/* Lidnummer, Licentie, AVG en Categorie centreren */

.ledentabel th:nth-child(n + 3),
.ledentabel td:nth-child(n + 3) {
    text-align: center;
}


/* ==========================================
   PAGINA THE PINZ
========================================== */

.foto-thepinz {
    display: block;
    width: 50%;
    max-width: 650px;
    height: auto;
    margin: 25px auto 35px;
    border: 3px solid #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.routeknop {
    margin: 30px 0;
    text-align: center;
}

.routeknop .knop {
    padding: 12px 24px;
}

.thuisbasis {
    max-width: 700px;
    margin: 45px auto 10px;
    text-align: center;
}

.thuisbasis h3 {
    margin: 0 0 18px;
    color: #ffd700;
    font-size: 1.35rem;
}

.thuisbasis p {
    max-width: 620px;
    margin: 0 auto 16px;
    color: #ffffff;
    line-height: 1.8;
}

.logo-thepinz {
    display: block;
    width: 120px;
    max-width: 100%;
    height: auto;
    margin: 25px auto 0;
}


/* ==========================================
   TABLET EN SMARTPHONE
========================================== */

@media (max-width: 768px) {

    header {
        padding: 12px;
    }

    .logo {
        padding: 8px 12px;
    }

    body > nav {
        flex-direction: column;
        padding: 10px 20px;
    }

    body > nav a {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    main {
        width: calc(100% - 24px);
        margin: 20px auto;
        padding: 20px;
    }

    .speeldagen-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kalender th,
    .kalender td {
        padding: 10px;
        font-size: 0.9rem;
    }

    .welkom h2 {
        font-size: 1.7rem;
    }

    .homeblok h3,
    .nieuwe-leden h3 {
        font-size: 1.3rem;
    }

    .button {
        width: 220px;
        text-align: center;
    }

    .foto-thepinz {
        width: 90%;
    }

    .thuisbasis {
        margin-top: 35px;
    }

    .logo-thepinz {
        width: 105px;
    }
}


/* ==========================================
   KLEINE SMARTPHONES
========================================== */

@media (max-width: 600px) {

    main {
        width: calc(100% - 16px);
        padding: 15px;
    }

    .speeldag-kop {
        padding: 20px;
    }

    .klassement {
        margin-right: 0;
        margin-left: 0;
    }

    .speeldag-navigatie {
        flex-direction: column;
        margin-right: 0;
        margin-left: 0;
        text-align: center;
    }

    .speeldag-navigatie a {
        width: 100%;
    }
}


/* ==========================================
   ZEER KLEINE SMARTPHONES
========================================== */

@media (max-width: 420px) {

    .speeldagen-grid {
        grid-template-columns: 1fr;
    }

    main h2 {
        font-size: 1.5rem;
    }

    main h3 {
        font-size: 1.2rem;
    }
}

/* ==========================================
   CORRECTIE HOVERKLEUREN INTERTEAMS
========================================== */

/* Voorkomt dat de algemene gele linkkleur de knoppen overneemt. */
main .navigatie a:hover,
main .navigatie a:focus-visible {
    background: #dce7f5;
    color: #0f2d5c;
    text-decoration: none;
}

main .document-knop:hover,
main .document-knop:focus-visible,
main .hoofdknoop:hover,
main .hoofdknoop:focus-visible,
main .klassement-link:hover,
main .klassement-link:focus-visible {
    color: #ffffff;
    text-decoration: none;
}
/* ==========================================
   PROFESSIONELE HOMEPAGINA
========================================== */

/* Actieve menuknop */

body > nav a.actief {
    background: #b30000;
    color: #ffffff;
    border-color: #b30000;
}


/* ==========================================
   HERO / WELKOM
========================================== */

.hero {
    max-width: 1000px;
    margin: 0 auto 45px;
    padding: 55px 45px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.14),
        rgba(255, 255, 255, 0.04)
    );
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.hero-bovenlijn,
.blok-label {
    margin-bottom: 10px;
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 2.8rem;
    line-height: 1.2;
}

.hero-tekst {
    max-width: 720px;
    margin: 0 auto 14px;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
}

.hero > p:not(.hero-bovenlijn):not(.hero-tekst) {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
}

.hero-knoppen {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.hero-knoppen .button {
    margin-top: 0;
}

.button-secundair {
    background: #ffffff;
    color: #0f2d5c;
}

main .button-secundair:hover,
main .button-secundair:focus-visible {
    background: #ffd700;
    color: #0f2d5c;
}


/* ==========================================
   KAARTEN OP DE HOMEPAGINA
========================================== */

.home-overzicht {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 auto 45px;
}

.homekaart {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 30px 26px;
    background: #ffffff;
    color: #222222;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
    text-align: center;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.homekaart:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 28px rgba(0, 0, 0, 0.32);
}

.home-icoon {
    margin-bottom: 14px;
    font-size: 2.6rem;
    line-height: 1;
}

.homekaart h2 {
    margin-bottom: 14px;
    color: #0f2d5c;
    font-size: 1.45rem;
}

.homekaart p {
    margin-bottom: 18px;
}

.homekaart .adres {
    margin-top: auto;
    padding: 12px;
    background: #eef3f9;
    border-radius: 8px;
}

main .tekstlink {
    display: inline-block;
    margin-top: auto;
    color: #b30000;
    text-decoration: none;
    font-weight: bold;
}

main .tekstlink:hover,
main .tekstlink:focus-visible {
    color: #0f2d5c;
    text-decoration: underline;
}


/* ==========================================
   VOLGENDE ACTIVITEIT
========================================== */

.activiteit-blok {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0 auto 45px;
    padding: 34px;
    background: #ffffff;
    color: #222222;
    border-left: 8px solid #b30000;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
}

.activiteit-datum {
    flex: 0 0 125px;
    padding: 18px 12px;
    background: #b30000;
    color: #ffffff;
    border-radius: 12px;
    text-align: center;
}

.activiteit-dag,
.activiteit-maand {
    display: block;
}

.activiteit-dag {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}

.activiteit-maand {
    margin-top: 7px;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.activiteit-inhoud {
    flex: 1;
}

.activiteit-inhoud h2 {
    margin-bottom: 10px;
    color: #0f2d5c;
}

.activiteit-inhoud .blok-label {
    color: #b30000;
}

.activiteit-inhoud p {
    margin-bottom: 12px;
}

.activiteit-inhoud .button {
    margin-top: 8px;
}


/* ==========================================
   LAATSTE NIEUWS
========================================== */

.nieuwsblok {
    margin: 0 auto 45px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
}

.nieuwsblok > h2 {
    margin-bottom: 20px;
    color: #ffffff;
}

.nieuwsbericht {
    padding: 26px;
    background: #ffffff;
    color: #222222;
    border-radius: 10px;
}

.nieuwsdatum {
    margin-bottom: 6px;
    color: #b30000;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
}

.nieuwsbericht h3 {
    margin: 0 0 12px;
    color: #0f2d5c;
}


/* ==========================================
   NIEUWE LEDEN
========================================== */

.leden-oproep {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin: 0 auto 45px;
    padding: 38px;
    background: #ffd700;
    color: #222222;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
}

.leden-oproep-tekst {
    flex: 1;
}

.leden-oproep .blok-label {
    color: #b30000;
}

.leden-oproep h2 {
    margin-bottom: 12px;
    color: #0f2d5c;
}

.leden-oproep p {
    margin-bottom: 10px;
}

.leden-oproep-knop {
    flex: 0 0 auto;
}

.leden-oproep-knop .button {
    margin-top: 0;
}


/* ==========================================
   FACEBOOK
========================================== */

.facebookblok {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0 auto 45px;
    padding: 34px;
    background: #ffffff;
    color: #222222;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
}

.facebook-icoon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 82px;
    width: 82px;
    height: 82px;
    background: #1877f2;
    color: #ffffff;
    border-radius: 50%;
    font-family: Arial, sans-serif;
    font-size: 3.3rem;
    font-weight: bold;
    line-height: 1;
}

.facebook-inhoud h2 {
    margin-bottom: 10px;
    color: #0f2d5c;
}

.facebook-inhoud p {
    margin-bottom: 8px;
}

.facebook-naam {
    color: #1877f2;
    font-weight: bold;
}


/* ==========================================
   PARTNERS
========================================== */

.partnersblok {
    margin: 0 auto 20px;
    padding: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    text-align: center;
}

.partnersblok h2 {
    margin-bottom: 14px;
    color: #ffffff;
}

.partnersblok > p {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
}

.partners-melding {
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-style: italic;
}


/* ==========================================
   HOMEPAGINA OP TABLET
========================================== */

@media (max-width: 900px) {

    .home-overzicht {
        grid-template-columns: 1fr;
    }

    .homekaart {
        min-height: auto;
    }
}


/* ==========================================
   HOMEPAGINA OP SMARTPHONE
========================================== */

@media (max-width: 768px) {

    .hero {
        padding: 38px 24px;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .hero-tekst {
        font-size: 1.1rem;
    }

    .hero-knoppen {
        flex-direction: column;
        align-items: center;
    }

    .hero-knoppen .button {
        width: 100%;
        max-width: 280px;
    }

    .activiteit-blok {
        flex-direction: column;
        align-items: stretch;
        padding: 26px;
        text-align: center;
    }

    .activiteit-datum {
        flex: none;
        width: 125px;
        margin: 0 auto;
    }

    .leden-oproep {
        flex-direction: column;
        padding: 28px;
        text-align: center;
    }

    .leden-oproep-knop {
        width: 100%;
    }

    .leden-oproep-knop .button {
        width: 100%;
        max-width: 280px;
    }

    .facebookblok {
        flex-direction: column;
        padding: 28px;
        text-align: center;
    }
}


/* ==========================================
   HOMEPAGINA OP KLEINE SMARTPHONE
========================================== */

@media (max-width: 480px) {

    .hero {
        padding: 30px 18px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .homekaart,
    .activiteit-blok,
    .nieuwsblok,
    .leden-oproep,
    .facebookblok,
    .partnersblok {
        padding: 22px 18px;
    }

    .facebook-icoon {
        flex-basis: 68px;
        width: 68px;
        height: 68px;
        font-size: 2.7rem;
    }
}

/* ==========================================
   VOLLEDIG KLIKBARE FACEBOOKKAART
========================================== */

main .facebook-link {
    display: block;
    color: inherit;
    text-decoration: none;
    border-radius: 14px;
}

main .facebook-link:hover,
main .facebook-link:focus-visible {
    color: inherit;
    text-decoration: none;
}

.facebook-link .facebookblok {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    cursor: pointer;
}

.facebook-link:hover .facebookblok,
.facebook-link:focus-visible .facebookblok {
    transform: translateY(-4px);
    box-shadow: 0 13px 28px rgba(0, 0, 0, 0.32);
}

.facebook-link:focus-visible {
    outline: 3px solid #ffd700;
    outline-offset: 4px;
}
/* Sponsors */

.sponsors-intro {
    margin-bottom: 35px;
}

.sponsor-card {
    display: flex;
    align-items: center;
    gap: 55px;
    max-width: 900px;
    min-height: 0;
    margin: 35px auto;
    padding: 30px;
    background: white;
    color: #222;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.sponsor-afbeelding {
    flex: 1 1 52%;
}

.sponsor-afbeelding img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.sponsor-info {
    flex: 1 1 48%;
    text-align: left;
}

.sponsor-info h2 {
    margin: 0 0 12px;
    color: #0f2d5c;
    font-size: 2.2rem;
}

.sponsor-info h3 {
    margin: 0 0 18px;
    color: #0f2d5c;
    font-size: 1.25rem;
}

.sponsor-info hr {
    margin: 0 0 24px;
    border: 0;
    border-top: 2px solid #0f2d5c;
}

.sponsor-info p {
    color: #222;
    line-height: 1.6;
}

.sponsor-adres {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.sponsor-icoon {
    font-size: 1.3rem;
}

.sponsor-telefoon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 150px;
    margin-top: 10px;
    padding: 9px 14px;
    background: #0f2d5c;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

.telefoon-nummer {
    display: none;
    font-weight: bold;
    color: #ffd700;
}

.sponsor-telefoon:hover .telefoon-tekst {
    display: none;
}

.sponsor-telefoon:hover .telefoon-nummer {
    display: inline;
}

@media (max-width: 750px) {

    .sponsor-card {
        flex-direction: column;
        gap: 25px;
        padding: 25px;
    }

    .sponsor-info {
        width: 100%;
        text-align: center;
    }

    .sponsor-adres {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #222;
}

.sponsor-adres span:not(.sponsor-icoon) {
    color: #222;
}
}.telefoon-icoon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.telefoon-icoon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.telefoon-nummer {
    display: none;
    font-weight: bold;
    color: #ffd700;
}.sponsor-icoon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d62828;
}

.sponsor-icoon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}/* ==========================================
   PARTNERS
========================================== */

/* ==========================================
   WILLUX - IT-PARTNER OP HOMEPAGE
========================================== */

.it-partner {
    margin-top: 25px;
    padding: 20px;
    background: #ffffff;
    border: 2px solid #d9d9d9;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.it-partner h3 {
    margin: 0 0 18px;
    color: #0f2d5c;
    font-size: 1.25rem;
}

.it-partner a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    padding: 20px;
    background: #111111;
    border-radius: 10px;
    text-decoration: none;
}

.it-partner .partner-logo {
    display: block;
    width: 420px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.it-partner .partner-logo:hover {
    transform: scale(1.03);
}

.it-partner p {
    margin: 18px 0 0;
    color: #333333;
}
