/** Import */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    color-scheme: light;
    font-family: 'PLus Jakarta Sans', sans-serif;
    font-size: 16px;

    --primary-900: #060527;
    --primary-800: #06054D;
    --primary-700: #060468;
    --primary-600: #050385;
    --primary-500: #0b6be2;
    --primary-400: #3B42B8;
    --primary-300: #7781CD;
    --primary-200: #B2BBE3;
    --primary-100: #EEEEFF;

    --neutral-900: #000000;
    --neutral-800: #373737;
    --neutral-700: #8F8F8F;
    --neutral-600: #A6A6A6;
    --neutral-500: #DDDDDD;
    --neutral-400: #E6E6E6;
    --neutral-300: #EEEEEE;
    --neutral-200: #F1F1F1;
    --neutral-100: #FFFFFF;
}

/** General */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900;
}

p,
li {
    margin: 8px 0;
    line-height: 2rem;
}

img {
    width: auto;
    height: 100%;
}

a {
    text-decoration: none;
}

/** Components */
.header {
    background-color: var(--primary-500);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1480px;
    margin: auto;
    padding: 0 8%;
    height: 72px;
    gap: 24px;
}

.logo {
    max-width: 300px;
}

.big-title {
    font-size: 3rem;
    margin: 0 0 24px 0;
}

.link-btn {
    height: 48px;
    text-align: center;
    background-color: var(--neutral-900);
    color: var(--neutral-100);
    padding: 12px 32px;
    border-radius: 4px;

    &:hover {
        background-color: var(--neutral-800);
    }
}

.subtitle {
    font-size: 1.25rem;
}

.list {
    padding: 0 0 0 64px;
}

.column {
    width: 50%;
}

.center {
    display: flex;
    justify-content: center;
}

.section {
    max-width: 1240px;
    margin: auto;
    padding: 80px 8%;
}

.section__title {
    color: var(--primary-500);
    margin: 0 0 24px 0;
    text-align: center;
    text-transform: uppercase;
}

.section__title--alt {
    color: var(--primary-100);
}

.section-container--primary {
    background-color: var(--primary-500);
    color: var(--neutral-100);
}

.section-container--alt {
    background-color: var(--neutral-300);
}

.burger {
    cursor: pointer;
    position: relative;
    display: none;
    width: 30px;
    height: 20px;
    background-color: transparent;
}

.burger input {
    display: none;
}

.burger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--neutral-100);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.burger span:nth-of-type(1) {
    top: 0px;
    transform-origin: left center;
}

.burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}

.burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
}

.burger input:checked~span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 5px;
}

.burger input:checked~span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
}

.burger input:checked~span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 22px;
    left: 5px;
}

.menu {
    display: flex;
    align-items: center;
    list-style-type: none;
    gap: 16px;
}

.menu__element a {
    color: var(--neutral-100);

    &:hover {
        color: var(--neutral-500);
    }
}

.screenshot {
    width: 100%;
    margin: 40px 0;
}

.hero {
    position: relative;
    width: 100%;
    height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./images/campobasso_view.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__content {
    max-width: 1480px;
    margin: auto;
    padding: 8%;
}

.partner-logos {
    padding: 80px 0;
    text-align: center;
}

.partner-logos__gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    height: 48px;
    margin: 24px 0 0 0;
}

.mobile-screenshots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    height: 500px;
    margin: 40px 0;
}

.mobile-screenshots img {
    height: 100%;
    width: auto;
}

.store-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.store-btns a {
    height: 48px;
}

.footer {
    text-align: center;
}

@media screen and (max-width: 992px) {
    .burger {
        display: block;
    }

    .menu {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        z-index: 1;
        width: 100%;
        background-color: var(--primary-500);
        flex-direction: column;
        justify-content: center;
        padding: 4% 8%;
    }

    .menu--visible {
        display: flex;
    }

    .column {
        width: 100%;
    }

    .partner-logos__gallery {
        height: fit-content;
        flex-direction: column;
        max-width: 200px;
        margin: 24px auto;
    }

    .partner-logos__gallery img {
        width: 100%;
    }

    .partner-logos__gallery .square-logo {
        width: 80px;
    }
}

@media screen and (max-width: 576px) {
    .big-title {
        font-size: 2rem;
    }

    .list {
        padding: 0 0 0 32px;
    }

    .link-btn {
        width: 100%;
    }

    .mobile-screenshots {
        flex-direction: column;
        height: fit-content;
    }

    .mobile-screenshots img {
        width: 100%;
        height: auto;
    }
}

/* @import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
    color-scheme: light;
    font-family: 'Mulish', sans-serif;

    --primary-900: #060527;
    --primary-800: #06054D;
    --primary-700: #060468;
    --primary-600: #050385;
    --primary-500: #0b6be2;
    --primary-400: #3B42B8;
    --primary-300: #7781CD;
    --primary-200: #B2BBE3;
    --primary-100: #EEEEFF;

    --neutral-900: #000000;
    --neutral-800: #373737;
    --neutral-700: #8F8F8F;
    --neutral-600: #A6A6A6;
    --neutral-500: #DDDDDD;
    --neutral-400: #E6E6E6;
    --neutral-300: #EEEEEE;
    --neutral-200: #F1F1F1;
    --neutral-100: #FFFFFF;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-align: center;
}

img {
    width: 100%;
    height: auto;
}

.navbar {
    height: 80px;
    padding: 0 4%;
    background-color: var(--primary-500);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 300px;
    height: auto;
}

.logo-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 0 0 24px 0;
}

.logo-gallery--width img {
    height: 40px;
    width: auto;
}

.logo-gallery--square img {
    height: 64px;
    width: auto;
}

.section {
    max-width: 1480px;
    margin: auto;
    padding: 80px 4%;
}

.section--alt {
    background-color: var(--neutral-300);
}

.section--brand {
    text-align: center;
    padding: 40px 4%;
    color: var(--neutral-100);
    background-color: var(--primary-500);
}

.img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.vertical-img {
    height: 400px;
    width: auto;
}

.store-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.store-btn {
    text-decoration: none;
}

.store-btn__img {
    height: 56px;
    width: auto;
}

@media screen and (max-width: 768px) {
    .logo-gallery {
        flex-direction: column;
    }

    .img-container {
        flex-direction: column;
    }
} */