@import "variables.css"; 

button.navbar-toggle {
    margin-top: 24px;
    margin-bottom: 24px;
}

div.sponsorbox{
	height: 300px;
	max-height: 300px;
}

.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  flex-direction: row;
}

.row-eq-height  > [class^="col-"],
.row-eq-height > [class*=" col-"] {
  display: flex;
  align-items: center;
  justify-content: center; /* Optional, to align inner items 
                              horizontally inside the column */
}

#background-video {
  width: 100vw;
  height: calc(100vh);
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.background-container {
    width: 100%;
    height: calc(100vh);
    background: url('/static/site/header-2023_o2_gauss8_darker.jpg');
    background-size: cover;
    position: absolute;
    top: 0;
}

header {
    height: 100dvh;
    font-family: 'Roboto','Helvetica Neue',Arial,sans-serif;
    position: relative;
    width: 100%;
    min-height: auto;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header .header-content {
    position: relative;
    width: 100%;
    text-align: center;
}

header .header-content .header-content-inner h1 {
    margin-top: 0;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 700;
}

header .header-content .header-content-inner hr {
    margin: 30px auto;
}

header .header-content .header-content-inner p {
    margin-bottom: 50px;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
}

/* Header title */
header .header-title-container {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    font-size: 28px;
    text-transform: uppercase;
    text-shadow: 2px 3px 5px rgba(0,0,0,0.34);
    padding: 16px 0;
}

header .header-title-container .header-title-primary {
    color: var(--white);
    margin-right: 8px;
}
header .header-title-container .header-title-secondary {
    color: var(--white);
}

/* Social media container */
header .social-media-container {
    font-size: 18px;    
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 32px;
}
header .social-media-container .social-media-link {
    color: var(--white);
    margin: 0 16px;
    cursor: pointer;
}
header .social-media-container .social-media-link:hover {
    color: var(--dark-blue);
}

/* Date container */
header .header-date-container {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    margin: 12px 0;
}
header .header-date-container .date-primary {
    font-weight: 700;
    margin-right: 16px;
}
header .header-date-container .date-secondary {
    font-weight: 300;
}

/* Spacing containers */
header .header-spacing-container {
    margin: 24px 0;
}
header .header-spacing-container-row {
    height: 2px;
    width: 100%;
    display: flex;
    flex-direction: row;
}
header .header-spacing-container-column-fill {
    /* background: #48BFE3; */
    background: var(--white);
}

@media(min-width: 600px) {
    /* Header title */
    header .header-title-container {
        flex-direction: row;
        justify-content: center;
    }
}

@media(min-width:768px) {
    header .header-content {
        padding: 0 40px;
    }
    
    header .header-title-container {
        font-size: 34px;
    }

    header .header-content .header-content-inner {
        margin-right: auto;
        margin-left: auto;
        max-width: 1280px;
    }

    header .header-content .header-content-inner p {
        margin-right: auto;
        margin-left: auto;
        max-width: 80%;
        font-size: 18px;
    }
    
    /* Spacing containers */
    header .header-spacing-container {
        margin: 40px 0;
    }
    
    /* Social media container */
    header .social-media-container {
        justify-content: end;
        justify-content: flex-end;
    }

    header .social-media-container .social-media-link {
        margin: 0 32px;
    }
    
    /* Date container */
    header .header-date-container {
        flex-direction: row;
        justify-content: center;
    }
}

@media(min-width:1280px) {
    header .header-title-container {
        font-size: 52px;
    }
}

/* News items */
.nieuws-item-container {
    padding-bottom: 32px;
}
.nieuws-item-container .nieuws-item-header {
    font-size: 18px;
    font-weight: 700;
}
.nieuws-item-container .nieuws-item-image {
    max-width: 400px;
    height: 200px;
    margin-bottom: 16px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
}
.nieuws-item-container .nieuws-item-content {
    min-height: 104px;
}
.nieuws-item-container .nieuws-item-date {
    display: flex;
    flex-direction: row;
    justify-content: end;
}
.nieuws-item-container .nieuws-item-date span {
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 600;
    color: var(--white);
    background: var(--dark-blue);
}

/* SECTION OVERRIDES */
.content-section .section-heading {
    margin-bottom: 32px;
}
}
