html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
}

section {
    display: flex;
    flex-direction: column;
    background: url('../images/background-hero.svg') repeat, #ee761c;
    flex-grow: 1;
}

section>h1,
section>h2,
section>p {
    text-align: center;
    color: #f0eae2;
}

header {
    background-color: #f0eae2;
    color: #4f491d;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-logo {
    max-height: 60px;
    padding: 20px;
}

@media (max-width: 810px) {
    .header-logo {
        width: 100%;
        min-width: 220px;
        padding-left: 0;
    }
}

.header-nav a {
    color: #4f491d;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    padding: 5px 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}

.header-nav a:hover {
    background-color: #FF872B;
    color: #f0eae2;
    border-radius: 5px;
}



/* Hintergrundbilder Container */
/* .background-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
} */

/* Rotierbare Hintergrundbilder */
/* .background-image {
    position: absolute;
    background-image: url('resources/images/logo-octopus-grey.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    opacity: 0.1;
} */

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #f0eae2;
    /* z-index: 1; */
}

.hero-content video {
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin: 20px 0;
    width: 900px;
}

@media (max-width: 850px) {
    .hero-content video {
        width: 90%;
    }
}

section button {
    padding: 15px 30px;
    font-size: 1rem;
    color: #f0eae2;
    background-color: #d1510b;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
    margin: 20px auto;
}


/* Team-Seite */
.team-content {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f4f4f4;
    text-align: center;
}

.team h1 {
    margin-bottom: 20px;
    color: #333333;
    font-size: 2.5rem;
}

.team-body .team h1 {
    margin-bottom: 20px;
    color: #f0eae2;
    font-size: 2.5rem;
}

.team p {
    margin-bottom: 40px;
    color: #666666;
    font-size: 1.2rem;
    line-height: 1.6;
}

.team-body .team>p {
    margin-bottom: 40px;
    color: #f0eae2;
    ;
    font-size: 1.2rem;
    line-height: 1.6;
}

.team-members {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin: 20px;
    padding: 20px;
    max-width: 800px;
    text-align: center;
}



.team-member img {
    max-width: 150px;
    margin-bottom: 15px;
}

.team-member h2 {
    color: #4f491d;
    margin-bottom: 10px;
}

.team-member p {
    color: #000;
}

.contact-section {
    padding: 50px 20px;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 20px auto;
    flex-grow: 1;
    min-width: 800px;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333333;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-size: 1.1rem;
    color: #4f491d;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    padding: 15px;
    font-size: 1rem;
    color: #f0eae2;
    background-color: #FF872B;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
}

.contact-form button:hover {
    background-color: #e5661e;
}


/* Kontaktseite Statusnachricht */
/* Statusnachricht für Erfolg */
.status-message.success {
    background-color: #28a745;
    /* Grüner Hintergrund für Erfolg */
    color: white;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Statusnachricht für Fehler */
.status-message.error {
    background-color: #dc3545;
    /* Roter Hintergrund für Fehler */
    color: white;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Fade-in-Effekt */
.status-message.fade-in {
    animation: fadeIn 1s ease-in;
}

/* Fade-out-Effekt */
.status-message.fade-out {
    animation: fadeOut 1s ease-out;
}

/* Keyframes für Fade-in */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Keyframes für Fade-out */
@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    min-width: 800px;
}

@media (max-width: 810px) {
    .container {
        min-width: 75%;
        margin: 50px 20px;
    }
}

.container h1 {
    color: #4f491d;
    text-align: center;
}

p {
    line-height: 1.6;
    margin: 20px;
}

/* .features {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-sizing: border-box;
}

.features h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333333;
}

.feature-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.feature {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.feature img {
    width: 100px;
    height: 100px;
}

.feature p {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #333333;
} */

.team {
    padding: 50px 0;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background: inherit;
    min-width: 250px;
    width: 100%;
}

.team h2 {
    margin-bottom: 40px;
    color: #333333;
}

.team-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.team-logos img {
    max-width: 200px;
}

@media (max-width: 810px) {
    .team-logos img {
        width: 90%;
    }
}

.counters {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.counter {
    text-align: center;
    flex: 1;
}

.counter h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    display: inline-block;
    color: #FF872B;
}

.counter .plus {
    font-size: 2rem;
    display: inline-block;
    margin-left: 5px;
    color: #FF872B;
}

.counter p {
    font-size: 1.2rem;
    margin: 0;
    color: #333333;
}

footer {
    background-color: #f0eae2;
    color: #4f491d;
    display: flex;
    justify-content: center;
    padding: 10px;
}

.footer-content {
    display: flex;
    align-items: center;
    text-align: center;
}

.footer-logo {
    max-height: 150px;
    margin-right: 10px;
}

.footer-text {
    display: flex;
    flex-direction: column;
}

.footer-text p {
    margin: 0;
    margin-bottom: 5px;
}

footer a {
    color: #FF872B;
    text-decoration: none;
}

/* 404-Seite */

.not-found {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #4f491d;
}

.not-found h1 {
    font-size: 5rem;
    margin-bottom: 0px;
}

.not-found h2 {
    font-size: 2rem;
    margin-bottom: 0px;
}

.not-found p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.not-found button {
    padding: 15px 30px;
    font-size: 1rem;
    color: #f0eae2;
    background-color: #FF872B;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
}

.not-found button:hover {
    background-color: #e5661e;
}

.email-image {
    height: 1em;
    top: 3px;
    position: relative;
}

input[name="honeypot"] {
    display: none !important;
    visibility: hidden;
}