/* TO DO: symbolen en default display tonen, nette css en html. dan .js */
/* keep it simple stupid */
/* download icons opnieuw en schoon de mappen op */


/* #region root variables */
:root {
    --black-color: rgb(40, 40, 40);
    --background-color: #faebd7; /* antiquewhite */
    --white-color: rgb(250, 250, 245); /* #fafaf5 */
    --theme-color: #587000; /* moss green */
    --accent-color: #8B4729; /* burnt orange */
}
/* #endregion */

/* #region html and body */
* {
    margin: 0;
    padding: 0;
    color: var(--black-color);
    user-select: none;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Radley", serif;
    font-size: clamp(8px, 4vmin, 16px);
    scrollbar-width: none;
    -ms-overflow-style: none;
    outline: none;
}

::-webkit-scrollbar {
    display: none;
}

html {
    display: flex;
    justify-content: center;
    height: 100dvh;
    width: 100dvw;    
    background-color: var(--background-color);
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 30%;
}

@media (orientation: portrait) {
    html {
        padding: 0;
    }
    body {
        width: 100%;
    }            
}
/* #endregion */

header,
footer {
    height: 3rem;
    width: 100%;
    background-color: var(--theme-color);
}


main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: scroll;
    padding: 1rem;
    width: 100%;
}

section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
    border-radius: .5rem;
    background-color: var(--white-color);
}

.section-header {
    display: flex;
    gap: .5rem;
    justify-content: space-between;
    width: 100%;
}

section h1 {
    font-size: 1.5rem;
    line-height: 3rem;
    height: 3rem;
    font-style: italic;
    flex: 1;
    border-bottom: .0625rem solid var(--theme-color);
}

section h1 > span {
    font-size: 1.5rem;
    line-height: 3rem;
    height: 3rem;
    font-style: italic;
}

.section-navigation {
    display: flex;
    gap: .5rem;
}

.section-navigation > img {
    padding: .5rem;
    border-radius: .5rem;
    height: 3rem;
    width: 3rem;
    background-color: lightgray;
}

#like-btn,
#proposals-btn,
#shop-btn,
#what-btn {
    background-color: var(--theme-color);
    border: none;
}

.section-body {
    width: 100%;
    background-color: var(--white-color);
}

h2 {
    font-size: 1rem;
}

img {
    width: 2rem;
}



/* #region */
.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.theme {
    color: var(--theme-color);
}
/* #endregion */