/* jaro-regular - latin */

@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Jaro';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/jaro-v6-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html,
body {
    height: 100%;
    margin: 0;
    font-family: 'Jaro', 'serif', 'sans serif', 'monospace';
    letter-spacing: ;
    background-color: #161b2c;
    color: white;
    padding-top: 32px;
    overflow: hidden;
}


* {
    box-sizing: border-box;
}



/*ANCHOR - Images */

.image-container {
    margin-top: 30px;
}

.img {
    width: 100%;
    /* Breite der Bilder */
    max-width: 350px;
    /* Maximale Breite der Bilder */
    height: auto;
    /* Hält das Seitenverhältnis des Bildes bei */
    border-radius: 10px;
    /* Macht die Ecken des Bildes rund (optional) */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Schattierung für einen 3D-Effekt */
    transition: transform 0.3s ease-in-out;
    /* Für eine Animation bei Hover */
}


/* Optional: Effekt beim Überfahren mit der Maus */

.img:hover {
    transform: scale(1.1);
    /* Vergrößert das Bild leicht, wenn der Benutzer mit der Maus darüber fährt */
}


/*ANCHOR - Header */



header {
    background-color: #283653;
    padding: 16px 100px;
    font-size: 20px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
      
}

.header-text {
    font-size: 16px;
}


/*ANCHOR - Snowfall Animation */

.snow-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;

}

.snowflake {
    position: absolute;
    top: -50px;
    background-color: white;
    border-radius: 50%;
    opacity: 0.7;
    animation: fall linear infinite;

}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}




/*ANCHOR - Footer */

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    font-size: 15px;
    letter-spacing: 2px;
    background-color: #1a2336;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 2;
}

.footer a {
    color: white;
    text-decoration: none;
}


/*ANCHOR - MenüButton*/

.menu-button {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    /* Breite des Buttons */
    height: 20px;
    /* Höhe des Buttons */
    cursor: pointer;
}

.menu-button span {
    display: block;
    height: 2px;
    /* Dicke der Striche */
    width: 100%;
    /* Volle Breite */
    background-color: white;
    /* Farbe der Striche */
    border-radius: 2px;
    /* Abgerundete Kanten */
    transition: all 0.3s ease;
    /* Animationseffekt */
}


/*ANCHOR - MenüStyle*/

.menu {
    display: none;
    /* Anfangs ausgeblendet */
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 20px;
    background-color: #444;
    /* Dunkles Grau */
    color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.menu a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 3px;
    transition: background-color 0.2s;
}

.menu a:hover {
    background-color: #555;
}

.menu.open {
    display: flex;
    /* Sichtbar, wenn geöffnet */
}

.menu-button.open span:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 10px;
}

.menu-button.open span:nth-child(2) {
    opacity: 0;
}

.menu-button.open span:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -10px;
}

.show-now {
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.1);
    border: 4px dashed white;
}

.container-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.container {
    padding: 0px 50px;
    z-index: 2;
}

.msg {
    border-radius: 8px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
    background-color: white;
    color: #1a2336;
    max-width: 50vw;
    margin-bottom: 8px;
    font-size: 12px;
    padding: 4px;
}

.msg-me {
    border-radius: 8px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
    background-color: rgb(194, 24, 91);
    color: white;
    max-width: 50vw;
    margin-bottom: 8px;
    margin-left: auto;
    font-size: 12px;
    padding: 4px;
}

h1,
h2 {
    font-weight: 400;
}

.col-1400 {
    display: flex;
    height: 100%;
}

.col {
    padding: 0;
    display: flex;
    flex-direction: column;
}

section {
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px 32px;
    margin-left: -1px;
}

.col-1400 section:first-of-type {
    margin-left: 0px;
}

select {
    background-color: #1a2336;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    width: 160px;
}

select:hover {
    border: 1px solid rgba(255, 255, 255, 0.5);
}

select>option {
    padding: 12px
}

input {
    padding: 12px;
    border: 1px solid white;
    width: 190px;
    color: white;
    background-color: transparent;
    border-radius: 4px;
}

input:hover {
    border: 1px slid rgba(255, 255, 255, 0.5);
}

.mb-16 {
    margin-bottom: 16px;
}

.mr-16 {
    margin-right: 16px;
}

.ml-16 {
    margin-left: 16px;
}

.mt-16 {
    margin-top: 16px;
}

.row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.row * {
    margin-right: 16px;
}

.play-btn {
    background-color: rgba(255, 255, 255, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%);
}

.play-btn:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.play-btn:before {
    content: '\25BA';
    color: #161b2c;
}

.pause-btn::before {
    content: '■' !important;
    font-size: 24px;
    margin-top: -7px;
}

::placeholder {
    color: white;
}

button {
    background-color: #C2185B;
    color: white;
    border: unset;
    padding: 15px;
    margin-top: 25px;
    border-radius: 4px;
    min-width: 160px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%);
}

button:hover {
    background-color: #d63475;
}


/*ANCHOR - Card */

.card {
    background-color: #1a2336;
    padding: 16px;
    border-radius: 4px;
    box-shadow: 0px 2px 1px -1px rgb(0 0 0 / 20%), 0px 1px 1px 0px rgb(0 0 0 / 14%), 0px 1px 3px 0px rgb(0 0 0 / 12%);
    text-align: justify;
    font-size: 18px;
}

