@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Bellefair&display=swap');

@keyframes menuAppear {
    0% {
        width: 0%;
    }

    100% {
        width: 80%;
    }
}

@keyframes textAppear {
    0% {
        color: rgba(255, 255, 255, 0);
    }

    100% {
        color: 100%;
    }
}

:root {
    --BarlowFont: "Barlow", sans-serif;
    --barlowCondensedFont: "Barlow Condensed", sans-serif;
    --bellefairFont: "Bellefair", serif;
}

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

body {
    height: 100vh;
    width: 100%;
    background-image: url(../../../assets/home/background-home-mobile.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    color: white;
}

header {
    display: grid;
    justify-items: right;
    background-color: rgba(0, 0, 0, 0);
}

header > div#logo {
    justify-self: left;
    position: relative;
    top: 40px;
}

header > div#burger, div#logo {
    padding: 0px 40px;
}

header > div#burger:hover {
    cursor: pointer;
}

menu {
    display: none;
}

nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    overflow: auto;
    z-index: 1;
    padding: 40px;
    height: 100vh;
    width: 80%;
    max-width: 350px;
    background-color: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(25px);
    justify-self: right;
    animation: menuAppear;
    animation-duration: 0.35s;
}

nav > #close {
    width: 100%;
    padding: 10px 0px;
    display: flex;
    justify-content: right;
}

nav > ul {
    list-style-type: none;
    line-height: 60px;
    font-size: 1.5em;
    width: 100%;
    font-family: var(--barlowCondensedFont);
    padding: 40px 0px;
}

ul > li {
    position: relative;
    right: 40px;
    width: 125.8%;
    max-width: 350px;
    display: grid;
}

ul > li:hover {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.25);
    transition: background-color 0.1s;
}

ul > li.active {
    border-left: 7px solid rgb(240, 240, 240);
}

ul > li > a {
    text-decoration: none;
    color: white;
    font-weight: 200;
    padding-left: 40px;
    letter-spacing: 2px;
}

ul > li > a > strong {
    margin-right: 10px;
}

ul > li > a > div {
    height: 100%;
    width: 10px;
    background-color: white;
    position: relative;
    top: -100%;
    right: -380px;
}

#container {
    padding: 60px 40px;
    display: grid;
    align-items: center;
    justify-content: center;
}

#container > #text {
    display: grid;
    justify-content: center;
}

#container > #text > h2 {
    color: #D0D6F9;
    font-family: var(--BarlowFont);
    font-weight: 100;
    text-transform: uppercase;
    text-align: center;
    font-size: 22px;
    justify-self: center;
    animation: textAppear 0.5s;
}

#container > #text >  h1 {
    font-family: var(--bellefairFont);
    font-weight: 100;
    font-size: 6em;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 0px 20px 0px;
    justify-self: center;
    animation: textAppear 1s;
}

#container > #text > p {
    font-family: var(--barlowCondensedFont);
    color: #D0D6F9;
    font-weight: 100;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    width: 90%;
    justify-self: center;
    animation: textAppear 2s;
}

#container > a {
    text-decoration: none;
    justify-self: center;
}

#container > a > div#circle {
    display: grid;
    align-content: center;
    height: 200px;
    width: 200px;
    background-color: white;
    text-align: center;
    margin-top: 120px;
    margin-bottom: -10px;
    border-radius: 50%;
    color: rgb(70, 70, 70);
    font-size: 16px;
    font-weight: 100;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-transform: uppercase;
    font-style: normal;
}