﻿:root {
    --summer-gradient: linear-gradient(180deg, rgb(149, 193, 30) 0%, rgb(149, 193, 30) 14%, rgb(247, 210, 30) 14%, rgb(247, 210, 30) 28%, rgb(240, 136, 37) 28%, rgb(240, 136, 37) 42%, rgb(0, 162, 225) 42%, rgb(0, 162, 225) 56%, rgb(0, 160, 154) 56%, rgb(0, 160, 154) 70%, rgb(191, 96, 54) 70%, rgb(191, 96, 54) 84%, rgb(0, 158, 59) 84%, rgb(0, 158, 59) 100%);
    --summer-gradient-divider: linear-gradient(90deg, rgb(232 126 74) 0%, rgb(232 126 74) 25%, rgb(158 192 67) 25%, rgb(158 192 67)50%, rgb(71 159 153) 50%, rgb(71 159 153) 75%, rgb(232 126 74) 75%, rgb(232 126 74) 100%);
    --winter-gradient: linear-gradient(180deg, rgb(247, 210, 30) 0%, rgb(247, 210, 30) 14%, rgb(116, 81, 76) 14%, rgb(116, 81, 76) 28%, rgb(201, 144, 136) 28%, rgb(201, 144, 136) 42%, rgb(255, 234, 150) 42%, rgb(255, 234, 150) 56%, rgb(165, 184, 208) 56%, rgb(165, 184, 208) 70%, rgb(63, 95, 114) 70%, rgb(63, 95, 114) 84%, rgb(116, 121, 74) 84%, rgb(116, 121, 74) 100%);
    --winter-gradient-divider: linear-gradient(90deg, rgb(116, 81, 76) 0%, rgb(116, 81, 76) 25%, rgb(255, 234, 150) 25%, rgb(255, 234, 150) 50%, rgb(165, 184, 208) 50%, rgb(165, 184, 208) 75%, rgb(116, 81, 76) 75%, rgb(116, 81, 76) 100%);
    --fall-gradient: linear-gradient(180deg, rgb(152, 52, 36) 0%, rgb(152, 52, 36) 14%, rgb(222, 115, 49) 14%, rgb(222, 115, 49) 28%, rgb(245, 202, 67) 28%, rgb(245, 202, 67) 42%, rgb(149, 193, 30) 42%, rgb(149, 193, 30) 56%, rgb(0, 160, 154) 56%, rgb(0, 160, 154) 70%, rgb(239, 125, 107) 70%, rgb(239, 125, 107) 84%, rgb(150, 156, 38) 84%, rgb(150, 156, 38) 100%);
    --fall-gradient-divider: linear-gradient(90deg, rgb(222, 115, 49) 0%, rgb(222, 115, 49) 25%, rgb(149, 193, 30) 25%, rgb(149, 193, 30) 50%, rgb(0, 160, 154) 50%, rgb(0, 160, 154) 75%, rgb(222, 115, 49) 75%, rgb(222, 115, 49) 100%);
    --spring-gradient: linear-gradient(180deg, rgb(90, 172, 79) 0%, rgb(90, 172, 79) 14%, rgb(241, 229, 82) 14%, rgb(241, 229, 82) 28%, rgb(0, 160, 154) 28%, rgb(0, 160, 154) 42%, rgb(0, 133, 158) 42%, rgb(0, 133, 158) 56%, rgb(108, 136, 196) 56%, rgb(108, 136, 196) 70%, rgb(247, 171, 94) 70%, rgb(247, 171, 94) 84%, rgb(183, 206, 35) 84%, rgb(183, 206, 35) 100%);
    --spring-gradient-divider: linear-gradient(90deg, rgb(241, 229, 82) 0%, rgb(241, 229, 82) 25%, rgb(0, 133, 158) 25%, rgb(0, 133, 158)50%, rgb(108, 136, 196) 50%, rgb(108, 136, 196) 75%, rgb(241, 229, 82) 75%, rgb(241, 229, 82) 100%);
    --gradient-border: linear-gradient(180deg, rgba(237,205,61,1) 0%, rgba(237,205,61,1) 22%, rgba(216,116,48,1) 22%, rgba(216,116,48,1) 44%, rgba(58,142,212) 44%, rgba(58,142,212) 66%, rgba(142,183,52) 66%, rgba(142,183,52) 88%, rgba(58,143,134) 88%, rgba(58,143,134) 100% );
    --container-size: 1320px;
}

