/*
Theme Name: Wave
Text Domain: Wave
Author: Noli Alickaj
Author URI: https://wavecode.no
*/

html {
    scroll-behavior: smooth;
    
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


:root {
    --green: #3E4532;
    --yellow: #FFDD94;
    --beige: #FFF6E2;
    --dark: #2A2D24;
    --border: rgba(42, 45, 36, 0.50);
}

*, ::after, ::before {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI";
    font-weight: 400;
    color: var(--dark);
    margin: 0;
    padding: 0;
    font-size: 16px;
}


@font-face {
    font-family: 'roboto mono';
    src: url('/wp-content/themes/wavecode/assets/fonts/roboto-mono/roboto-mono-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'roboto mono';
    src: url('/wp-content/themes/wavecode/assets/fonts/roboto-mono/roboto-mono-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'roboto mono';
    src: url('/wp-content/themes/wavecode/assets/fonts/roboto-mono/roboto-mono-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'roboto mono';
    src: url('/wp-content/themes/wavecode/assets/fonts/roboto-mono/roboto-mono-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'roboto mono';
    src: url('/wp-content/themes/wavecode/assets/fonts/roboto-mono/roboto-mono-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


/* ----------------- BASICS ----------------- */
h1, h2, h3, h4, h5 {
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
    font-size: 32px;
}
p {
    margin: 0;
    line-height: 1.3;
}
a {
    text-decoration: none;
    vertical-align: bottom;
    color: var(--dark);
}
img {
    vertical-align: bottom;
    width: 100%;
    height: auto;
}
strong {
    font-weight: 500;
}
hr {
    width: 100%;
    height: 1px;
    background: var(--border);
    border: 0;
    margin: 0;
}


/* ----------------- EDITOR ----------------- */
.editor p {
    margin-bottom: 30px;
    line-height: 1.3;
}
.editor p:last-child {
    margin-bottom: 0;
}
.editor ul {
    margin: 0;
    margin-bottom: 30px;
    padding-left: 18px;
}
.editor li {
    /*margin-bottom: 10px;*/
    line-height: 1.3;
}
.editor li::marker {
  font-size: 0.7em;
}
.editor a {
    color: var(--purple);
    text-decoration: underline;
}
.editor h1, .editor h2, .editor h3, .editor h4, .editor h5 {
    margin-top: 54px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 24px;
}
.editor h1:first-child, .editor h2:first-child, .editor h3:first-child, .editor h4:first-child, .editor h5:first-child {
    margin-top: 0;
}
.editor img {
    margin-top: 25px;
    margin-bottom: 25px;
}
.underline--none a {
    text-decoration: none !important;
}


/* ----------------- HEADER ----------------- */
.header {
    position: relative;
    padding: 30px 0;
    background: yellow;
}
.footer {
    background: yellow;
    padding: 30px;
}


/* ----------------- LAYOUT ----------------- */
.wrapper {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}
