@charset "UTF-8";

@import url(https://fonts.googleapis.com/css2?family=Inter%3Awght%40400%3B500%3B600%3B700&display=swap&ver=6.4.3);

:root {
    --color-zwart: #000000;
    --color-wit: #ffffff;
    --color-grijs: #f6f6f6;
    --max-oranje: #fb5e00;
    --max-blauw: #141932;
    --max-beige: #ffe4cc;
    --max-vakantieman-blauw: #00A0BE;
}

body {
    font-family: Inter;
    margin: 0;
    background-color: var(--color-grijs);
}

a, a:hover, a:link {
    color: var(--max-oranje);
    text-decoration: none;
}

header {
    padding: 30px 10px;
    background-color: var(--max-blauw);
}

header .flex-container {
    align-items: center;
}


/*********************************************************

                         Fonts

*********************************************************/

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-bold {
    font-weight: 700;
}


/*********************************************************

                         Colours

*********************************************************/

.color-zwart-text {
    color: var(--color-zwart);
}

.color-wit-text {
    color: var(--color-wit);
}

.color-grijs-text {
    color: var(--color-grijs);
}

.color-beige-text {
    color: var(--max-beige);
}

.color-blauw-text {
    color: var(--max-blauw);
}

.color-oranje-text {
    color: var(--max-oranje);
}


/*********************************************************

                    Background colours

*********************************************************/

.color-zwart-bg {
    background-color: var(--color-zwart);
}

.color-wit-bg {
    background-color: var(--color-wit)
}

.color-grijs-bg {
    background-color: var(--color-grijs);
}

.color-beige-bg {
    background-color: var(--max-beige);
}

.color-blauw-bg {
    background-color: var(--max-blauw);
}

.color-oranje-bg {
    background-color: var(--max-oranje);
}


/*********************************************************

                         Padding

*********************************************************/

.padding-25 {
    padding: 25px 0px 25px 0px;
}

.padding-50 {
    padding: 50px 0px 50px 0px;
}

.padding-75 {
    padding:75px 0px 75px 0px;
}


/*********************************************************

                         Margin

*********************************************************/

.margin-left-25 {
    margin-left: 25px;
}


/*********************************************************

                         Flex

*********************************************************/

.flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    min-height: 650px;
}

.flex-container > div {
    padding: 10px;
}

.flex-item1, .flex-item2 {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
}

@media (max-width: 1250px) {
    .flex-container {
        flex-direction: column;
        padding-bottom: 50px;
        min-height: auto;
    }

    .flex-item1, .flex-item2 {
        flex-basis: 100%;
        margin-bottom: 30px;
    }

    .flex-item2 img {
        max-width: 100%;
        margin-bottom: 20px;
    }
}


/*********************************************************

                         Image

*********************************************************/

img {
    width: 100%;
    display: block;
    margin: auto;
}


/*********************************************************

                         Portfolio

*********************************************************/

.portfolio-grid {
    justify-content: space-between;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 20px;
    background-color: var(--color-grijs);
    text-align: center;
    padding-bottom: 50px;
}

.portfolio-item {
    box-shadow: 2px 2px 4px #000000;
    margin: 25px;
    background-color: var(--color-wit);
    border-radius: 10px;
    overflow: hidden;
}

.portfolio-item a {
    text-decoration: none;
}

.portfolio-item:hover {
    transform: scale(1.05);
}

.portfolio-item img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: block;
    width: 100%;
}

.portfolio-website {
    border: 0px;
    color: var(--max-oranje);
}

@media (max-width: 1250px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .portfolio-item {
        margin: 15px;
    }
}


/*********************************************************

                         Footer

*********************************************************/

.footer {
    background-color: var(--max-blauw);
    color: var(--color-wit);
    text-align: center;
}

.Logo-Footer {
    max-width: 200px;
    height: auto;
    padding-bottom: 15px;
    display: inline-block;
    text-align: center;
}