/* LANDING PAGE */
/* Search zone */

#magazine-landing-title-container {
    display: grid;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-template-columns: 18px auto;
    grid-template-areas:
        ". .";
    width: 100%;
}

#magazine-landing-image-container {
    background-image: url(/img/magazine_cover.jpg);
    background-position: center 10%;
    background-size: cover;
    width: 100%;
    margin-left: 16px;
    margin-top: -300px;
}

.magazine-question-container {
    display: grid;
    grid-template-columns: auto var(--container-size);
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-template-areas:
        ". .";
}


@media (min-width : 992px) {

    :root {
        --container-size: 960px;
    }
}

@media (min-width : 1200px) {

    #magazine-landing-image-container {
        border-radius: 25px;
    }

    #magazine-landing-title-container .bg-grey-lg {
        background: #F0F0F0;
    }


    #magazine-landing-title-container {
        grid-template-columns: 18px auto;
    }

    #magazine-landing-image-container {
        min-height: min(60vw, 400px);
        max-height: unset;
        margin-left: unset;
        margin-top: unset;
    }

    #magazine-landing-title-container {
        width: 50%;
    }

    #magazine-landing-image-container {
        width: 50%;
    }
}

@media (min-width : 1400px) {
    :root {
        --container-size: 1320px;
    }
}




/* Search zone */
/* END LANDING PAGE*/

.multicolors {
    min-width: 1rem;
    margin-bottom: 9rem;
}

.multicolors.summer {
    background: var(--summer-gradient);
}

.multicolors.winter {
    background: var(--winter-gradient);
}

.multicolors.fall {
    background: var(--fall-gradient);
}

.multicolors.spring {
    background: var(--spring-gradient);
}

.multicolorsDivider {
    width: 150px;
    height: .6rem;
}

.multicolorsDivider.summer {
    background: var(--summer-gradient-divider);
}

.multicolorsDivider.winter {
    background: var(--winter-gradient-divider);
}

.multicolorsDivider.fall {
    background: var(--fall-gradient-divider);
}

.multicolorsDivider.spring {
    background: var(--spring-gradient-divider);
}

.mission-statement {
    color: #87c857;
    font-size: 1.6rem;
    max-width: 60%;
    font-family: 'Bitter', Serif;
}

.read-more-button {
    border-radius: 20rem;
}

.title-for-magazine-first-item {
    background-color: white;
    width: 70%;
    height: 50px;
    border-left: 1rem solid #87c857;
    border-top-right-radius: 1em;
    border-bottom-right-radius: 1em;
    text-align: start;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
    box-shadow: 0 .2rem 0.6rem 0.1rem #4CA1EF25;
}

.video-icon-for-magazine {
    height: 50px;
    width: 50px;
    position: absolute;
    right: 3%;
    bottom: 10%;
    z-index: 1030;
}

.mb-n5 {
    margin-bottom: calc(-0.5rem*5) !important;
}

.mt-n1 {
    margin-top: calc(-0.5rem*1) !important;
}

.date-label {
    background: gray;
    margin: .5rem;
    color: white;
    align-self: start;
    justify-self: start;
    font-size: .9rem;
    border-radius: 20rem;
    padding: 0 0.5rem;
    text-transform: uppercase;
    box-shadow: 0 0 5px 0px #0002;
}

.item-image-small {
    width: 100%;
    min-height: 120px;
    object-fit: cover;
    aspect-ratio: 370 / 240;
}

#magazine-overzicht-search-bar-container {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-left: calc(-0.75rem);
    padding-left: calc(0.75rem + 10px);
    width: calc(100% + 0.75rem + 10px);
    border-top-left-radius: 1rem;
    border-left: 10px solid white;
    box-shadow: 0 .6rem 0 0 white, 0px 0 .6rem 0.1rem #4ca1ef25 !important;
}

#magazine-overzicht-search-bar-container input::placeholder { /* Internet Explorer 10-11 */
    color: black;
    opacity: 1; /* Firefox */
}

