﻿/* =========================================
   BASIS
========================================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    /*
       Achtergrond van de volledige pagina:

       Links  = rood
       Midden = wit
       Rechts = blauw
    */

    background: linear-gradient( to right, #d9261c 0, #d9261c calc(50% - 550px), #ffffff calc(50% - 550px), #ffffff calc(50% + 550px), #30304e calc(50% + 550px), #30304e 100% );
}


/* =========================================
   PAGINA WRAPPER
========================================= */

.page-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


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

.site-header {
    width: 100%;
}


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

.header-top {
    width: 100%;
    height: 95px;
    /*
       Buiten de centrale container:

       links  = rood
       rechts = blauw
    */

    background: linear-gradient( to right, #d9261c 0, #d9261c calc(50% - 550px), #30304e calc(50% - 450px), #30304e 100% );
}


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

.header-inner {
    width: 1100px;
    max-width: 100%;
    height: 95px;
    margin: 0 auto;
    display: flex;
}


/* =========================================
   LOGO ZONE
   ALLEEN LOGO IS ROOD
========================================= */

.logo-zone {
    width: 100px;
    height: 95px;
    flex-shrink: 0;
    background: #d9261c;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-zone a {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.logo {
    width: 95px;
    height: 95px;
    display: block;
    object-fit: contain;
}


/* =========================================
   BLAUWE ZONE
========================================= */

.blue-zone {
    flex: 1;
    height: 95px;
    display: flex;
    align-items: center;
    background: #30304e;
}


/* =========================================
   TITEL
========================================= */

.header-title {
    flex: 1;
    display: flex;
    align-items: baseline;
    gap: 25px;
    padding-left: 15px;
    color: white;
}

.club-name {
    font-size: 52px;
    font-weight: 300;
    white-space: nowrap;
}

.season {
    font-size: 20px;
    font-weight: 300;
    white-space: nowrap;
}


/* =========================================
   FOOTPASS
========================================= */

.footpass-container {
    width: 80px;
    height: 95px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footpass {
    max-width: 65px;
    max-height: 80px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}


/* =========================================
   NAVIGATIE
========================================= */

.main-navigation {
    width: 1100px;
    max-width: 100%;
    min-height: 41px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding-left: 100px;
    background: #ffffff;
    border: 2px solid #30304e;
}


/* =========================================
   NAVIGATIE LINKS
========================================= */

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 15px;
    color: #111111;
    font-size: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.2s ease;
    border: 1px solid;
    border-radius: 4px;
    margin: 2px;
}


    /* Hover */

    .nav-link:hover {
        color: #d9261c;
    }


    /* Actieve pagina */

    .nav-link.active {
        color: #d9261c;
        border: 1px solid;
        border-radius: 4px;
    }


/* =========================================
   CONTENT
========================================= */

.content {
    width: 1100px;
    max-width: 100%;
    min-height: 400px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #ffffff;
    
}


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

.site-footer {
    width: 100%;
    margin-top: auto;
    background: linear-gradient( to right, #d9261c 0, #d9261c calc(50% - 550px), #30304e calc(50% + 550px), #30304e 100% );
}


/* Centrale footer */

.footer-inner {
    width: 1100px;
    max-width: 100%;
    min-height: 60px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #30304e;
    color: white;
}


/* Footer links */

.footer-right a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}


    /* Footer hover */

    .footer-right a:hover {
        color: #d9261c;
    }


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    body {
        background: linear-gradient( to right, #d9261c 0, #d9261c 50px, #ffffff 50px, #ffffff calc(100% - 50px), #30304e calc(100% - 50px), #30304e 100% );
    }


    .header-top {
        background: #30304e;
    }


    .logo-zone {
        background: #d9261c;
    }


    .club-name {
        font-size: 42px;
    }


    .season {
        font-size: 17px;
    }


    .nav-link {
        font-size: 18px;
        padding-left: 12px;
        padding-right: 12px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    body {
        background: #ffffff;
    }


    .header-top {
        height: 80px;
        background: #30304e;
    }


    .header-inner {
        height: 80px;
    }


    .logo-zone {
        width: 80px;
        height: 80px;
        background: #d9261c;
    }


    .logo {
        width: 75px;
        height: 75px;
    }


    .blue-zone {
        height: 80px;
    }


    .header-title {
        padding-left: 8px;
        gap: 8px;
    }


    .club-name {
        font-size: 28px;
    }


    .season {
        display: none;
    }


    .footpass-container {
        width: 60px;
        height: 80px;
    }


    .footpass {
        max-width: 45px;
        max-height: 60px;
    }


    /* Navigatie */

    .main-navigation {
        padding-left: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }


    .nav-link {
        min-height: 45px;
        padding: 8px;
        font-size: 17px;
    }


        .nav-link:last-child {
            grid-column: 1 / -1;
        }


    /* Content */

    .content {
        min-height: 400px;
        padding: 30px 20px;
    }


    /* Footer */

    .footer-inner {
        min-height: 70px;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }
}

.social-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.social-links a i {
    font-size: 20px;
}

.social-links a:hover {
    color: #d9261c;
}