/* STYLESHEET */

/* FONTS ADDENDUM */

@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap');

/* <style> ================================================================================================================== */
/* ================================================================================================================== */
/* INLINE VARS */ 
/* ================================================================================================================== */

:root {
    
--clr-primary:          #2ab8ca;
--clr-secondary:        #e33880;

--clr-dark-grey:        #d0d0d0;
--clr-light-grey:       #f0f0f0;
--clr-background:       #090909; 
--clr-background-alt:   #161c2f;

--font-color:           #f1f1f1;
--font-primary:         'Sofia Sans','Open Sans', Arial, sans-serif; 
--font-secondary:       'Sofia Sans','Open Sans', Arial, sans-serif; 

}

/* ================================================================================================================== */
/* BASIC SETTINGS */
/* ================================================================================================================== */

html, body { 
    min-height:100%;
    max-width:100%;
    height:100%;
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.4em; 
    font-weight: 400;
    color: var(--font-color);
    background-color: var(--clr-background);
}

@media only screen and (min-width : 768px)
{
    html, body { font-size: 18px; line-height: 1.6em; } 
}

h1 { font-size: 1.8em; margin-top: 0; }
h2 { font-size: 1.6em; }
h3 { font-size: 1.4em; }
p { margin-bottom: 1.3em; }
.lead { font-size: 1.2em; }

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 { 
    font-family: var(--font-secondary);
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--clr-secondary);
    margin-bottom: 1em;
}

b, strong { font-weight: 800; }

.jumbotron { background-color: var(--clr-background); padding: 35px 35px 25px 35px; }
.jumbotron h1 { margin: 0 0 10px 0; }
.jumbotron p { margin: 0 0 10px 0; }

/* ================================================================================================================== */
/* BOOTSTRAP OVERWRITES */
/* ================================================================================================================== */

a { color: #00788a; }
a:hover, a:focus { color: #00384a; }

.container { 
    max-width: 90%; 
    width: 1640px;
}

/* BUTTON ADDENDUM */
.btn-primary {
    border: 0;
    font-weight: 700;
    padding: .375rem 2rem;
    background-color: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #FFF;
    background: linear-gradient(to right,#183859 50%,#be9f4f 50%) !important;
    background-position-x: 0%;
    background-position-y: 0%;
    background-size: auto;
    background-size: 201% 100% !important;
    background-position: right bottom !important;
    transition: all .23s ease-in-out !important;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--clr-secondary);
    border-color: var(--clr-secondary);
    background-position: left bottom !important;
}

.btn-secondary {
    border: 0;
    font-weight: 700;
    padding: .375rem 2rem;
    background-color: var(--clr-secondary);
    border-color: var(--clr-secondary);
    color: #FFF;
    
    background: linear-gradient(to right,#be9f4f 50%,#183859 50%) !important;
    background-position-x: 0%;
    background-position-y: 0%;
    background-size: auto;
    background-size: 201% 100% !important;
    background-position: right bottom !important;
    transition: all .23s ease-in-out !important;
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--clr-primary);
    border-color: var(--clr-primary);
    background-position: left bottom !important;
}

/* CONTACTWELL ADDENDUM */
.contactwell {
    padding: 2em;
    background-color: var(--clr-background-alt);
    border-radius: 30px;
}

.formwrapper small, .legalblob small { display: inline-block; line-height: 1.4em; }

/* ================================================================================================================== */
/* HEADER + NAV
/* ================================================================================================================== */

#header {
    background-color: var(--clr-background);
    min-height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    text-align: center;
    display: none; 
}

@media (min-width: 992px)
{
    #header { text-align: left; display: block; }
}

.nav > li > a {
    color: var(--clr-secondary);
    display: inline-block;
    padding: 10px 10px;
    min-height: 50px;
}

.nav > li > a:focus, .nav > li > a:hover {
    background-color: var(--clr-secondary);
    color: var(--clr-background);
    text-decoration: none;
}

.sociallinks {
    display: inline-block;
}

#header .sociallinks { margin-top: 10px; }
.top-social {
    display: inline-block; 
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 32px;
    text-align: center;
    background-color: var(--clr-secondary);
    color: var(--clr-background);
}

.top-social:hover {
    background-color: var(--clr-primary);
    color: black;
}

.top-social + .top-social { margin-left: 8px; }

#heroimage {
    background-color: var(--clr-background);
    position: relative;
}

#heroimage img {
    width: 100%;
}

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

