/*==========
--- 01. TYPOGRAPHY SYSTEM

- Font sizes (px):
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights:
Default: 400
Medium: 500
Semi-bold: 600
Bold: 700


- Line heights:
Default: 1
Small: 1.05
Medium: 1.2
Paragraph default: 1.6
Large: 1.8

- Letter spacing
0.75px
0.5px




--- 02. COLORS
- Primary color: #862E9C (grape-09)
- Tint: #F8F0FC (tint-90)
#9e58b0 (tint-20)
- Shade: #79298C (shade-10)
- Accents:
- Greys:
#767676 (lightest grey allowed on white for accessibility)
#555
#333


--- 03. IMAGES

--- 04. ICONS

--- 05. SHADOWS
0 2.4rem 4.8rem rgba(0,0,0,0.075)

--- 06. BORDER RADIUS
- Default: 1rem (10px)

--- 07. WHITE SPACE
- Spacing System (px):
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

===========*/



/*
==========
GLOBAL RESETS
===========
*/

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

html {
    /*font-size: 10px;*/
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    /*font-family: sans-serif;*/
    /*font-family: Sana;*/
    font-family: "Merriweather Sans", sans-serif;
    font-optical-sizing: auto;
    /*line-height: 1;*/
    font-weight: 400;
    /*font-weight: 300;*/
    color: #555;

    /*only works if there is nothing absolutely positioned in relation to body*/
    overflow-x: hidden;

    /*color: #495057;*/
}



/*====================
GENERAL REUSABLE COMPONENTS
====================*/

.container-large {
    /*max-width: 130rem;*/
}

.max-width-1320 {
    max-width: 132rem;
}

.max-width-1300 {
    max-width: 130rem;
}

.max-width-1200 {
    max-width: 120rem;
}

.container {
    margin: 0 auto;
    /*padding: 0 3.2rem;*/
}

/*.grid {
    display: grid;
    gap: 9.6rem;
}*/
.grid {
    display: grid;
    /*gap: 4.8rem;*/
}

.gap-80 {
    gap: 8.0rem !important;
}

.gap-64 {
    gap: 6.4rem !important;
}

.gap-48 {
    gap: 4.8rem !important;
}

.gap-32 {
    gap: 3.2rem !important;
}

.grid--2-cols {
    /*grid-template-columns: 1fr 1fr;*/
    grid-template-columns: repeat(2, 1fr);
}

/*.grid--3-cols {
    grid-template-columns: repeat(3, 1fr);
}*/
.grid--3-cols {
    grid-template-columns: repeat(3, 1fr);
}

.grid--4-cols {
    grid-template-columns: repeat(4, 1fr);
}

.grid--5-cols {
    grid-template-columns: repeat(5, 1fr);
}

.heading-1, .heading-2, .heading-3 {
    color: #862E9C;
    font-family: "Merriweather", serif;

    letter-spacing: -0.5px;
    font-weight: 700;
}

.heading-1 {
    font-size: 5.2rem;
    /*font-size: 4.4rem;*/
    /*line-height: 1.05;*/
    /*line-height: 1.1;*/
    line-height: 1.3;
    /*color: #333;*/
    margin-bottom: 3.2rem;

    text-align: center;
}

.heading-2 {
    /*font-size: 2.4rem;*/
    /*font-size: 3rem;*/
    font-size: 4.4rem;
    line-height: 1.2;
    /*margin-bottom: 9.6rem;*/
}

.heading-3 {
    /*font-size: 3.6rem;*/
    font-size: 3rem;
    line-height: 1.2;
    /*margin-bottom: 3.2rem;*/

}

.subheading {
    display: block;
    font-size: 2rem;
    font-weight: 500;
    /*color: #862E9C;*/
    color: #79298C;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
    letter-spacing: 0.75px;
}



.main-nav-link:link,
.main-nav-link:visited {
    display: inline-block;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.8rem;

    transition: all .3s;
}

.main-nav-link:hover,
.main-nav-link:active {
    color: #79298C;
}

.page-link:link,
.page-link:visited {
    text-decoration: none;
    font-size: 1.8rem;
    line-height: 1.6;
    color: #862E9C;

    transition: all .3s;
}

.page-link:hover,
.page-link:active {
    color: #79298c;
}

.page-link span {
    border-bottom: 1px solid #862E9C;
    transition: all .3s;
}

.page-link span:hover {
    border-bottom: 1px solid transparent;
}


.button,
.button:link,
.button:visited {
    display: inline-block;
    font-size: 2rem;
    /*font-weight: 600;*/
    text-transform: uppercase;

    text-decoration: none;
    padding: 1.6rem 3.2rem;
    border-radius: 1rem;

    border: none;
    cursor: pointer;
    font-family: inherit;

    transition: all .3s;
}

.button,
.button-full:link,
.button-full:visited {
    background-color: #862E9C;
    color: #fff;
}

.button-full:hover,
.button-full:active {
    background-color: #79298C;
}

.button-outline:link,
.button-outline:visited {
    background-color: #fff;
    color: #555;
}

.button-outline:hover,
.button-outline:active {
    background-color: #F8F0FC;

    /*border: 3px solid white;*/

    /* - to add border inside - no x, no y, no blur, just scale   */
    box-shadow: inset 0 0 0 3px #fff;
}

.button-form {
    background-color: #36123e;
    color: #F8F0FC;

    align-self: end;
    padding: 1.2rem;
}

.button-form:hover {
    background-color: #fff;
    color: #555;
}

/*====================
HELPER CLASSES
====================*/



.font-size-18 {
    font-size: 1.8rem;
}

.font-size-44 {
    font-size: 4.4rem;
}



.align-items-center {
    align-items: center;
}

.display-none {
    display: none !important;
}

.margin-0-auto {
    margin: 0 auto;
}

.margin-right-16 {
    margin-right: 1.6rem !important;
}

.margin-bottom-16 {
    margin-bottom: 1.6rem !important;
}

.margin-bottom-20 {
    margin-bottom: 2.0rem !important;
}

.margin-bottom-24 {
    margin-bottom: 2.4rem !important;
}

.margin-bottom-32 {
    margin-bottom: 3.2rem !important;
}

.margin-bottom-48 {
    margin-bottom: 4.8rem !important;
}

.margin-bottom-96 {
    margin-bottom: 9.6rem !important;
}

.margin-top-16 {
    margin-top: 1.6rem !important;
}

.margin-top-24 {
    margin-top: 2.4rem !important;
}

.margin-top-32 {
    margin-top: 3.2rem !important;
}

.margin-top-48 {
    margin-top: 4.8rem !important;
}

.margin-top-96 {
    margin-top: 9.6rem !important;
}

.padding-0-auto {
    padding: 0 auto;
}

.padding-0-32 {
    padding: 0 3.2rem;
}

.text-align-initial {
    text-align: initial;
}

.text-align-center {
    text-align: center !important;
}

.font-weight-500 {
    font-weight: 500 !important;
}
.font-weight-600 {
    font-weight: 600 !important;
}
.font-weight-700 {
    font-weight: 700 !important;
}

.max-width-800 {
    max-width: 80rem;
}

.max-width-720 {
    max-width: 72rem;
}
