@keyframes startanim {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes testing {
    0% {
        left: 50vw;
    }

    100% {
        left: 37vw
    }
}

::selection {
    background-color: #088;
    color: white;
}

html {
    background-color: black;
    overflow-y: scroll;
}

body {
    background-color: white;
    border-radius: 30px;
    overflow: hidden;
    padding-bottom: 15px;
    font-family: "Comfortaa";
    transform-style: flat;
    animation: startanim 1.5s ease-out;
    will-change: opacity, transform;
}

.top-image {
    width: calc(100vw - 16px);
    aspect-ratio: 27 / 10;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.banner-text-big {
    font: 6vw "Comfortaa";
    color: black;
    text-transform: uppercase;
    margin: 0;
    font-weight: bold;
}

.banner-text-big::selection,
.banner-text-small::selection {
    background-color: #0888;
    text-shadow: 1px 1px 2px #0008;
}

.banner-text-small {
    font-size: 2.5vw;
    margin: 0;
    padding-right: 0.5vw;
}

.banner-text-container {
    position: absolute;
    left: 37vw;
    top: 16vw;
    text-align: right;
    animation: testing 1.5s ease-out;
}

.section {
    margin-top: 40px;
    margin-left: 20px;
    margin-right: 20px;
}

.header {
    font: 19pt "Lato";
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
    color: #088
}

.header ::selection,
.header::selection {
    text-shadow: 1px 1px 2px #0008;
}

.text {
    font: 14pt "Comfortaa";
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
}

.list {
    font: 12pt "comfortaa";
    line-height: 2;
    margin-left: -5px;
}

.pros-list {
    margin-top: 5px;
    margin-bottom: 30px;
    font-weight: bold;
}

.ablauf-list {
    font-weight: bold;
}

.meet-list {
    left: 0;
    line-height: 1.5;
}

ul.list.meet-list>li {
    margin-bottom: 10px;
}

.meet-info {
    font-size: 10.5pt;
    font-style: italic;
}

.idk {
    font: 16pt "comfortaa";
    font-weight: bold;
    margin-top: 20px;
}

a {
    color: black;
    line-height: 2;
    font-size: 12pt;
}

.footer {
    font-size: 10pt;
    color: black;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 94%;
}

.footer a {
    font-size: 10pt;
}

.social {
    padding-left: 5px;
    padding-right: 5px;
    border-left: 1px solid gray;
}

img.social-icon {
    display: inline-block;
    vertical-align: sub;
}

.social img {
    margin-right: 4px;
}

.band-img {
    width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 7vw;
}

.band-person {
    font-weight: bold;
    font-size: 13pt;
}

.band-text-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1px;
}

.band-img-container {
    position: relative;
    top: 0;
    left: 0;
    padding-left: min(35px, 5vw);
    max-width: 500px;
    margin-bottom: 50px;
}

.contra-video-container video {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.callout-wrapper {
    display: grid;
    grid-template-rows: 1fr;
    transition: .75s ease-in-out;
    transition-property: grid-template-rows, visibility, opacity;
    visibility: visible;
    opacity: 1;
    overflow: hidden;
}

.callout-wrapper-closing {
    grid-template-rows: 0fr;
    visibility: hidden;
    opacity: 0;
}

.callout {
    border-radius: 20px;
    background-color: rgba(11, 165, 71, 0.4);
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    height: fit-content;
    margin-bottom: 0px;
    margin-left: 20px;
    margin-top: 20px;
    margin-right: 20px;
    overflow: hidden;
    transition: box-shadow 1s;
}

.callout .close-btn {
    background: none;
    border: none;
    font-size: 1.5em;
    font-weight: bold;
    cursor: pointer;
    float: right;
    margin-right: .1em;
}

.callout .heading {
    padding: .6em 1em .5em;
    color: white;
    background-color: rgb(21, 112, 8);
    border-bottom-right-radius: 20px;
    display: inline-block;
    text-align: left;
    max-width: calc(100% - 63px);
}

.callout .details {
    padding: 1em;
}

.callout form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.callout .form-group {
    display: flex;
    align-items: center;
    /* Align labels with inputs */
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.callout label {
    display: inline-block;
    /* display: flex; */
    gap: 10px;
    font-weight: bold;
    width: 120px;
    /* Fixed width for labels */
    /* align-items: flex-start;  */
    /* Align text to the top of the input */
    /* width: 120px;  */
    /* Ensures labels have a consistent width */
}

.callout input,
textarea {
    padding: 2px;
    outline: 0px solid #ccc;
    border: none;
    border-radius: 18px;
    padding: 8px;
    padding-left: 12px;
    /*  width: calc(100% - 60px); */
    /* Ensure inputs take the remaining width */
    transition: outline .15s ease-in-out;
    box-sizing: content-box;
    font-family: "Comfortaa";
    box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.3);
    width: min(calc(100% - 100px), 262px);
}

.callout input:focus,
textarea:focus {
    /* border: 3px solid green; */
    outline: 2px solid green;
    box-shadow: 1px 1px 4px 2px rgba(0, 0, 0, 0.3);
}

.callout textarea {
    resize: vertical;
    height: 80px;
}

.submit {
    background-color: green;
    color: white;
    font-size: 1.5em;
    transition: all 0.4s ease;
    /* Smooth transition */
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: "Comfortaa";
    padding-top: 7.5px;
    padding-bottom: 5px;
    width: 90%;
    transform: translateY(2px);
    box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.3);
}

.submit:hover {
    /* color: rgba(255, 255, 0, 0.7);    */
    transform: translateY(-3px) scale(1.05);
    /* width: 92%; */
    background-color: #009200;
    /* Visible green glow */
    /* box-shadow: 0 0 12px 4px rgba(0, 200, 0, 0.9); */
    /* box-shadow: 0 0 10px 4px rgba(255, 255, 255, 0.6), 0 0 15px 10px rgba(255, 255, 0, 0.4);  */
}

.submit:active {
    background-color: #050c;
    transform: translateY(-0px) scale(1.02);
}


/* Inline Google fonts CSS for GDPR */

@font-face {
    font-family: 'Comfortaa';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(fonts.gstatic.com/s/comfortaa/v45/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrQ.ttf) format('truetype');
}

@font-face {
    font-family: 'Comfortaa';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(fonts.gstatic.com/s/comfortaa/v45/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrQ.ttf) format('truetype');
}

@font-face {
    font-family: 'Comfortaa';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(fonts.gstatic.com/s/comfortaa/v45/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4VrMPrQ.ttf) format('truetype');
}

@font-face {
    font-family: 'Comfortaa';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(fonts.gstatic.com/s/comfortaa/v45/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQ.ttf) format('truetype');
}

@font-face {
    font-family: 'Comfortaa';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(fonts.gstatic.com/s/comfortaa/v45/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQ.ttf) format('truetype');
}

@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 100;
    font-display: swap;
    src: url(fonts.gstatic.com/s/lato/v24/S6u-w4BMUTPHjxsIPy-v.ttf) format('truetype');
}

@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 300;
    font-display: swap;
    src: url(fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI9w2PHA.ttf) format('truetype');
}

@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url(fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxswWw.ttf) format('truetype');
}

@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url(fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI5wqPHA.ttf) format('truetype');
}

@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 900;
    font-display: swap;
    src: url(fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI3wiPHA.ttf) format('truetype');
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: url(fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHh30wWw.ttf) format('truetype');
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh7USew8.ttf) format('truetype');
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxk.ttf) format('truetype');
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVew8.ttf) format('truetype');
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh50Xew8.ttf) format('truetype');
}