@charset "utf-8";

/*@font-face {
    font-family: 'Marker'; 
    src: url('fonts/marker.ttf') format('truetype'); 
    font-weight: normal; 
    font-style: normal; 
}*/

@font-face {
    font-family: 'Kalam'; /* Name der Schriftart */
    src: url('fonts/kalam.ttf') format('truetype'); /* Pfad zur TTF-Datei */
    font-weight: normal; /* optional, kann auch bold oder andere Werte haben */
    font-style: normal; /* optional, kann auch italic haben */
}

@font-face {
    font-family: 'Gruppo'; /* Name der Schriftart */
    src: url('fonts/gruppo.ttf') format('truetype'); /* Pfad zur TTF-Datei */
    font-weight: normal; /* optional, kann auch bold oder andere Werte haben */
    font-style: normal; /* optional, kann auch italic haben */
}


* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
}

html, body {
    font-family: 'Gruppo', sans-serif;
    max-width: 700px;
    height: 100%;
    margin: 0 auto;
    background-color: black;
    color: white;
}

html {
    scroll-behavior: smooth;
}

h2{
    text-align: center;
    color: #faa302;
    text-shadow: 3px 3px 6px rgba(2, 243, 252, 0.5);
    margin-bottom: 10px;
}

.site-title{
    width: 100%;
    padding: 2px;
    border: 1px solid #fcb900;
    border-radius: 10px;
    font-size: 20px;
    text-align: center;
}



.container {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    height: 100vh; /* Gesamte Höhe des Viewports */
}

.container-1 {
    width: 100%;
    display: flex;
    justify-content: start;  /*Verteilt die Items gleichmäßig */
}

.container-login{
    width: 100%;
    z-index: 2;
}
.container-login1{
    background-color: rgba(0, 0, 0, 0.93);
    z-index: 3;
    
}
.item {
    font-family: 'Gruppo', sans-serif;
    font-weight: bolder;
    font-style: italic;    flex: 1 1 33%; /* flex-grow: 1, flex-shrink: 1, flex-basis: 20% */
    box-sizing: border-box;
    padding: 2px;
    
}

.item img {
    max-width: 170px;
    height: auto;  /*Erhält das Seitenverhältnis des Bildes */
    display: block;  /*Verhindert unerwünschte Leerzeichen unter Bildern */
}

.header {
    position: fixed;
    max-width: 700px;
    margin: 0 auto;
    border-bottom: 1px solid #ff0000;
    box-shadow: 0 0 0 10px black; /* Fügt einen leeren Bereich unterhalb hinzu */
    top: 0;
    left: 0;
    right: 0;
    height: 60px; /* Höhe des Headers */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.footer {
    font-family: 'Gruppo', sans-serif;
    padding: 1px 8px;
    width: 100%;
    font-size: 14px;
    /* Die Höhe des Footers wird durch den Inhalt bestimmt und kann variieren */
    /* Footer bleibt immer unten */
}

.footer a{
    color: #0657F3;
    text-decoration: none;
}

.content {
    margin-top: 60px; /* Platz für den Header */
    margin-bottom: 60px; /* Platz für den Footer */
    padding: 20px;
    overflow-y: auto; /* Scrollbar aktivieren */
    height: calc(100% - 120px); /* Höhe des Contents */
    
}

/*########################################################################################*/
/* Banner */
/*########################################################################################*/
.banner {
    /*border: 1px solid #fad502;*/
    /*width: 100%;*/
}

.banner img{
    width: 100%; 
    height: auto;
}

.date{
    font-family: 'Gruppo', sans-serif;
    font-weight: bold;
    font-style: italic;
    margin: 0px 0px 15px 0px;
    text-align: center;
    color: #ff0000;
    font-size: 40px;
    font-weight: normal;
    
}

.titel{
    font-family: 'Gruppo', sans-serif;
    font-weight: bolder;
    font-style: italic;
    margin: 0px 0px 30px 0px ;
    text-align: center;
    font-size: 35px;
    text-shadow: 5px 5px 10px rgba(255, 0, 0, 0.5);
    border: 2px solid #ff0000;
    border-radius: 15px; /* Hier wird die Rundung der Ecken festgelegt */
    box-shadow: 5px 5px 10px rgba(243, 241, 241, 0.2);
}

.untertitel{
    font-family: 'Gruppo', sans-serif;
    font-style: italic;
    font-weight: bolder;
    text-align: center;
    color: red;
    font-size: 33px;
}

.soon{
    margin: 10px 0px;
    padding: 20px 20px;
    
    width: 100%;
    height: auto;
}

#sp-pic{
    margin: 10px 0px;
    padding: 20px 20px;
    
    width: 100%;
    height: auto;    
}