#magazine-overzicht-search-bar-container input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: black;
}

#magazine-overzicht-search-bar-container input::-ms-input-placeholder { /* Microsoft Edge */
    color: black;
}

.multicolor-border-on-the-left {
    border-image: var(--gradient-border);
    border-image-slice: 1;
    border-left: 10px solid;
    padding-right: 10px;
    padding-top: 0;
}

@media (min-width : 768px) {
    #magazine-overzicht-search-bar-container {
        margin-left: -3rem;
        padding-left: 1.75rem;
        width: calc(100% + 3rem);
        border-left: none;
        border-top-left-radius: 1rem;
        box-shadow: 0 .6rem 0 0 white, 0px 0 .6rem 0.1rem #4ca1ef25 !important;
    }

    .multicolor-border-on-the-left {
        border-image: var(--gradient-border);
        border-image-slice: 1;
        border-left: 20px solid;
        border-right: 0pc solid transparent;
        padding-left: 20px;
        padding-right: 40px;
    }
}

@media(min-width:992px) {
    .multicolor-border-on-the-left {
        border-image: var(--gradient-border);
        border-image-slice: 1;
        border-left: 20px solid;
        border-right: 0px solid transparent;
        padding-left: 100px;
        padding-right: 120px;
    }
}

@media (min-width : 1400px) {
    .multicolor-border-on-the-left {
        border-image-slice: 1;
        border-left: 20px solid;
        border-right: 0px solid transparent;
        padding-left: 140px;
        padding-right: 160px;
        border-image: var(--gradient-border);
        border-image-slice: 1;
    }
}

/*#region HEADING */

#intro-text {
    font-weight: 400;
    font-size: 1.2rem;
    color: #505050;
}

#main-grid {
    grid-template-rows: auto auto min(40vh, 50vw) auto;
    margin-bottom: 3rem;
}

#main-grid #breadcrumb {
    grid-area: 1 / 3 / 1 / 5;
}

#main-grid #breadcrumb .left {
    padding: 0 1rem;
}

#main-grid #body-background {
    grid-area: 2 / 1 / 4 / 4;
    background: #F0F0F0;
    border-top-right-radius: 1rem;
}

#main-grid #body {
    grid-area: 2 / 3 / 2 / 5;
}


#main-grid #body .left {
    padding: 2rem 1rem 3rem 1rem;
}

#main-grid #multicolor {
    grid-area: 2 / 1 / 4 / 1;
}

#main-grid #multicolor .multicolors {
    height: 80%;
    width: 1rem;
}

#main-grid #image {
    grid-area: 3 / 3 / -1 / -1;
    background-image: url(/img/magazine_cover.jpg);
    background-size: cover;
    background-position: left top;
    border-radius: 1rem 0 0 1rem;
    color: white;
    padding: 1.75rem;
    margin-left: 1rem;
}

#main-grid #search {
    grid-area: 4 / 3 / 4 / 4;
}

#main-grid #search .right {
    margin: -1.8rem 0 -1.8rem 1rem;
}

@media (min-width: 576px) {
    #main-grid #body .left {
        padding: 2rem 5rem 3rem 1rem;
    }
}

@media (min-width: 992px) {
    #main-grid #image {
        margin-left: 0;
    }

    #main-grid #search .right {
        margin-left: max(15%, 1rem);
    }

    #main-grid #body .left {
        padding-left: 0;
    }

    #main-grid #breadcrumb .left {
        padding: 0;
    }
}

@media (min-width: 1200px) {
    #main-grid {
        grid-template-rows: auto auto auto;
    }

    #main-grid #body-background {
        grid-area: 2 / 1 / 2 / 4;
        border-top-right-radius: 0;
    }

    #main-grid #body .left {
        padding: 3rem 5rem 5rem 0;
    }

    #main-grid #multicolor {
        grid-area: 2 / 1 / 2 / 1;
    }

    #main-grid #image {
        grid-area: 1 / 4 / -1 / 7;
    }

    #main-grid #search {
        grid-area: 3 / 3 / 3 / 5;
    }
}

/*#endregion */

/*#region SPOTLIGHT */