section {
    background-color: var(--clr-background);
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat; 
}

section .container {
    padding-top: 5em;
    padding-bottom: 5em;
}

section.even {
    background-color: var(--clr-background-alt);
}

.grid {
    display: grid;
    justify-content: space-evenly;
    align-items: center;
    justify-items: center;
}

.grid-text {
    padding: 5% 10%;
    width: 100%;
}

.grid-img {
    height: 50vh;
    width: 100%;
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat; 
    background-color: #efefef;
}

@media (min-width: 992px)
{
    .grid { grid-template-columns: 1fr 1fr; }
    .grid-img { height: 100%; }
    
    .odd .grid .grid-text { order: 2; }
}

/* BLOKLINKS   -------------------------------------------------------------- */

.bloklinks {
    display: flex;
    margin: 0 -30px;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;
}

.bloklinks.partners {
    justify-content: flex-start;
}

.bloklink {
    width: 100%;
    position: relative;
    margin: 0 0 55px 0;
}

.socials .bloklink { width: 50%; }

@media only screen and (min-width : 768px) { 
    .bloklink { width: 50%; } 
    .partners .bloklink { width: 33.33%; } 
    .socials .bloklink { width: 33.33%; }
}

@media only screen and (min-width : 992px) { 
    .bloklink { width: 33.33%; } 
    .partners .bloklink { width: 20%; }  
    .socials .bloklink { width: 33.33%; }
}

.bloklink-inner {
    margin: 0 10px 0 10px;
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,.10);
    position: relative;
    z-index: 5;
    height: 100%;
    background-color: var(--clr-background);
    border-radius: 30px;
}

@media only screen and (min-width : 768px) { .bloklink-inner { margin: 0 20px 0 20px; } }
@media only screen and (min-width : 992px) { .bloklink-inner { margin: 0 30px 0 30px; } }
    
.bloklink-metablok {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--clr-primary);
    color: white;
    font-size: 0.8em;
    padding: 3px 10px;
}

.bloklink-colorbar {
    position: absolute;
    height: 8px;
    top: 146px;
    left: 0;
    width: 100%;
}

.bloklink-colorbar span {
    height: 8px;
    width: 30%;
    background-color: var(--clr-secondary);
    display: block;
    transition: all 0.3s ease-in-out; 
}

.bloklink:hover .bloklink-colorbar span {
    width: 100%;
    transition: all 0.3s ease-in-out; 
}

.bloklink-text {
    padding: 25px;
}

.bloklink-text p { margin: 0; }
.bloklink-text p.title { color: var(--clr-secondary); font-weight: 700; font-size: 1.3em; line-height: 1.3em; margin-bottom: 12px; }
.bloklink-text p.descr { font-size: 0.9em; line-height: 1.4em; }

.bloklink-image { 
    background-color: #fff;
    background-position: center center;
    background-size: cover;
    background-image: url('../../uploads/editables/default_banner.jpg');
    height: 150px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

@media only screen and (min-width : 768px) { .bloklink-image  { height: 200px; } .bloklink-colorbar { top: 196px; } }
@media only screen and (min-width : 992px) { .bloklink-image  { height: 250px; } .bloklink-colorbar { top: 246px; } }

.bloklink a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.bloklink img {
    border-radius: 30px;
}

.openinghours ul, .openinghours ul > li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.openlist-dag {
    min-width: 150px;
    display: inline-block;
}

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


#footer {
    background-color: #000;
    color: #f1f1f1;
    padding: 3em 0 30px;
}

.postfooter { 
    margin-top: 30px;
    font-size: 0.7em;
}

.socialfooter { text-align: center; padding: 0; }

.bottom-social {
    display: inline-block; 
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 15px;
    line-height: 32px;
    background-color: var(--clr-secondary);
    text-align: center;
    color: white;
}

.bottom-social:hover {
    background-color: var(--clr-primary);
    color: white;
}

.bottom-social + .bottom-social { margin-left: 12px; }

.footermenu span { display: block; }
.footermenu span + span { margin-top: 8px; }

.footer-left, .footer-right { text-align: center; }

@media only screen and (min-width : 768px)
{
    .footer-left { text-align: left; }
    .footer-right { text-align: right; }
}

@media (min-width: 992px)
{
    .bottom-social {
        display: inline-block; 
        border-radius: 50%;
        width: 60px;
        height: 60px;
        font-size: 30px;
        line-height: 65px;
        background-color: var(--clr-secondary);
        text-align: center;
        color: white;
    }
}