:root {
    --main-100: oklch(0.9297 0.0173 332.15);
    --main-200: oklch(89.647% 0.06384 331.823);
    --main-300: oklch(85.342% 0.12573 331.563);
    --main-400: oklch(78.363% 0.1771 331.576);

    --primary-50: oklch(0.950158 0.03767 319.1667);
    --primary-100: oklch(0.8743 0.0952 318.84);
    --primary-200: oklch(0.7939 0.1648 318.55);
    --primary-300: oklch(0.7175 0.2327 318.3);
    --primary-900: oklch(25.981% 0.09335 318.576);

    --secondary-100: oklch(0.9619 0.0745 137.43);
    --secondary-200: oklch(0.9393 0.1229 138.14);
    --secondary-300: oklch(0.9162 0.1769 138.69);
    --secondary-400: oklch(0.8992 0.2182 139.51);
    --secondary-500: oklch(41.915% 0.11446 139.906);
    --secondary-900: oklch(0.5953 0.1962 143.47);

    --error: oklch(69.753% 0.19301 23.522);
    --success: oklch(0.7 0.1204 216.64);

    --main-gradient-1: linear-gradient(135deg, var(--main-100) 0%, var(--main-200) 100%);

    --text-accent: oklch(23.84% 0.0918 332.81);
}

@font-face {
    font-family: "Sigmar";
    src: url("fonts/Sigmar/Sigmar-Regular.ttf");
    font-style: normal;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    list-style: none;
    font-size: 1rem;
    font-weight: 400;
    border: none;
}


.no-scroll-x {
    overflow-x: hidden;
}


.shadow-1 {
    box-shadow: 
    0 1px 1px hsl(0deg 0% 0% / 0.075),
      0 2px 2px hsl(0deg 0% 0% / 0.075),
      0 4px 4px hsl(0deg 0% 0% / 0.075),
      0 8px 8px hsl(0deg 0% 0% / 0.075),
      0 16px 16px hsl(0deg 0% 0% / 0.075);
}


.bg-gradient-100 {
    background-image: var(--main-gradient-1);
    background-position: center;
    background-size: cover;
}
.bg-100, .bg-100-hover:hover {
    /* background-color: var(--main-100); */
    background-color: var(--primary-50);
}
.bg-200, .bg-200-hover:hover {
    /* background-color: var(--main-200); */
    background-color: var(--primary-100);
}
.bg-300, .bg-300-hover:hover {
    /* background-color: var(--main-300); */
    background-color: var(--primary-200);
}
.bg-400, .bg-400-hover:hover {
    /* background-color: var(--main-400); */
    background-color: var(--primary-300);
}

.bg-secondary-100, .bg-secondary-100-hover:hover {
    background-color: var(--secondary-100);
}
.bg-secondary-200, .bg-secondary-200-hover:hover {
    background-color: var(--secondary-200);
}
.bg-secondary-300, .bg-secondary-300-hover:hover {
    background-color: var(--secondary-300);
}
.bg-secondary-400, .bg-secondary-400-hover:hover {
    background-color: var(--secondary-400);
}


.border-hover:focus {
    outline: 0 none;
    background-color: var(--primary-100);
}


.color-accent {
    color: var(--primary-900);
}
.color-secondary-100 {
    color: var(--secondary-100);
}
.color-secondary-200 {
    color: var(--secondary-200);
}
.color-secondary-300 {
    color: var(--secondary-300);
}
.color-secondary-400 {
    color: var(--secondary-400);
}

.error {
    color: var(--error);
}
.success {
    color: var(--success);
}


.debug-border {
    border: 1px red solid;
}


.bl-1, .border-1 {
    border-top-left-radius: 32px;
    border-bottom-left-radius: 32px;
}
.br-1, .border-1 {
    border-top-right-radius: 32px;
    border-bottom-right-radius: 32px;
}

.bl-2, .border-2 {
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
}
.br-2, .border-2 {
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
}

.bl-3, .border-3 {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}
.br-3, .border-3 {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}


.full-screen, .full-screen-wide {
    width: 100vw;
    height: 100vh;
}

