@import url('https://fonts.googleapis.com/css2?family=Cookie&display=swap');

:root{
    --main-accent-color: rgb(242, 181, 203);
    --secondary-accent-color: rgb(157, 63, 97); 
    --third-accent-color: rgb(129, 35, 69); 
    --main-background-color: #f1f3f2;
    --main-title-color: rgb(157, 63, 97);
    --secondary-title-color: rgb(200, 122, 150);
    --nav-text-color: rgb(97, 6, 40); 
    --main-title-color: rgb(157, 63, 97); 
    --main-text-color: #121212;
    --main-button-text-color: #f1f3f2;
    --secondary-button-text-color: #121212;
    --main-darkmode-color: #262626;

    --titlefont: 'Cookie', cursive;
    --textfont: 'Calibri','Candara','Segoe','Segoe UI','Optima',Arial,sans-serif;
}

html, body {
    margin: 0;
    height: 100%;
    font-family: var(--textfont);
}

h1, h2, h3{
    color: var(--main-title-color);
    font-family: var(--titlefont);
    font-weight: 100;
}

h1{
    font-size: 70px;
}

h2{
    font-size: 50px;
}


h3{
    font-size: 40px;
}

p{
    font-size: 20px;
}

img{
    max-width: 100%;
}

.Content-Div{
    max-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    background-color: var(--main-background-color);
}

.Content-Div.Menu{
    margin-right: 40%;
    position: absolute;
}

.Content-Div svg{
    position: absolute;
    bottom: 30px;
    left: 20px;
    fill: var(--secondary-accent-color);
    animation: bounce 2.5s infinite;
    z-index: 100;
}

.wrapper{
    min-height: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    background-color: var(--main-background-color);
}

/* Navigation */
.menu-div{
    height: 76px;
    /*
    background-color: var(--main-accent-color);
    */
    background: linear-gradient(90deg, var(--secondary-accent-color) 0%, var(--main-accent-color)) 100%;
}

.Mobile-Nav
{
    margin-top: 0;
    width: auto;
}

nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    padding-right: 15px;
    border-bottom: 1px solid var(--secondary-accent-color);
    position: relative;
    height: 100%;
    z-index: 1000;
}


/* Hamburger - Desktop */
/*
.nav-ul {
    display: flex;
    flex-direction: row;
    width: 350px;
    margin-left: calc(100% - 350px);
    margin-right: 0;
    background-color: var(--main-accent-color);
    opacity: 1;
    position: fixed;
    top: 0;
    z-index: 1000;
    height: 100%;
    border-left: 2px solid var(--secondary-accent-color);
}

.ul-nav{
    height: auto;
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    top: 0;
    padding: 0;
    top: 130px;
    position: absolute;
    width: 100%;
}

.ul-nav li{
    height: 30px;
    display: block;
    top: 0;
    width: 100%;
    margin: 15px 0 15px 0;
}


.ul-nav li a{
    padding: 25px 0 25px 0;
    width: 100%;
    font-size: 15px;
}
*/

.Mobile-Ham{
    height: 76px;
    border-bottom: 2px solid var(--secondary-accent-color);
    /*
    background-color: var(--main-accent-color);
    */

    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    padding-left: -15px;
    z-index: -10;
}

.nav-ul.show {
    display: flex;

}

.hamburger.nav-exit{
    top: 3px;
    right: 20px;
    position: absolute;
}

.nav-ul {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: -3px;
    list-style-type: none;
    margin: 0;
    top: 0;
}

.ul-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: -3px;
    list-style-type: none;
    margin: 0;
    height: 100%;
    top: 0;
}

.ul-nav li{
    display: block;
    width: fit-content;
    height: fit-content;
    padding: 0 5px;
}

.ul-nav li a {
    transition: color 0.2s ease;
    display: inline-block;
    color: var(--nav-text-color);
    text-align: center;
    text-decoration: none;
    padding: 8px 10px;
    font-family: var(--textfont);
    border-radius: 5px;
    font-weight: 700;
    font-size: 18px;
    font-style: normal;
    letter-spacing: 2px;
    /* text-transform: uppercase; */
    transition: background-color 0.2s, color 0.2s;
}

