/*
Theme Name: Van Haven
Theme URI: https://vanhaven.com
Author: Ismail Ansari
Description: Custom WordPress theme for VanHaven
Version: 1.0
Text Domain: vanhaven
*/

/* Blauer Nue Font Family */

@font-face {
    font-family: 'Blauer Nue';
    src: url('.') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Blauer Nue';
    src: url('./fonts/Blauer-Nue-Font/Blauer-Nue-Extralight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Blauer Nue';
    src: url('./fonts/Blauer-Nue-Font/Blauer-Nue-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Blauer Nue';
    src: url('./fonts/Blauer-Nue-Font/Blauer-Nue-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Blauer Nue';
    src: url('./fonts/Blauer-Nue-Font/Blauer-Nue-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Blauer Nue';
    src: url('./fonts/Blauer-Nue-Font/Blauer-Nue-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Blauer Nue';
    src: url('./fonts/Blauer-Nue-Font/Blauer-Nue-Heavy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Blauer Nue';
    src: url('./fonts/Blauer-Nue-Font/Blauer-Nue-Extrabold.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: var(--white);
    font-family: 'Blauer Nue', sans-serif;
    background-color: var(--background-color);
}

h1 {
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
}

h2 {
    color: var(--white);
    font-weight: 500;
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

h4 {
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
}

p {
    font-size: 16px;
    color: var(--white);
    font-weight: 400;
}

li {
    list-style: none;
}

a {
    color: var(--white);
    text-decoration: none;
}