:root
{
    --primary-color: rgb(1, 255, 170);
    --secondary-color: white;
    --tertiary-color: rgb(58, 223, 214);

    --inactive: rgb(213, 245, 243);
    --inactive-dark: rgb(88 155 143);

    --text-color: black;
    --secondary-text-color: white;
    --text-dark: white;

    --nav-color: rgb(255 255 255 / 87%);
    --nav-dark: rgb(26 26 26 / 82%);

    --background-color: rgb(255, 255, 255);
    --background: linear-gradient(33deg,rgb(43 146 255) 4%, rgba(52, 224, 175, 1) 51%, rgba(29, 222, 90, 1) 100%);
    --background-dark: rgb(70, 70, 70);
    --background-dark-secondary: #353535;

    --instagram: linear-gradient(162deg,rgba(136, 48, 230, 1) 0%, rgba(255, 107, 154, 1) 33%, rgba(249, 153, 116, 1) 77%, rgba(242, 203, 75, 1) 100%);
    --steam:linear-gradient(160deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 153, 255, 1) 100%);
    --twitter: linear-gradient(-130deg,rgba(65, 163, 242, 1) 0%, rgba(45, 123, 175, 1) 59%, rgba(11, 42, 56, 1) 100%);
    --bluesky: linear-gradient(90deg,rgba(28, 143, 237, 1) 0%, rgba(107, 228, 255, 1) 69%, rgba(97, 225, 237, 1) 100%);
    --youtube: linear-gradient(-144deg,rgba(255, 64, 150, 1) 0%, rgba(255, 0, 0, 1) 30%, rgba(110, 13, 18, 1) 92%);
    --twitch: linear-gradient(160deg,rgb(178, 69, 250) 0%, rgba(157, 0, 255, 1) 59%, rgba(80, 0, 130, 1) 96%);
    --discord: linear-gradient(90deg,rgba(93, 161, 217, 1) 0%, rgba(113, 104, 217, 1) 50%, rgba(77, 68, 179, 1) 90%);

    --border-radius: 1rem;
    --box-shadow: 0 0 40px 10px rgba(0, 0, 0, 0.438);

    --bar-height: 0.25rem;
    --bar-width: 2.3rem;
    --menu-gap: 0.5rem;
    --menu-height: calc(var(--bar-height) * 3 + var(--menu-gap) * 2 );

    --animation-timing: 200ms ease-in-out;

    color-scheme: light dark;
}

*
{
    margin: 0;
    padding: 0;
}

h1
{
    font-family: sans-serif;
    font-size: 3.2rem;
    padding: 1rem;
    color: light-dark(var(--text-color), var(--text-dark));
}

h2
{
    font-family: sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

h3
{
    font-family: sans-serif;
    font-size: 1.7rem;
}

p
{
    font-family: sans-serif;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.menu::before, .menu::after, .menu input 
{
    --x-width: calc( var(--menu-height) * 1.41421356237 );

    content: "";
    width: var(--bar-width);
    height: var(--bar-height);
    transform-origin: left center; 
    background-color: light-dark(var(--text-color), var(--text-dark));
    border-radius: var(--border-radius);
    transition: opacity var(--animation-timing), width var(--animation-timing), rotate var(--animation-timing), translate var(--animation-timing);
}

.menu input
{
    appearance: none;
    padding: 0;
    margin: 0;
    outline: none;
    pointer-events: none;
}

.menu:has(:checked)::before
{
    rotate: 45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / -2);
}

.menu:has(:checked)::after
{
    rotate: -45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / 2);
}

.menu input:checked 
{
    width: 0;
    opacity: 0;
}

.menu 
{
    display: flex;
    flex-direction: column;
    gap: var(--menu-gap);
}

.inactive , .card > a.inactive
{
    background-color: light-dark(var(--inactive), var(--inactive-dark));
    cursor: not-allowed;
}

.progress
{
    background-color: light-dark(var(--inactive), var(--inactive-dark));
    border-radius: var(--border-radius);
    height: 1rem;
    width: 75%;
    margin:1rem;
}

.progress > div
{
    height: inherit;
    background-color: var(--tertiary-color);
    border-radius: inherit;
}

.showcase
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    backdrop-filter: brightness(0.4);
    top: 0;
    position: fixed;
    z-index: 4;
}

.showcase > div
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase > div > img
{
    max-height:100vh;
    max-width: 80%;
    border-radius: var(--border-radius);
    box-shadow: 0 0 40px 10px rgba(0, 0, 0, 0.438);
    background-color: white;
}

.showcase button
{
    background-color: transparent;
    border: none;
    color: black;
    margin: 2rem;
    transition: 500ms background-color;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase svg
{
    width: 3rem;
    height: 4rem;
    transition: 500ms color;
}

.showcase button:hover
{
    background-color: rgba(0, 0, 0, 0.527);
}

.showcase > button#close
{
    position: absolute;
    right: 2rem;
    top: 2rem;
}

.showcase button#close svg:hover
{
    color: red;
}

.invisable
{
    display: none;
}

body
{
    width: 100%;
    background: white;
    background-repeat: no-repeat;
}

header
{
    padding: 0.5rem;
    padding-left: 15%;
    padding-right: 15%;
    background: light-dark(var(--nav-color), var(--nav-dark));
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.596);
    position: sticky;
    top: 0;
    z-index: 2;
}

