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

html {
    font-size: 16px;
    font-family: var(--san-serif-font);
    color: var(--neutral-5);
}

body {
    overflow-x: hidden;
    line-height: 1;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: var(--neutral-2);
    border-radius: 3px;
    border: 3px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    cursor: pointer;
}

header {
    width: 100%;
    height: var(--size-4);
}

main {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - var(--size-4));
}

section {
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-family: var(--serif-font);
    font-weight: 600;
}

h1 {
    font-size: var(--font-size-7);
}

h2 {
    font-size: var(--font-size-6);
}

p {
    line-height: 1.4;
    font-family: var(--san-serif-font);
    font-size: var(--font-size-3);
}

a {
    display: inline-block;
}

button {
    cursor: pointer;
}

[data-invisible="true"] {
    opacity: 0;
    pointer-events: none;
}

.full-screen {
    width: var(--size-full);
    height: calc(100vh - var(--size-4));
}

.row-group {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.row-group.fill {
    justify-content: space-between;
}

.column-group {
    display: flex;
    flex-direction: column;
}

.column-group.fill {
    justify-content: space-between;
}

.serif-font {
    font-family: var(--serif-font);
}

.separator {
    background-color: var(--neutral-3);
}

.separator.horizontal {
    min-width: var(--size-1);
    min-height: 1px;
}

.separator.horizontal.full {
    min-width: var(--size-full);
}

.separator.vertical {
    min-width: 1px;
    min-height: var(--size-1);
}

.message {
    gap: var(--space-3);
    width: var(--size-fit);
    padding: var(--space-2);
}

.message .separator {
    background-color: var(--neutral-1);
}

.message-text {
    gap: var(--space-2);
    padding: var(--space-1);
}

.message-title {
    font-size: var(--font-size-6);
}

.message-description {
    font-size: var(--font-size-4);
}

.section-header {
    padding: var(--space-3);
    transition: var(--time-5);
}

.section-header[data-open="true"] {
    position: sticky;
    top: var(--space-3);
    z-index: 2;
    margin: calc(var(--space-3) * -0.9);
    background-color: var(--white-opacity-80);
    border-radius: var(--rounding-3);
    box-shadow: 0 0 var(--size-2) 0 var(--black-opacity-10);
    backdrop-filter: blur(var(--size-1));
}

.section-header h2 {
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--accent-1);
}

.text-button {
    padding: var(--space-2);
    text-wrap: nowrap;
    color: var(--neutral-5);
    transition: var(--time-3);
}

.text-button:hover {
    color: var(--accent-1);
}

.label-button {
    gap: var(--space-2);
    width: var(--size-fit);
    padding: calc(var(--space-2) * 1.5) var(--space-3);
    text-wrap: nowrap;
    font-size: var(--font-size-3);
    border: 1px solid var(--neutral-2);
    border-radius: var(--rounding-3);
    transition: var(--time-3);
}

.label-button:hover {
    background-color: var(--neutral-1);
}

.label-button .button-face {
    gap: var(--space-2);
}

.label-button .button-icon {
    width: var(--size-1);
    height: var(--size-1);
}

.label-button .button-icon img {
    width: var(--size-full);
    height: var(--size-full);
}

.label-button.fill {
    width: var(--size-full);
}

.label-button.accent {
    color: var(--neutral-0);
    background-color: var(--accent-2);
    border: 1px solid var(--accent-2);
    transition: var(--time-3);
}

.label-button.accent:hover {
    background-color: var(--accent-2-hovered);
    border-color: var(--accent-2-hovered);
}

.label-link {
    width: var(--size-fit);
    padding: var(--space-2) calc(var(--space-2) * 1.5);
    text-wrap: nowrap;
    color: var(--neutral-5);
    border: 1px solid var(--neutral-2);
    border-radius: var(--rounding-3);
    transition: var(--time-3);
}

.label-link:hover {
    background-color: var(--neutral-1);
}

.text-list {
    display: flex;
    flex-direction: column;
}

.text-list li {
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.text-list li::before {
    content: "—";
    flex-shrink: 0;
}

.map-container {
    width: var(--size-full);
    padding: var(--space-3);
}

.map {
    width: var(--size-full) !important;
    border: 1px solid var(--neutral-2);
    border-radius: var(--rounding-1);
}

.map-frame {
    width: var(--size-full) !important;
    border: 0;
}

.slide-button {
    position: absolute;
    top: var(--size-half);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-self: center;
    width: var(--size-3);
    height: var(--size-3);
    padding: var(--space-3);
    background-color: var(--white-opacity-60);
    border: 1px solid var(--neutral-4);
    border-radius: var(--rounding-ellipse);
    backdrop-filter: blur(10px);
    transform: translateY(calc(var(--size-half) * -1));
    transition: var(--time-3) !important;
}

.slide-button:hover {
    background-color: var(--white-opacity-80);
}

.slide-button span {
    width: var(--size-full);
    height: var(--size-full);
    background-image: url('../../assets/icons/arrow-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.6;
    transition: var(--time-3);
}

.slide-button:hover span {
    scale: 0.9;
}

.slide-button[data-direction="left"] {
    left: 0;
}

.slide-button[data-direction="left"] span {
    transform: rotate(-90deg);
}

.slide-button[data-direction="right"] {
    right: 0;
}

.slide-button[data-direction="right"] span {
    transform: rotate(90deg);
}

.slide-button[data-is-available="true"] {
    transition: var(--time-3);
}

.slide-button[data-is-available="false"] {
    opacity: 0 !important;
    cursor: inherit;
}

.slide-button[data-is-hidden="true"] {
    display: none;
}