/* INITIAL STYLES */

:root {
    --primary-color: #c19c60;
    --secondary-color: #10142a;
    --background-light-color: #F9F9F9;
    --background-medium-color: #F5F5F5;
}

html,
body,
h1,
h2,
a,
address,
ul,
li,
p,
figure,
figcaption {
    all: unset;
}

h1,
h2,
ul,
li,
p,
figure {
    display: block;
}

a {
    cursor: pointer;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

p {
    margin-top: 1em;
    margin-bottom: 1em;
}

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    line-height: 1.8em;
    color: var(--secondary-color);
}

body>* {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 980px;
}

body>header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    background: var(--secondary-color);
}

body>main {
    display: grid;
    grid-template-columns: 1fr;
    /*row-gap: 10px;*/
}

body>main>* {
    grid-column: 2;
}

body>main>section {
    background: #F5F5F5;
}

a.button {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.9em;
    border: 1px solid var(--background-medium-color);
    padding: 10px 15px;
    transition: background-color 0.3s ease-in-out;
}

@media (pointer: fine) {
    a.button:hover {
        background-color: #f5f5f57d
    }
}

/* ----------------------------- */

body>main>section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section.full.image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


section.text {
    padding: 40px;
}

h2 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 20px;
    line-height: 25px;
    font-weight: 400;
}

.logo {
    width: auto;
    max-height: 60px;
}


/* SPECIFIC STYLES */
/* ----------------------------- */

section#kliniek {
    background-color: var(--background-light-color);
    color: var(--secondary-color);
}

section#introductie-foto {
    display: block;
    padding: 40px;
    background-color: var(--background-light-color);
}

section#quote {
    background-color: white;
}

section#contact {
    background-color: var(--secondary-color);
    color: var(--background-medium-color);
}

section>img#image-clinic-amsterdam {
    height: 300px;
}

#address span {
    display: block;

}

#address p {
    margin-bottom: 0;
}

/* ----------------------------- */

footer {
    margin-top: 20px;
    border-top: 1px solid #F5F5F5;
    padding-top: 10px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    width: calc(100% - 60px);
    color: #808080;
    font-size: 11px;
    text-transform: uppercase;
}


/* ========================================== */
/* DESKTOP / TABLET SCREEN SIZE */
/* ========================================== */


@media screen and (min-width: 600px) {
    
    body>header {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    body>main {
        display: grid;
        grid-template-columns: auto auto;
        gap: 1px;
    }

    body>main>* {
        grid-column: auto;
    }

    h2 {
        font-size: 1.5em;
        line-height: 34px;
    }

    h3 {
        font-weight: 100;
        font-style: italic;
        font-size: 1.5em;
    }

    .logo {
        height: 60px;
    }

    /* ----------------------------- */

    section.full {
        /*grid-column: 1 / -1;*/
        grid-column: span 2;
    }

    section.full {
        align-items: center;
    }

    section.full>* {
        max-width: 568px;
    }

    section.full h2 {
        max-width: 300px;
    }

    section.full.image img {
        max-width: none;
    }

    section.full.text {
        padding: 70px;
    }

    /* SPECIFIC STYLES */
    /* ----------------------------- */

    section>img#image-clinic-amsterdam {
        height: 400px;
    }

    #address {
        text-align: center;

    }

    /* ----------------------------- */

    footer {
        text-align: center;
    }
}