@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Fira+Sans:wght@800&family=Lora&family=Overlock:wght@700&family=Hachi+Maru+Pop&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box;
  
    /* Color scheme */
    
    --textcolor: #fffbfc;
    --bgcolor: #2e3233;
    --highlight: #46b2e2;
    --sl-color-primary-500: #46b2e2;
    --secondary: #d64933;
  
}

body {
    font-size: 18px;
    line-height: 1.4;
    color: var(--textcolor);
    background: var(--bgcolor);
    /* position: relative; */
    /*max-width: 64em;  /* remove this for a full-width layout */
    margin: 0 auto;  /* centers the layout */
}



/* ------- Header ------- */

header {
    padding: 5vw 5vw 0 5vw;
    width: 100%;
    z-index: 2;
}

header .wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

header .logo {
    height: 3.5rem;
    width: auto;
    vertical-align: middle;
    margin-right: 1rem;
}
  
header h1 {
    font-size: 1em;
    /* font-family: 'Hachi Maru Pop', cursive; */
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    flex: 1; /* pushes nav to the right */
    white-space: nowrap;
    padding: 0 5vw 0 0;
}

header sl-icon-button {
    display: none;
}

nav ul {
    display: flex;
}
  
nav li:not(:last-of-type) {
    margin-right: 1.5vw;
}

nav a {
    font-family: 'Overlock', cursive;
}



/* ------- General ------- */

a {
    text-decoration: none;
    color: var(--highlight);
}
  
a:hover {
    color: var(--secondary);
}

a[target="_blank"]::after {
    content: url(https://upload.wikimedia.org/wikipedia/commons/6/64/Icon_External_Link.png);
    margin: 0 0 0 5px;
}

section {
    padding: 5vw;
}

section:last-of-type {
    padding-bottom: 15vw!important;
}

section h1 {
    font-size: 2.75em;
    font-size: clamp(1.52em, 5vw, 2.75em);
    margin: 0 0 1em 0;
    font-family: 'Overlock', cursive;
    font-family: 'Hachi Maru Pop', cursive;
    font-family: 'Fira Sans', sans-serif;
}

section.white {
    background-color: var(--textcolor)!important;
    color: var(--bgcolor);
}
  
h2, h3, h4 {
    font-size: 1em;
    font-weight: 600;
    margin: 1.6em 0 .6em 0;
}
  
p, ul, ol, article {
    max-width: 60ch; /* Limit line-length to 60 characters */
    margin-bottom: .6em;
    font-family: 'Lora', serif;
}
  
ul {
    list-style-type: none;
}
  
/* ul li::marker {
    content: "\2022   ";
} */
  
li {
    margin-bottom: .2em;
}
  
ul, ol {
    padding-left: 2ch;
}
  
b, strong {
    font-weight: 600;
}
  
small {
    font-size: .85em;
}
  
hr {
    height: 1px;
    border: 0;
    background: currentColor;
    opacity: .1;
    margin: 1.2em 0;
}
  
abbr {
    text-decoration: none;
}
  
abbr[title]:hover {
    opacity: .7;
    cursor: help;
}

img {
    width: 100%;
}

blockquote {
    font-family: 'Lora', serif;
}

blockquote figcaption {
    font-size: .875em;
    margin: 1.5em;
}

.wrapper {
    max-width: 1152px;
    margin: 0 auto;
}



/* ------- Hero ------- */
section.hero {
    padding: 10vw 5vw 5vw;
}
section.hero .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
section.hero img {
    opacity: .15;
    transform: rotate(15deg);
}
section.hero blockquote {
    font-size: 1.2em;
    font-size: clamp(16px, 2vw, 1.2em);
}



/* ------- Wave ------- */
section.wave {
    background: url('/assets/images/wave.svg') 0 0 no-repeat;
    background-size: 100%;
    min-height: 250px;
    padding: 25vw 5vw 5vw;
}




/* ------- Footer ------- */
footer .wrapper {
    padding: 5vw;
    color: #909090;
    font-family: 'Overlock', cursive;
    text-align: center;
    font-size: .875em;
}

footer a {
    color: #909090;
}




/* ------- DIALOG: Work in Progress ------- */
.wip p {
    margin: 2em 0 1em;
}
.wip li::marker {
    content: "\2192   ";
}



/* ------- Mobile Ansicht ------- */
@media screen and (max-width: 639px) {
    header nav {
        display: none;
    }

    header sl-icon-button {
        display: block;
    }

    section.hero .wrapper {
        display: block;
    }

    footer .wrapper {
        font-size: .666666em;
    }
}