.height-full, .height-full-wide {
    height: 100%;
}
.height-max-75vh {
    max-height: 75vh;
}
.height-max-full {
    max-height: 100%;
}
.height-max-vh {
    max-height: 100vmax;
}

.width-full, .width-full-wide {
    width: 100%;
}
.width-half, .width-half-wide {
    width: 50%;
}
.width-max {
    max-width: 600px;
}
.width-max-800 {
    max-width: 800px;
}
.width-max-vh {
    max-width: 100vmin;
}
.width-auto {
    width: auto;
}

.width-max-hv {
    max-width: 50vw;
}
.width-max-3-4 {
    max-width: 75%;
}
.width-min-half {
    min-width: 50%;
}
.width-min-hv {
    min-width: 50vw;
}
.width-min {
    min-width: 400px;
}
.width-max-quarter-v {
    max-width: 25vw;
}

.padding-1 {
    padding: 36px;
}
.padding-2 {
    padding: 24px;
}
.padding-3 {
    padding: 16px;
}

.py-1 {
    padding-top: 32px;
    padding-bottom: 32px;
}

.px-2 {
    padding-left: 24px;
    padding-right: 24px;
}
.px-3 {
    padding-left: 16px;
    padding-right: 16px;
}
.px-10p {
    padding: 10%;
}

.pt-1 {
    padding-top: 32px;
}

.pb-1 {
    padding-bottom: 32px;
}
.pb-3 {
    padding-bottom: 16px;
}
.pb-4 {
    padding-bottom: 8px;
}


.margin-auto {
    margin: auto;
}
.my-3 {
    margin-top: 16px;
    margin-bottom: 16px;
}
.mb-3 {
    margin-bottom: 16px;
}
.mb-4 {
    margin-bottom: 8px;
}
.mt-4 {
    margin-top: 8px;
}


.headline {
    font-family: "Sigmar", sans-serif;
}


.fw-1 {
    font-weight: 700;
}
.fw-2 {
    font-weight: 600;
}
.fw-3 {
    font-weight: 500;
}

.fs-1 {
    font-size: 2.25rem;
}
.fs-2 {
    font-size: 1.75rem;
}
.fs-3 {
    font-size: 1.25rem;
}
.fs-4 {
    font-size: 0.75rem;
}
.fs-5 {
    font-size: 0.25rem;
}


.grid, .grid-wide {
    display: grid;
}

.columns-2, .columns-2-wide {
    grid-template-columns: 1fr 1fr;
}
.columns-2-1, .columns-2-1-wide {
    grid-template-columns: 2fr 1fr;
}

.rows-min {
    grid-template-rows: min-content;
}
.rows-1 {
    grid-template-rows: 1fr;
}
.rows-1-5, .rows-1-5-wide {
    grid-template-rows: 1fr 5fr;
}

.startc-1 {
    grid-column-start: 1;
}
.spanc-2 {
    grid-column-end: span 2;
}


.flex-row {
    display: flex;
    flex-direction: row;
}
.flex-row * {
    flex: 1;
}

.wrap {
    flex-wrap: wrap;
}


.gap-1 {
    gap: 36px;
}


.center {
    justify-items: center;
    justify-content: center;
}
.center-y {
    align-items: center;
}

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


.ratio-9-16 {
    aspect-ratio: 9 / 16;
}
.ratio-3-4 {
    aspect-ratio: 3 / 4;
    max-height: 90vmax;
    max-width: 90vmin;
}

@media screen and (max-width: 800px) {
    .full-screen-wide {
        width: auto;
        height: auto;
    }
    .width-full-wide, .width-half-wide {
        width: auto;
    }

    .full-screen-narrow {
        width: 100dvw;
        height: 100vmax;
    }

    .columns-2-1-wide {
        grid-template-columns: auto;
    }
    .height-full-wide {
        height: auto;
    }


    .width-full-narrow {
        width: 100%;
    }
    .width-3-4-narrow {
        width: 75%;
    }
    .width-half-narrow {
        width: 50%;
    }


    .padding-1 {
        padding: 16px;
    }


    .mb-1-narrow {
        margin-bottom: 32px;
    }


    .grid-wide {
        display: block;
    }

    .rows-2-narrow {
        grid-template-rows: 1fr 1fr;
    }
}

.hidden {
    display: none;
}
