@font-face {
    font-family: 'Avenir Next Condensed';
    src: url('path-to-font-file.woff2') format('woff2'),
         url('path-to-font-file.woff') format('woff');
}

/* nav */
.logo {
    position: absolute; 
    top: 10px; 
    left: 10px; 
    height: 100px; 
}

body {
    font-family: 'Avenir Next Condensed', Arial, sans-serif;
    font-weight: bold;
    font-style: normal;
    margin: 0;
    padding: 0;
    background-color: white;
}

nav {
    background-color: #FB8E61;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 40px 40px;

}

.burger {
    font-size: 60px;
    cursor: default;
    margin-left: auto
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none; 
    flex-direction:column;
    background-color: #FB8E61;
    position:absolute;
    top: 50px;
    right: 50px;
    width: 300px;
    border-radius: 40px;    
}

.menu li {
    padding: 25px;
    text-align: center;
    
}

.menu li a {
    text-decoration: none;
    color: white;
    display: block;
    font-size: 20px;
    cursor: default;
}

.menu li:hover {
    background-color: #A3766A;
    border-radius: 40px;
}

.menu.show {
    display: flex; 
}

/* footer */
footer {
    background-color: #A3766A; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    border-radius: 40px 40px 0 0;
    padding: 30px; 
    position:relative;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box; 
}


.footericons {
    display: flex; 
    gap: 20px; 

}

.footericons img { 
    object-fit: contain; 
    height: 100px;
    max-width: 100px;
}

.footertext {
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    margin: 50px 0 0 0;
}

.footertext li a {
    text-decoration: none; 
    color: white; 
    font-weight: bold; 
    font-size: 20px; 
}

.footertext li a:hover {
    cursor: default; 
}


@media (max-width: 1231px) {
    /* Nav */
    .logo {
        top: 8px; 
        left: 8px;
    }

    nav {
        padding: 12px; 
    }

    .menu {
        width: 250px; 
    }

    .menu li {
        padding: 20px; 
    }

    /* Footer */
    footer {
        padding: 40px; 
        position:static;
    }

    .footericons img {
        height: 90px;
        max-width: 90px;
    }

    .footertext li a {
        font-size: 18px; 
    }
}


@media (max-width: 480px) {

    /* Nav */
    .logo {
        height: 70px; 
    }

    nav {
        padding: 15px; 
    }

    .burger {
        font-size: 40px; 
    }


    .menu li {
        padding: 10px; 
    }

    .menu li a {
        font-size: 14px; 
    }

    /* Footer */

    .footericons img {
        max-width: 65px;
        gap: 3px;
        margin-top: 0px;
    }

    .footertext {
        gap: 10px; 
        margin-bottom: 5px;
        margin-top: 10px;

    }

    .footertext li a {
        font-size: 14px;
    }
}

/* Home */
/* Allgemeine Stile */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

h1, h2 {
    margin: 0;
}

h1 {
    font-size: 2rem;
    text-align: center;
}

h2 {
    font-size: 1.5rem;
    color: #FB8E61;
    text-align: center;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    color: #555;
    text-align: center;
    margin: 0 20px;
}

/* Größe der Figuren */
.hero-image {
    max-width: 120px; /* Größe an die Vision-Figur angepasst */
    height: auto;
    display: block;
    margin: 20px auto;
}

.vision-image {
    max-width: 120px; /* Standardgröße der Vision-Figur */
    height: auto;
    margin: 0 auto;
}

/* Vision-Bereich */
.vision-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    flex-wrap: wrap; /* Flexbox für kleinere Bildschirme */
}

.vision-section .text-box {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 600px;
    flex: 1 1 100%; /* Auf 100% Breite bei kleinen Bildschirmen */
}

/* Nebeneinanderliegende Boxen */
.dual-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.dual-box {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dual-box h2 {
    color: #FB8E61;
    margin-bottom: 15px;
}

.dual-box p {
    margin-bottom: 15px;
}

.icons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.icons-container img {
    max-width: 100px;
    height: auto;
}

/* Responsive Anpassungen für kleinere Bildschirme */
@media only screen and (max-width: 768px) {
    .vision-section {
        flex-direction: column;
    }

    .vision-image {
        margin-bottom: 15px;
    }
}
/* Abstimmungen und Wahlen */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Avenir Next Condensed', Arial, sans-serif;
    font-weight: bold;
    font-style: normal;
}

body {
    background-color: white;
    color: #333;
    line-height: 1.6;
   
}

.container {
    max-width: 800px;
    width: 90%;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    
}

.box {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

}

.box h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    border-left: 4px solid #FB8E61;
    padding-left: 0.5rem;
}

.box p {
    color: #FB8E61;
    line-height: 1.6;
}

.trend {
    margin-top: 1rem;
}

.trend .bar-container {
    display: flex;
    height: 25px;
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
    background-color: #eee;

}

.trend .bar {
    height: 100%;
    text-align: center;
    line-height: 25px;
    color: white;
    font-weight: bold;
    
}

.bar.ja {
    background-color: #109019;
}

.bar.nein {
    background-color: #aa0b00;
}

/* Kontakt */

.Kontakt{
    color: black;
}

body{
    margin: 0px;
}

.Kontakt input[type="text"],.Kontakt input[type="email"], .Kontakt input[type="tel"] {
    background-color: lightgrey;
    border-radius: 40px;
}

.Kontakt input[type="tel"] {
    margin-bottom: 10px;
}

.Kontakt textarea {
    background-color: lightgrey;
    border-radius: 40px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 20px;
    font-size: 16px;
}

.Kontakt textarea {
    height: 100px;
}

input, textarea {
    color: black; /* Falls Eingabetext schwarz sein soll */
    background-color: white; /* Eingabefelder abheben */
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
}

.submit-box {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 20px;
    background-color: #84B3CC;
    color: white;
    font-size: 18px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-box:hover {
    background-color: #7AC7B5;
}

.container {
    max-width: 600px;
    width: 90%;
    margin: 2rem auto;
    background-color: #FB8E61;
    padding: 2rem;
    padding-bottom: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center; /* Zentriert den Text innerhalb der Box */
}

input {
    color: black; /* Falls Eingabetext schwarz sein soll */
    background-color: white; /* Eingabefelder abheben */
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
}

h1 {
    text-align: center; /* Zentriert den Text */
    margin: 20px 0; /* Optional: Abstand ober- und unterhalb */
}
    
    /* Styling für die Boxen bei "Unsere Werte" */
    .values-grid {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        margin-bottom: 50px;
        
    }
    
    .values-grid div {
        width: 300px;
        padding: 25px;
        font-size: 1.1rem;
        background-color: #FB8E61;
        color: white;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    
    /* Styling für die Team-Boxen */
    .team-grid {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-bottom: 100px;
    }
    
    .team-grid div {
        width: 150px;
        padding: 15px;
        background-color: #FB8E61;
        color: white;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        font-size: 1rem; /* Einheitliche Schriftgröße */
    }
    
    .team-grid strong {
        font-weight: bold; /* Fettgedruckte Namen */
        display: block;
    }
    
    .team-grid span {
        font-weight: normal; /* Normale Schrift für Funktionen */
    }
    
    /* Styling für die Gründergeschichte */
    .founder-story {
        margin: 50px auto;
        max-width: 800px;
        padding: 20px;
        background-color: #f9f9f9;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: left;
        font-size: 1.1rem;
        line-height: 1.8;
        color: #333;
    }
    
    .founder-story h1 {
        color: #FB8E61;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .founder-story p {
        margin-bottom: 15px;
    }