/* Allgemeine CSS-Regeln */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font: inherit
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    z-index: 997;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    position: fixed;
    height: 4em; /* Standardhöhe für größere Bildschirme */
}

li {
    list-style-type: none;
    float: right;
    height: 70px;
}

li a {
    list-style-type: none;
    display: block;
    color: rgba(240, 248, 255, 0.801);
    text-align: center;
    padding: 15px;
    text-decoration: none;
    height: 70px;
    font-size: larger;
}

li a:hover {
    list-style-type: none;
    background-color: #000000;
    height: 70px;
    color: rgb(255, 255, 255);
}

.logo {
    margin-top: 1px;
    z-index: 0;
    padding: 0px;
    position: relative;
    margin-left: 1px;
    height: 70px;
}

/* Media Query für Handys */
@media (max-width: 767px) {
   
    li {
        height: 5em; /* Höhe automatisch anpassen */
    }
    li a {
        font-size: 18px; /* Kleinere Schriftgröße für Handys */
    }
    .logo {
        width: 150px; /* Anpassung der Logo-Größe auf Handys */
    }
}

/* Weitere Media Queries für die Anpassung an verschiedene Geräte können hier hinzugefügt werden */

/* Main */
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.content {
    color: #f1f1f1;
    position: relative;
    height: 100vh;
    text-align: center;
    justify-content: center;
    font-size: 1.5cm;
    padding: 17% 10%;
}

/* Cards */
.title {
    display: flex;
    justify-content: center;
    color: rgb(95, 95, 95);
    font-size: 3.2em;
    font-weight: 800;
    margin-bottom: 30px;
}

.content_cards {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.card {
    background-color: #fff;
    width: 16em;
    box-shadow: 0 5px 25px rgba(1, 1, 1, 15%);
    border-radius: 10px;
    padding: 25px;
    margin: 15px;
    transition: 0.7s ease;
}

.card:hover {
    transform: scale(1.1);
}

.cards {
    padding: 100px 100px;
}

.icon {
    color: rgb(95, 95, 95);
    font-size: 7em;
    text-align: center;
}

.info {
    text-align: center;
}

.info h3 {
    color: rgb(95, 95, 95);
    font-size: 1.9em;
    margin: 10px;
}

/* Welcome */
.welcome {
    width: 100%;
    height: 80%;
    display: flex;
    background: url(img/welcome.jpg) no-repeat;
    background-size: cover;
    align-items: center;
    background-position: center;
    background-attachment: fixed;
    
    
}

.welcome-text {
    text-align: center;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.5);
    width: 60%;
    box-shadow: 0 5px 25px rgba(1, 1, 1, 15%);
    border-radius: 10px;
    padding: 10%;
    color: rgba(240, 248, 255, 0.801);
    width: 100%;
}

.welcome-title {
    display: flex;
    justify-content: center;
    font-size: 3.2em;
    font-weight: 800;
}

.welcome-text:hover {
    color: #fff;
}

/* Contact */
.contact {
    width: 80%;
    height: auto;
    margin: auto;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    flex-wrap: wrap;
    background: #fff;
    box-shadow: 0px 0px 10px 0px #666;
    margin-bottom: 5%;
}

.contact-map {
    width: 100%;
    height: auto;
    flex: 50%;
}

.contact-form {
    width: 100%;
    height: auto;
    flex: 50%;
    padding: 20px;
}

.contact-form h1 {
    margin-bottom: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5em;
    align-items: center;
    text-align: center;
}

.contact-form-text {
    width: 100%;
    height: 40px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 50px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}

.contact-form-area {
    width: 100%;
    height: 140px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 50px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}

.contact-form-text::placeholder {
    color: #aaa;
}

.senden-btn {
    width: 100%;
    border-radius: 10px;
    background: #666;
    height: 40px;
}

.senden-btn:hover {
    background: #000000;
    color: #f1f1f1;
}

/* Footer */
footer {
    position: relative;
    bottom: 0;
    width: 100%;
    background: #000000;
    color: rgb(138, 138, 138);
    min-height: 25em;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: row;
}

.footer-card {
    background-color: #fff;
    width: 24em;
    box-shadow: 0 5px 25px rgba(163, 163, 163, 0.308);
    border-radius: 10px;
    padding: 25px;
    margin: 15px;
    transition: 0.7s ease;
}

.footer-card:hover {
    transform: scale(1.1);
    color: #000;
}

.info table {
    padding: 10px;
    margin: 10px;
    display: flex;
    align-items: center;
    font-size: 1.3em;
}

th {
    font-size: 1.5em;
    text-align: left;
}

/* Anmeldung */
.form {
    width: 100%;
    height: 100vh;
    display: flex;
    background: url(img/welcome.jpg) no-repeat;
    background-size: cover;
    align-items: center;
    background-position: center;
    background-attachment: fixed;
}

fieldset {
    width: 40%;
    height: auto;
    margin: auto;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    flex-wrap: wrap;
    background: #fff;
    box-shadow: 0px 0px 10px 0px #666;
    margin-bottom: 5%;
}

legend {
    color: rgb(167, 167, 167);
    text-shadow: 2px 2px 2px #000000;
    padding: 15px 25px;
    font-size: 2.5em;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    font-size: 1.3em;
    padding: 5px 12px;
    font-family: Roboto, sans-serif;
    font-weight: 300;
    color: teal;
    border: 1px solid silver;
    background-image: linear-gradient(to top, gainsboro 0%, white 90%);
    border-radius: 20px;
}

th label {
    font-size: 1em;
    font-style: italic;
    text-align: start;
    padding: 30px;
    margin: 20px;
}

select {
    font-style: italic;
    font-size: 1.2em;
}

.eingabefeld {
    width: 15em;
    font-size: 1.2em;
}

.message {
    width: 100%;
    height: 140px;
    color: #000;
    border: 1px solid #bcbcbc;
    outline: none;
    margin-bottom: 20px;
}

/* Impressum */
.impressum-text {
    text-align: center;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    box-shadow: 0 5px 25px rgba(1, 1, 1, 15%);
    border-radius: 10px;
    padding: 5%;
    color: rgba(240, 248, 255, 0.801);
    width: 100%;
    font-size: x-large;
    padding-top: 4em;
   
}

.impressum-container {
   
    margin-top: 100px;
}

h1 {
    color: rgb(255, 0, 0);
}
