/* 
Reset CSS
This is a simple CSS reset to remove default browser styles.
It helps to create a consistent baseline across different browsers.
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

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

/* Font Styles */
/* Variable font */
@font-face {
    font-family: 'Manrope';
    src: url('./../font/Manrope/Manrope-VariableFont_wght.ttf') format('truetype');
}

@font-face {
    font-family: 'Manrope';
    src: url('./../font/Manrope/static/Manrope-Light.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('./../font/Manrope/static/Manrope-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('./../font/Manrope/static/Manrope-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Canela';
    src: url('./../font/fonts/fonnts.com-Canela-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Color Variables */
:root {
    --primary-color: #A67C52;
    --text-color: #000000;
    --color-white: #FFFFFF;
    --background-color: #F2F2F2;
    --action-color: #A67C52;
    --unaction-color: #E6E6E6;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
    --active-color: #000000;
}


/*
General Styles
This section contains general styles for the website.
*/
body {
    font-family: "Manrope", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
    ;
    background-color: var(--background-color);
}

html,
body {
    scroll-behavior: smooth;
}

h1,
h2,
h3 {
    color: var(--header-color);
    font-weight: 600;
    font-family: 'Canela';
}

p {
    margin-bottom: 1em;
}

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

a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 2.2em;
}

h2 {
    font-size: 1.8em;
}

h3 {
    font-size: 1.4em;
}

.btn, 
.button,
button {
    padding: 8px 16px;
}

/* Responsive Design */
/* iPad Screen Size */
@media (max-width: 1024px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.8em;
    }

    h3 {
        font-size: 1.4em;
    }

    .btn, 
    .button,
    button {
        padding: 8px 16px;
    }
}

/* iPhone Screen Horizontal Size */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.6em;
    }

    h3 {
        font-size: 1.2em;
    }

    .btn, 
    .button,
    button {
        padding: 6px 12px;
    }
}

/* iPhone Screen Vertical Size */
@media (max-width: 480px) {
    body {
        font-size: 13px;
    }

    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.4em;
    }

    h3 {
        font-size: 1em;
    }

    .btn, 
    .button,
    button {
        padding: 5px 10px;
    }
}