.ul-nav li a:hover, .ul-nav li a.active {
    
    background-color: var(--secondary-accent-color);
    color: var(--main-accent-color);
}

/* Hamburger */
.hamburger {
    background-color: transparent;
    border: 0;
    display: none;
    /*display: block;*/
    color: var(--main-text-color);
    font-size: 20px;
    cursor: pointer;
    padding: 25px;
    height: 68px;
}

.hamburger p{
    margin: 0;
}

.hamburger:focus {
    outline: none;
}


.logo{
    width: auto;
    height: 71px;
}

/* Page CSS */
.content-box{
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding-bottom: 115px;
    position: relative;
    min-height: 100%;
    align-items: center;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}

.IndexImage{
    border-radius: 10px; 
    border: 2px solid rgba(0, 0, 0, 0.2); 
    max-width: 100%; 
    float: left;
    margin-right: 50px;
    grid-area: IndexIMG;
    
}

/* Index page */
.IndexDiv{
    display: grid;
    grid-gap: 10px;
    grid-template-areas:
    'IndexIMG Title'
    'IndexIMG Info1'; /* Add more info if more info */
    margin-top: 50px;
    min-height: calc(100vh - 76px);
    width: 100%;
    font-weight: 100;
    position: relative;
    justify-content: center;
}

.IndexDiv h1{
    margin-bottom: 0;
}

.IndexDiv h2{
    margin-top: 10px;
}

.IndexInfo{
    text-align: center; 
    display: block; 
    grid-area: Info1;
}

.IndexInfo h2{
    color: var(--main-title-color);
    font-size: 2rem;
}

/* Info text */
.indexinfo{
    display: flex; 
    flex-direction: column;
    grid-area: Info1;
    text-align: left;
}



