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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

:root {
    --gold: #BA834B;
    --white: #fff;
    --font-color: #4d4d4d;
    --background: #F9F3ED;
    --decoration: #E8D4C0;
    --footer-color: #F2E6D9;
}

body {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;

    /* Fonts */
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 175%;
    color: var(--font-color);

    /* Background */
    background-color: var(--background);
    /* background-color: black; */
}

.nav-bar, .header-content, main{
    width: calc(100% - 160px);
    max-width: 1920px;
}

h1, h2 {
    --font-size: 1.5rem;
    --spacing-ratio: 0.25;
    font-size: var(--font-size);
    letter-spacing: calc(var(--font-size) * var(--spacing-ratio));
    /* font-size: 1.5rem;
    letter-spacing: 0.375rem; */
    font-weight: 700;
    
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 2.5rem;
}

h3, h4, h5, h6 {
    font-family: 'Kalnia', serif;
    font-weight: 400;
    line-height: normal; 
}

h3 {
    --font-size-h3: 5.25rem;
    --line-height-h3: 1.22;
    font-size: var(--font-size-h3);
    line-height: calc(var(--font-size-h3) * var(--line-height-h3));
    color: var(--white);
}

h4 {
    font-size: 4.5rem;
}


h5 {
    font-size: 3rem;
    line-height: auto;
}

h6 {
    font-size: 2.25rem;
}

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

ul {
    list-style: none;
    display: flex;
    flex-direction: row;
}