.spotlight-container {
    margin-bottom: 1.75rem;
}

.spotlight-articles {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 24rem 12.5rem 12.5rem;
    grid-template-areas:
        "one"
        "two"
        "three";
    gap: 3rem;
    padding-bottom: 2rem;
}

.spotlight-article {
    text-decoration: none;
}

    .spotlight-article:hover .spotlight-article-image {
        opacity: 80%;
    }

    .spotlight-article h3 {
        font-size: 1.2rem;
    }

    .spotlight-article:nth-child(1) {
        grid-area: one;
        flex-direction: column;
        margin-bottom: 2rem;
    }

        .spotlight-article:nth-child(1) .spotlight-article-image {
            flex-basis: 100%;
        }

        .spotlight-article:nth-child(1) .spotlight-article-text {
            background: white;
            box-shadow: 0 0.1rem 0.6rem 0.1rem #4CA1EF25;
            border-radius: 0 1rem 1rem 0;
            margin-top: -2.75rem;
            margin-right: 25%;
            border-left: 1rem solid #87c857;
            z-index: 1;
        }

        .spotlight-article:nth-child(1) h3 {
            margin: 0;
            padding: 1rem 2rem;
        }

            .spotlight-article:nth-child(1) h3::before {
                content: '\e901';
                font-family: 'aposites';
                vertical-align: -5%;
                color: #DF5346;
                margin-right: 1rem;
            }

        .spotlight-article:nth-child(1) p {
            display: none;
        }

    .spotlight-article:nth-child(2) {
        grid-area: two;
    }

    .spotlight-article:nth-child(3) {
        grid-area: three;
    }

.spotlight-article {
    display: flex;
    gap: 1.5rem;
}
.spotlight-article:hover{
    color:black;
}

.spotlight-article-image, .spotlight-article-text {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 0%;
}

.spotlight-article-image {
    display: grid;
}

    .spotlight-article-image > * {
        grid-area: 1 / 1 / -1 / -1;
    }

.spotlight-article-image {
    background-size: cover;
    background-position: center;
}

    .spotlight-article-image > small {
        background: #969696;
        color: white;
        padding: 0 .6rem;
        border-radius: 1rem;
        place-self: start;
        text-transform: uppercase;
        margin: 1rem 0 0 1rem;
        font-weight: 400;
    }

.spotlight-article-text p {
    font-weight: 400;
    margin-bottom: 0.8rem;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .spotlight-articles {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 10rem 10rem;
        grid-template-areas:
            "one two"
            "one three";
        gap: 1rem 1.5rem;
    }

    .spotlight-article:nth-child(1) {
        margin-bottom: 0;
    }
}

/*#endregion */

/*#region HAVE A QUESTION */

.multicolor-border-wrapper {
    grid-area: 1 / padding-right / -1 / border-right;
}

    .multicolor-border-wrapper .multicolors {
        height: 110%;
        width: 1rem;
        float: right;
    }

.have-a-question-grid {
    margin-bottom: 150px;
}

.have-a-question-body {
    margin: 0 -100vw 0 0;
    padding: calc(4rem + 75px) 100vw 4rem 1rem;
    background: #F0F0F0;
}

.have-a-question-img {
    aspect-ratio: 533 / 505;
    width: min(max(265px, 40%), 100%);
    z-index: 1;
    margin-bottom: -150px;
    margin-left: 1rem;
}

@media (min-width: 768px) {
    .have-a-question-body {
        padding: calc(4rem + 75px) 100vw 4rem 3rem;
    }

    .have-a-question-img {
        margin-left: 3rem;
    }
}

@media (min-width : 1200px) {
    .have-a-question-container {
        margin-bottom: 100px;
    }

    .have-a-question-body {
        margin: 0 -100vw 0 -100px;
        padding: 4rem 100vw 4rem calc(100px + 3rem);
    }

    .have-a-question-img {
        width: 415px;
        margin-bottom: -150px;
        margin-top: 50px;
        margin-left: 0;
    }
}

/*#endregion */

.season-select {
    border: 0 !important;
    box-shadow: 0 0 0.6rem 0.1rem #D3D3D3;
    border-radius: 5rem;
}