.width-20 {
    width: 20%;
    flex: unset;
}

.width-25 {
    width: 25%;
    flex: unset;
}

.width-50 {
    width: 50%;
    flex: unset;
}

.width-75 {
    width: 75%;
    flex: unset;
}

.min-height-25 {
    min-height: 25%;
}

.min-height-50 {
    min-height: 50%;
}

.min-height-75 {
    min-height: 75%;
}

.col-850 {
    display: flex;
}

.fill-rest {
    flex: 1;
}

@media (max-width: 1400px) {
    .col-1400 {
        flex-direction: column;
    }

    .col-1400>.width-20 {
        width: 100%;
        flex: unset;
    }

    .col-1400>.width-25 {
        width: 100%;
        height: 25%;
        flex: unset;
    }

    .col-1400>.width-50 {
        width: 100%;
        flex: unset;
    }

    .col-1400>.width-75 {
        width: 100%;
        flex: unset;
    }
}

@media (max-width: 850px) {
    header {
        background-color: #1a2336;
        padding: 20px 30px;
    }

    .col-850 {
        flex-direction: column;
    }
}

/*ANCHOR - Datenschutz */

.card-datenschutz {
    background-color: #1a2336;
    width: 300px; /* Breite der Card */
    height: 600px; /* Feste Höhe der Card */
    overflow: auto;
    overflow-y: auto; /* Nur vertikales Scrollen erlauben */
    overflow-x: hidden; /* Seitliches Scrollen verhindern */
    overflow-wrap: break-word; /* Sicherstellen, dass Wörter korrekt umgebrochen werden */
    padding: 16px;
    border-radius: 4px;
    box-shadow: 0px 2px 1px -1px rgb(0 0 0 / 20%), 0px 1px 1px 0px rgb(0 0 0 / 14%), 0px 1px 3px 0px rgb(0 0 0 / 12%);
    text-align: left;
    font-size: 18px;
    margin: 70px auto 0;
}

#headline-datenschutz {
    margin: 20px;
}

/*ANCHOR - Extra Card */

/* Neue Karte */
.extra-card {
    margin-top: 30px; /* Abstand zur vorherigen Karte */
    padding: 16px 50px; /* Padding oben/unten 16px, links/rechts 50px */
    max-width: 100%; /* Maximale Breite auf 100% setzen */
    width: calc(100% - 100px); /* Subtrahiere 50px links und 50px rechts */
    background-color: #1a2336;
    border-radius: 4px;
    box-shadow: 0px 2px 1px -1px rgb(0 0 0 / 20%), 0px 1px 1px 0px rgb(0 0 0 / 14%), 0px 1px 3px 0px rgb(0 0 0 / 12%);
    text-align: center;
    margin-left: 50px; /* Der gleiche Abstand wie bei der oberen Karte */
    margin-right: 50px; /* Der gleiche Abstand wie bei der oberen Karte */
}

/* Button und Text unter der Karte */
.button-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.magic-button {
    background-color: #C2185B;
    color: white;
    border: unset;
    padding: 15px;
    border-radius: 4px;
    min-width: 160px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%);
    transition: background-color 0.3s ease;
}

.magic-button:hover {
    background-color: #d63475;
}

.button-wrapper p {
    margin-top: 10px;
    font-size: 1rem;
    color: #ccc;
    line-height: 1.4;
}





/*ANCHOR - Ballon */


.balloon {
    position: absolute;
    bottom: -150px;
    width: 50px;
    height: 70px;
    background: red;
    border-radius: 50%;
    box-shadow: inset -5px -10px 10px rgba(0, 0, 0, 0.2);
    animation: flyUp 8s linear infinite;
    z-index: 1;
} 


.balloon::after {
    content: '';
    position: absolute;
    top: 100%;
    /* Schnur unterhalb des Ballons starten */
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100px;
    /* Länge der Schnur */
    background: repeating-linear-gradient(45deg, #0a9ecb, #000 10px, transparent 10px, transparent 20px);
    animation: wiggle 1s ease-in-out infinite;
}


/* Farben der Ballons */

.balloon.red {
    background: red;
}

.balloon.blue {
    background: blue;
}

.balloon.green {
    background: green;
}

.balloon.yellow {
    background: yellow;
}


/* Animation für das Fliegen */

@keyframes flyUp {
    0% {
        transform: translateX(0) scale(1);
        /* Startposition */
        bottom: -100px;
        opacity: 1;
    }

    50% {
        transform: translateX(10px) scale(1.1);
        /* Seitliche Bewegung und kleiner Zoom */
        opacity: 0.9;
    }

    100% {
        transform: translateX(-20px) scale(1);
        /* Leicht versetzte Endposition */
        bottom: 110%;
        /* Verlassen des sichtbaren Bereichs */
        opacity: 0;
        /* Ballon verschwindet */
    }
}

@keyframes wiggle {

    0%,
    100% {
        transform: translateX(-50%) rotate(0deg);
    }

    50% {
        transform: translateX(-50%) rotate(5deg);
    }
}