/* Basis-Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center; /* Zentriert den Inhalt horizontal */
    align-items: flex-start; /* Ausrichtung vom Inhalt am oberen Rand */
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Das Menü und der Markenname bleiben links */
    position: fixed; /* Fixiert den Header oben */
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    background-color: white;
    z-index: 200;
    box-shadow: 0 2px 5px rgba(211, 8, 8, 0.2);
    
    
}
/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100px; /* Höhe des Logos */
    width: auto;
    
    object-fit: contain; /* Proportionen beibehalten */
}

.aki{
    height: 200px;
    border: #333;
    border-radius: 10%;
    border-style:solid ;
}

/* Basis-Stile */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
    overflow-x: hidden;
}

Menü-Button */
header {
    display: flex;
    justify-content: flex-start;
    padding: 10px 20px;
    background-color: #333;
    color: rgb(253, 245, 245);
}

.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: rgb(5, 5, 5);
}

/* Overlay */
.overlay {
    height: 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(80, 87, 78, 0.9);
    overflow: hidden;
    transition: height 0.5s ease-in-out;
    z-index: 1000;
}

/* Schließen-Button */
.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

/* Overlay-Inhalt */
.overlay-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: white;
}

.overlay-content a {
    padding: 15px;
    text-decoration: none;
    font-size: 36px;
    color: white;
    display: block;
    transition: color 0.3s;
}

.overlay-content a:hover {
    color: #f44336;
}

/* Wenn das Menü geöffnet ist */
.overlay.open {
    height: 100%;
}




/* Hauptinhalt */
.content {
    text-align: center;
    background: #ffffff;
    box-shadow: 12px 12px 2px 1px rgba(0, 0, 255, .2);
    padding: 20px;
    border-radius: 10px;
    max-width: auto;
    width: 50%; /* Volle Breite */
    margin-top: 10px; /* Abstand zum fixierten Header */
    margin-left: auto; /* Horizontal zentrieren */
    margin-right: auto; /* Horizontal zentrieren */
    z-index: 100;
}

/* Diashow (Slider) */
.slider {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    height: 282px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.slider img {
    width: 50%;
    height: 70%;
    object-fit: cover;
    position: absolute;
    transition: opacity 1s ease;
    border-radius: 50px;
}

.slider img.inactive {
    opacity: 0;
}

@media only screen and (max-width : 19.9375em) /* bis 319px with mobile menu */
{

}

@media only screen and (min-width : 20em) and (max-width : 29.9375em) /* 320-479px with mobile menu */
{

}

@media only screen and (min-width : 30em) and (max-width : 40em) /* 480-640px with mobile menu */
{

}

@media only screen and (min-width : 40.0625em) and (max-width : 53.75em) /* 641-860px with mobile menu */
{
}

@media only screen and (min-width : 53.8125em) and (max-width : 64em) /* 861-1024px with mobile menu */
{
}



/* Fußzeile */
footer {
    background-color: #f4f4f4; /* Standardhintergrund */
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%; /* Vollständige Breite */
    height: 100px; /* Höhe des Footers */
    z-index: 10;
    overflow: hidden; /* Überschüssiges Bild wird abgeschnitten */
    padding: 0;
}


/* Container für das Formular */
.contact-form-container {
    width: 100%;
    max-width: 600px;
    margin: 50px auto; /* Zentriert auf der Seite */
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
}

/* Titel */
.contact-form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Formularfelder */
.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/* Fokus-Effekt */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #D32F2F;
    outline: none;
}

/* Senden-Button */
.contact-form .submit-button {
    display: inline-block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #fff;
    background-color: #D32F2F;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .submit-button:hover {
    background-color: #b71c1c;
}

/* CAPTCHA-Code Stil */
#captcha-code {
    font-size: 18px;
    color: #D32F2F;
    background-color: #f1f1f1;
    display: inline-block;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}



/* Bild im Footer */
.footer-image {
    width: 100%; /* Stretcht das Bild über die gesamte Breite */
    height: 100%; /* Füllt die gesamte Höhe des Footers */
    object-fit: cover; /* Zuschneiden, um den Footer perfekt auszufüllen */
}


footer p {
    margin: 10px 0 0;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #fffefe;
}
.footer-overlay {
    position: absolute; /* Überlagert das Bild */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
    color: #fff; /* Weißer Text */
    background-color: rgba(0, 0, 0, 0.5); /* Halbtransparenter Hintergrund */
}

.inactive {
    display: none; /* Oder visibility: hidden; */
}
 