header > nav
{
    display: flex;
    align-items: center;
    gap: 2rem;
}

header > nav > a
{
    display: flex;
    align-items: center;
}

header label.menu 
{
    height: fit-content;
    position: absolute;
    left: 1rem;
    top: 1.125rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
}

header a > img
{
    border-radius: 2rem;
    height: 3rem;
}

header > nav > nav
{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 1.3rem;
}

header > nav > nav > a
{
    text-decoration: none;
    color: light-dark(var(--text-color), var(--text-dark));
    font-family: sans-serif;
    transition: 500ms color;
}

header > nav > nav > a:hover
{
    color:var(--primary-color);
}

main 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: light-dark(var(--background-color), var(--background-dark));
}

main > section.landing
{
    width: 100%;
}

main > section.landing > img
{
    height: 40rem;
    width:100%;
    object-fit: cover;
}

main > section.info-card
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: fit-content;
    border: 5px solid light-dark(var(--background-color), var(--background-dark));
    border-radius: calc(var(--border-radius) + 1rem);
    background-color: light-dark(var(--background-color), var(--background-dark-secondary));
    padding: 1rem;
    top: -10rem;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.445)
}

main section.info-card > section.info
{
    display: flex;
    gap: 2rem;
    width: 100%;
    margin-bottom: 1rem;
}

section.info
{
    flex-wrap: wrap;
    justify-content: center;
}

main > section.info-card > section.info > img
{
    width: 20rem;
    border-radius: var(--border-radius);
}

section.info > div
{
    max-width: 50rem;
}

main > section.info-card > section.info > div > p
{
    word-wrap: break-word;
}

main > section.info-card > div.socails
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

main > section.info-card > div.socails > a
{
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    border-radius: var(--border-radius);
    font-family: sans-serif;
    font-size: 1.3rem;
    transition: 250ms box-shadow, 250ms transform;
}

section.container
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 5rem;
    gap: 2rem;
}

div.card
{
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.445);
    padding: 1rem;
    border-radius: calc(var(--border-radius) + 1rem);
    background-color: light-dark(var(--background-color), var(--background-dark-secondary));
    border: 5px solid light-dark(var(--background-color), var(--background-dark));
    width: 35rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

div.card > img
{
    width: 35rem;
    height: 20rem;
    object-fit: cover;
    border-radius: var(--border-radius);
}

div.card > p
{
    text-wrap: wrap;
    width: 100%
}

div.card > a
{
    padding:0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: var(--tertiary-color);
    color: white;
    border-radius: var(--border-radius);
    font-family: sans-serif;
    text-decoration: none;
    transition: 250ms transform, 250ms background-color;
}

section.gallery > img
{
    height: 30rem;
    width: 30rem;
    border-radius: var(--border-radius);
    object-fit: cover;
    transition: 250ms filter;
    background-color:white;
}

section.gallery > img:hover
{
    cursor: pointer;
    filter:brightness(0.4);
}

div.card > a:hover:not(.inactive)
{
    background-color: rgb(36, 252, 162);
}

div.socails > a:hover
{
    box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.432);
    transform: scale(1.01);
}

div.socails > a.instagram
{
    background: var(--instagram);
}

div.socails > a.steam
{
    background: var(--steam);
}

div.socails > a.bluesky
{
    background: var(--bluesky);
}

div.socails > a.twitter
{
    background: var(--twitter);
}

div.socails > a.youtube
{
    background: var(--youtube);
}

div.socails > a.twitch
{
    background: var(--twitch);
}

div.socails > a.discord
{
    background: var(--discord);
}

svg
{
    color: white;
    width: 1.5rem;
    height: 1.5rem;
}

footer 
{
    background: var(--background);
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10rem;
    padding-top: 5rem;
    padding-bottom: 4rem;
}

footer > nav
{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

footer > nav > a > img
{
    width: 4rem;
    border-radius: 4rem;
    border: 5px solid white;
}

footer > nav > div
{
    display: flex;
    gap: 4.5rem;
}

footer > nav > div > a
{
    color: white;
    text-decoration: none;
    border-bottom: solid rgba(255, 255, 255, 0) 2px;
    transition: 550ms border;
    font-family: sans-serif;
    font-size: 1.75rem;
    padding-bottom:0.5rem;
    display: flex;
    align-items: center;
}

footer > nav > div > a:hover 
{
    border-bottom: solid white 2px;
}

footer > nav.socails
{
    justify-content: center;
    gap: 5.3rem;
}

footer svg
{
    width: 2rem;
    height: 2rem;
    transition: 500ms transform;
}

footer svg:hover
{
    transform: scale(1.2);
}