.soon1{
    
    width: 100%;
    height: auto;
}
.text{
    font-family: 'Gruppo', sans-serif;
    font-style: italic;
    font-size: 19px;
}

.linktext{
    text-align: center;
    font-family: 'Gruppo', sans-serif;
    font-style: italic;
    font-size: 25px;
    text-decoration: none;
    color: white;
}

.textcenter{
    text-align: center;
    font-family: 'Gruppo', sans-serif;
    font-style: italic;
    font-size: 20px;
}

/*########################################################################################*/
/* Suchen */
/*########################################################################################*/
.search{
    margin: 5px 0px 5px 0px;
    text-align: center;
}   

input[type="text"] {
    background-color: black;
    color:#fad502;
    border: 1px solid #fad502;
    font-size: 18px;
}

input[type="image"] {
    width: 22px; /* Größe des Bildes */
    height: 22px;
    cursor: pointer; 
    vertical-align: middle;
}

/*########################################################################################*/
/* UP - Arrow */
/*########################################################################################*/
.scroll-button {
    display: none; /* Button standardmäßig verstecken */
    position: fixed;
    bottom: 500px; /* Über dem Footer anzeigen */
    right: 20px;
    padding: 10px 20px;
    background-color: #0657F3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
}

.scroll-button.show {
    display: block; /* Button anzeigen, wenn gescrollt wurde */
}

.scroll-button:hover {
    background-color: #003f99;
}

/*########################################################################################*/
/* Tabellen */
/*########################################################################################*/
.table-container{
    display:flex;
    justify-content: center;
    align-items: center;
}

.main-table{
    width: 100%;
    font-size: 18px;
    table-layout: auto;
}

.main-table td{
    padding: 2px 3px;
    text-align: left;
}

.main-table th{
    padding: 2px 3px;
    text-align: left;
    color: black;
    box-shadow: 5px 15px 20px #ff0000;
    background-color: #faa302;
}

.main-table tr:nth-child(odd) td{
    background-color: #201c01; 
}

td img {
    display: block; /* Bild als Blockelement */
    margin: 0 auto; /* Horizontale Zentrierung */
}

.main-table a{
    color: #0657F3;
    text-decoration: none;
    cursor: pointer;
}

th:first-child{
    border-radius: 10px 0 0 0;
}

th:last-child{
    border-radius: 0 10px 0 0;
}

/*########################################################################################*/
/* Bilder */
/*########################################################################################*/
.titelbild{
    width: 96vw;
    border: 1px solid #faa302;
}

/*###############################################################*/
/* EMAIL */
/*###############################################################*/

.email{
    display: flex;
    flex-direction: column;
    /*padding: 3px;*/
    align-items: center;
    color: #faa302;
}

.email > input{
    font-family: 'Gruppo', sans-serif;
    font-style: italic;
    max-width: 250px;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid #FF0000;
    color: #ffffff;;
    font-size: 22px;
}

.email > span{
    margin-bottom: 10px;
}

.email > textarea{
    font-family: 'Gruppo', sans-serif;
    font-style: italic;
    max-width: 580px;
    width: 100%;
    padding: 9px;
    border-radius: 10px;
    border: 1px solid #FF0000;
    color: white;
    font-size: 22px;
}

.email > button{
    text-align: center;
    border: 2px solid var(--vfc);
    
    cursor: pointer;
}

.customfile{
    border: 2px solid var(--vfc);
    border-radius: 8px;
    padding: 2px;
    font-size: 18px;
}
.customfile::-webkit-file-upload-button{
    background: var(--vfc);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

#lineup{
    text-align: center;
}


/*###############################################################*/
/* FINGERCLICK */
/*###############################################################*/
.bild-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 100%;
  }
  
  #sp-pic {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .finger-animation {
    position: absolute;
    bottom: -5%; /* weiter oben oder unten je nach gewünschter Position */
    left: 50%;
    transform: translateX(-50%);
    width: 20vw;         /* responsive: 20% der Bildschirmbreite */
    max-width: 80px;     /* nicht größer als 80px */
    pointer-events: none;
    background-color: transparent !important;
    z-index: 10;
  }

  .video-container {
    position: relative;
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    background: black;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}

.finger {
    width: 80px;
    height: auto;
    animation: pulse 1.5s infinite;
    margin-bottom: 10px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

  @media (max-width: 768px) {
    .finger {
        width: 60px;
    }

    .overlay p {
        font-size: 16px;
        padding: 0 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .finger {
        width: 45px;
    }

    .overlay p {
        font-size: 14px;
    }

    .video-container {
        max-height: 300px;
    }
}