/* Frequent Problems */
.frequentColl{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.frequentColl h3{
    margin-bottom: 5px;
}

.frequentColl .problem{
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.frequentColl .problem .collbtn{
    cursor: pointer;
    width: 100%;
    border: none;
    outline: none;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    background-color: var(--secondary-accent-color);
    color: var(--main-background-color);
    text-align: left;
    transition: background-color 100ms ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.frequentColl .problem .collbtn:after{
    content: '\002B'; /* + */
    font-size: 18px;
    font-weight: 800;
    color: var(--main-background-color);
    float: right;
    margin-left: 5px;
}

.frequentColl .problem .problemdesc{
    display: none;
    padding: 0 15px;
    overflow: hidden;
    background-color: var(--nav-text-color);
    text-align: left;
    color: var(--main-background-color);
}

.frequentColl .problem .collbtn.active, .frequentColl .problem .collbtn:hover{
    background-color: var(--third-accent-color);
}

.frequentColl .problem .collbtn.active::after{
    content: "\2212"; /* - */
}

/*#region*/ /* Footer */
footer{
    bottom: 0;
    width: 100%;
    background-color: var(--main-darkmode-color);
    color: #a6a6a6;
    padding: 15px 0px 15px 0px;
    position: relative;
    clear: both;
    font-size: 15px;
    margin-top: -84px;
}

.footerImage{
    left: 10px;
    margin-left: 20px;
    width: 50px;
    height: 50px;
}

.footerImages
{
    text-align: left; 
    position: absolute; 
}

.footerButton{
    right: 0;
    text-align: right; 
    position: absolute; 
}

.footerButton a{
    transition: color 0.3s ease;
    display: inline-block;
    color: var(--secondary-title-color);
    text-align: center;
    padding: 17px;
    margin-right: 5px;
    font-family: "proxima-nova","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    /* text-transform: uppercase; */
}

.footerButton a:hover{
    color: var(--main-title-color)
    
}

footer p{
    margin: 0;
    text-align: center;
    font-size: 15px;
}
/*#endregion*/

/* Cookie popup */
.CookiesPopup
{
    display: none;
    text-align: left;
    word-wrap: normal;
    padding: 12px;
    height: 100px;
    line-height: 1.2px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--main-darkmode-color);
    color: var(--main-button-text-color);
    bottom: -123px;
    animation-name: slideup;
    animation-delay: 0.2s;
    animation-duration: 0.6s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}

@keyframes slideup{
    0%{bottom: -123px}
    100%{bottom: 0px}
}

.CookiesPopup.NotAccepted{
    display: block;
}

.CookiesPopup h3{
    margin-top: 5px;
}

.CookiesPopup p{
    font-size: 17px;
    margin: 10px;
}

@media screen and (max-width: 1600px) {
    .content-box{
        width: auto;
        margin: 0 4vw;
    }
}

@media screen and (max-width: 1120px) {

    .nav-ul {
        width: 50%;
        margin-left: 50%;
    }

    /* Navigation - Mobile*/

    .nav-ul {
        display: none;
        flex-direction: column;
        width: 50%;
        height: 100vh;
        margin-left: 50%;
        margin-right: 0;
        background: linear-gradient(0deg, var(--secondary-accent-color) 0%, var(--main-accent-color)) 100%;

        opacity: 1;
        position: fixed;
        margin-bottom: -100vh;
        top: 0;
        z-index: 1000;
        border-left: 1px solid var(--secondary-accent-color);
    }

    .ul-nav{
        height: auto;
        display: flex;
        flex-direction: column;
        list-style-type: none;
        gap: 15px;
        margin: 0;
        top: 0;
        padding: 0;
        top:130px;
        position: absolute;
        width: 100%;
    }

    .ul-nav li{
        height: fit-content;
        display: block;
        top: 0;
        width: 100%;
        padding: 0;
    }

    .ul-nav li a{
        padding: 25px 0 25px 0;
        width: 100%;
        font-size: 20px;
    }

    .Mobile-Ham{
        height: 76px;
        border-bottom: 1px solid var(--secondary-accent-color);
        background-color: var(--main-accent-color);
        width: 100%;
        position: absolute;
        top: 0;
        right: 0;
        padding-left: -15px;
    }

    .nav-ul.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hamburger.nav-exit{
        top: 3px;
        right: 20px;
        position: absolute;
    }
    
}

@media screen and (max-width: 1300px){

    .Content-Div svg{
        display: none;
    }

    .IndexInfo{
        margin-left: 0;
    }

    .IndexDiv {
        grid-template-areas:
            'IndexIMG'
            'Title'
            'Info1';
        place-items: center;
    }

    .IndexImage {
        margin: 0;
        float: none;
    }

    h1{
        font-size: 60px;
    }

    h2{
        font-size: 40px;
    }

    h3{
        font-size: 35px;
    }

    /* Content box */
    .content-box{
        padding-bottom: 170px;
    }
}

@media screen and (max-width: 835px){
    
    h1{
        font-size: 50px;
    }

    h2{
        font-size: 35px;
    }

    h3{
        font-size: 30px;
    }

    p{
        font-size: 15px;
    }

    .frequentColl .problem{
        width: 80%;
    }

    
    /* Footer */

    .footerImage{
        width: 40px;
        height: 40px;
    }

    .footerImages{
        text-align: center; 
        position: relative; 
    }

    footer p{
        font-size: 14px;
    }

    .footerButton a{
        font-size: 14px;
        padding: 17px 4px 17px 4px;
    }

    .footerButton{
        right: 0;
        text-align: center; 
        position: relative; 
        padding: 5px 0 5px 0;
    }
}

@media screen and (max-width: 700px){
    .CookiesPopup p{
        font-size: 14px;
        margin: 10px;
    }

    .nav-ul {
        width: 50%;
        margin-left: 50%;
    }
}

@media screen and (max-width: 485px){
    h1{
        font-size: 40px;
    }

    h2{
        font-size: 30px;
    }

    h3{
        font-size: 25px;
    }

    .frequentColl .problem{
        width: 90%;
    }
    
    .logo{
        width: auto;
        height: 65px;
    }

    .nav-ul {
        width: 75%;
        margin-left: 25%;
    }
}

@media screen and (max-width: 425px){
    .logo{
        width: auto;
        height: 58px;
    }
}

@media screen and (max-width: 392px){
    .logo{
        width: auto;
        height: 50px;
    }

    .nav-ul {
        width: 100%;
        margin-left: 0;
    }
}

