/*
 *
 * *** *** *** GENERAL *** *** ***
 *
 */

:root {
    --bg: #0b0c10;
    --card: #111318;
    --text: #e6e7ea;
    --muted: #a2a9b0;
    --brand: #6ea8fe;
    --brand-strong: #3d8bfd;
    --danger: #ff6b6b;
    --ok: #2ecc71;
    --border: #242731;
    --focus: 2px solid var(--brand);
}

/* @media (prefers-color-scheme: light) {
      :root {
        --bg: #f6f7fb;
        --card: #ffffff;
        --text: #0b0c10;
        --muted: #5b6169;
        --border: #e6e8ef;
      }

      .survey-btn,
      .language-link,
      .language-link-disabled,
      .footer-link {
        color: #000;

      }
    } */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background: radial-gradient(1800px 1600px at 70% 10%, rgba(61, 139, 253, .15), transparent 60%), var(--bg);
    /* Background settings */
    color: var(--text);
    line-height: 1.45;
    height: 100%;
    min-height: 100vh;
}

.background-image {
    width: 200px;
    height: 200px;
}

.wrap {
    max-width: 840px;
    margin: clamp(16px, 4vw, 48px) auto;
    padding: 0 16px;
}

/*
 *
 * *** *** *** HEADER *** *** ***
 *
 */

header {
    margin-bottom: 18px;
}

h1 {
    font-size: clamp(1.4rem, 1.1rem + 1.5vw, 2.2rem);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.language-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: end;
}

.language-link {
    margin: 5px;
    color: #fff;
    /* text-decoration: underline; */
    text-decoration: none;
}

    .language-link:hover {

      text-decoration: underline;
    }

.language-link-disabled {
    margin: 5px;
    color: #aaa;
}

p.lead {
    margin: 0 0 20px;
    color: var(--muted);
    max-width: 60ch;
}

form {
    background: linear-gradient(180deg, rgba(255, 255, 255, .02), transparent), var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: clamp(16px, 3vw, 28px);
    box-shadow:
        0 1px 1px rgba(0, 0, 0, .06),
        0 10px 30px -15px rgba(0, 0, 0, .35),
        inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.form-title {
    margin-top: 70px;
    margin-left: 15px;
}

.logo-wrapper,
.date-wrapper,
.concept-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
}

.bg-wrapper {
    width: 100%;
    height: 400px;
    background-image: url("../img/background_image.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    margin-top: 10px;

    position: relative;
}

.date-wrapper h4 {
    font-size: 1.5rem;
    font-weight: 400;
    font-family: Arial, Helvetica, sans-serif;
}

.audio-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 120px;
}

.audio-inner-wrapper {
    text-align: center;
}

.audio-description {
    margin-top: 25px;
    margin-right: 20px;
    margin-left: 15px;
    max-width: 350px;
    text-align: center;
}

.audio-description-subtitle {
    margin-top: 0;
    text-align: center;
    font-size: 0.8rem;

}

.header-text-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: -10px;
    text-align: center;

    h1,
    h3 {
        font-family: Arial, Helvetica, sans-serif;
    }
}

.logo {
    width: 250px;
    height: 250px;
    margin: 20px;
    clip-path: circle();

    position: absolute;
    top: 46%;
    left: 48%;
    transform: translate(-50%, -50%);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    animation-name: zoomIn;
    animation-duration: 1s;
}

.portrait-adler-desktop {
    max-width: 150px;
    max-height: 150px;
    margin: 20px;
    clip-path: circle();

}

.portrait-adler-mobile {
    display: none;
}

.subtitle-2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-top: -10px;
}

.concept-btn {
    padding: 10px 15px;
    margin-left: 5px;
    border-radius: 15px;
    color: #fff;
    background-color: #0448af;
    text-decoration: none;
}

.ticket-btn {
    padding: 10px 15px;
    margin-left: 5px;
    border-radius: 15px;
    color: #fff;
    background-color: #002e72;
    text-decoration: none;
}

.survey-wrapper {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.speech-bubbles {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.survey-btn {
    color: #fff;
    font-size: 1.5rem;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.grid>.full {
    grid-column: 1 / -1;
}

footer {
    margin-top: 150px;
}

.footer-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: .9rem;
}

.footer-link-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 3px;
    max-width: fit-content;
}

.footer-link {
    color: #fff;
    margin: 0 10px 80px 10px;
    text-decoration: none;
}

.contact-img {
    width: 30px;
    height: 30px;
}

.contact-link {
    margin: 0 10px 80px 10px;
    text-decoration: none;
}

code {
    background: rgba(127, 127, 127, .15);
    padding: 2px 6px;
    border-radius: 6px;
}

@media screen and (max-width: 600px) {
    .logo {
        width: 150px;
        height: 150px;
    }

    .portrait-adler-desktop {
        display: none;
    }

    .portrait-adler-mobile {
        display: block;
        max-width: 100px;
        max-height: 100px;
        margin: 20px auto;
        clip-path: circle();
    }

    .audio-description {
        margin-top: 0px;
    }

    .bg-wrapper {
        width: 110%;
        margin-left: -20px;
        border-radius: 0px;
    }

    .logo {
         width: 150px;
        height: 150px;
        left: 46%;
    }
}