
col {
    color: #7E7E7E;
    color: #282828;
    color: #915534;
    color: #E4C5B4;
    color: #F2F2F2;
}
    

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    padding-top: 100px; /* Header-Höhe + ein wenig extra Platz */
}

h1, h2, a {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #282828;
    text-transform: uppercase;
    margin-top: 0;
}

h1 {
    font-size: 1.6em;
}

h2 {
    font-size: 1.6em;
    text-align: center;
}

h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2em;
    font-weight: 500;
    margin: 0;
    line-height: 1.4em;
    color: #915534;
}

h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 1.2em;
    margin-bottom: .3em;
    color: #915534;
    text-transform: uppercase;
}

hr {
    height:2px;
    width: 30px;
    background: #282828;
    border: 0;
    margin: 0 auto 40px auto;
}

p, li {
    font-family: 'Roboto Slab', serif;
    font-weight: 200;
    margin: 0;
}

ul {
    padding: 0;
    margin:  0;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
}



/*****AUS


 #logo, img, li {
    transition: all 300ms; 
    -webkit-transition: all 300ms; 
    -o-transition: all 300ms; 
    -moz-transition: all 300ms; 
}

******/

/* Header *************************************************/

/* Hamburger-Symbol-Styling */
.hamburger {
    display: none; /* Standardmäßig versteckt */
    font-size: 30px;
    cursor: pointer;
    color: #282828; /* Gleiche Farbe wie der Text */
    margin-top: 25px;
}

header {
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    background: #E4C5B4;
    box-shadow: 0 10px 3px rgba(0, 0, 0, 0,1);
    z-index: 1;
}

#logo {
    width: 80px;
    height: 80px;
    float: left;
    margin: 10px 0 0 20px;
}

#logo img {
    height: 100%;
}

header nav {
    float: right;
    margin: 40px 20px 0 0;
}

header nav ul li {
    float: left;
    margin-right: 25px;
}

/* Navigation auf kleinen Bildschirmen verstecken */
@media (max-width: 1000px) {
    header nav ul {
        display: none; /* Menü verstecken */
        flex-direction: column; /* Menüeinträge untereinander anzeigen */
        width: 100%;
        background-color: #E4C5B4; /* Gleiche Hintergrundfarbe wie der Header */
        position: absolute;
        top: 90px; /* Direkt unter dem Header */
        left: 0;
        padding: 20px;
        z-index: 1;
    }

    /* Abstand zwischen den Menüeinträgen auf kleinen Bildschirmen */
    header nav ul li {
        margin: 10px 0;
    }

    /* Hamburger-Icon anzeigen auf kleinen Bildschirmen */
    .hamburger {
        display: block;
        float: right;
        margin-right: 20px;
    }
}

/* Menü anzeigen, wenn die Klasse 'show' hinzugefügt wird */
#nav-menu.show ul {
    display: flex;
}

/* Logo *************************************************/

#init {
    padding: 30px;
    background-color: #E4C5B4;
    margin: 0;
}

.init-content {
    display: flex;
}

.init-content img {
    max-width: 40%;
    margin: auto;
    align-items: flex-start;
    margin-bottom: 30px;
}


/* About *************************************************/

#about {
    background-color: #f9f9f9;
    margin: 0;
    padding: 30px;
}

/* Flexbox für den Inhalt von #about */
.about-content {
    display: flex;
    align-items: flex-start; /* Vertikale Ausrichtung */
    justify-content: space-between; /* Platz zwischen Bild und Text */
    gap: 20px; /* Abstand zwischen Bild und Text */
    margin-top: 20px;
    margin: auto;
    max-width: 1300px;
}

.slideshow-container {
    position: relative;
    max-width: 45%; /* Volle Breite des Containers */
    overflow: hidden; /* Versteckt den Überlauf der Bilder */
}

/* Bilder in der Slideshow */
.mySlides {
    display: none; /* Nur das aktive Bild wird angezeigt */
    width: 100%; /* Bild füllt Container aus */
    border-radius: 5px; /* Ecken abrunden */
    object-fit: cover; /* Bild wird im Container skaliert */
}

.about-text {
    max-width: 50%; /* Der Text nimmt 55% der Breite ein */
}

#about a {
    color: #915534;
}

.copyright {
    font-size: 8px;
    color: #282828;
    padding-top: 10px;
    text-align: left;
}

/* Responsive Design - auf kleineren Bildschirmen wird die Anordnung vertikal */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column; /* Bild und Text untereinander */
    }

    .mySlides {
        max-width: 100%; /* Bild wird größer auf kleinen Bildschirmen */
        margin-bottom: 20px; /* Abstand unter dem Bild */
    }

    .slideshow-container {
        max-width: 100%; /* Container bleibt voll bei kleinen Bildschirmen */
    }

    .about-text {
        max-width: 100%; /* Text nimmt volle Breite ein */
    }
}

/* Idea *************************************************/

#idea {
    padding: 30px;
    background-color: #E4C5B4;
    margin: 0;
}

.idea-content {
    display: flex;
    align-items: flex-start; /* Vertikale Ausrichtung */
    justify-content: space-between; /* Platz zwischen Bild und Text */
    gap: 20px; /* Abstand zwischen Bild und Text */
    margin-top: 20px;
    margin: auto;
    max-width: 1300px;
}

#idea img {
    max-width: 55%; /* Das Bild nimmt 40% der Breite ein */
    height: auto;
    border-radius: 5px;
    height: auto;
}

.idea-text {
    max-width: 40%; /* Der Text nimmt 55% der Breite ein */
}

/* Responsive Design - auf kleineren Bildschirmen wird die Anordnung vertikal */
@media (max-width: 768px) {
    .idea-content {
        flex-direction: column; /* Bild und Text untereinander */
    }

    #idea img {
        max-width: 100%; /* Bild wird größer auf kleinen Bildschirmen */
        margin-bottom: 20px; /* Abstand unter dem Bild */
    }

    .idea-text {
        max-width: 100%; /* Text nimmt volle Breite ein */
    }
}

/* Project-Plan *************************************************/

#project {
    padding: 30px;
    background-color: #f9f9f9;
    margin: 0;
}

#project h3 {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.project-plan {
    display: flex;
    align-items: flex-start; /* Vertikale Ausrichtung */
    justify-content: space-evenly; /* Platz zwischen Bild und Text */
    gap: 20px; /* Abstand zwischen Bild und Text */
    margin-top: 20px;
    margin: auto;
    max-width: 1200px;
}

.project-text h4 {
    font-family: 'Roboto', sans-serif;
    margin-top: 0;
}

#project img {
    max-width: 45%; /* Das Bild nimmt 40% der Breite ein */
    border-radius: 5px;
    height: auto;
}

.project-text {
    max-width: 40%; /* Der Text nimmt 55% der Breite ein */
}

/* Responsive Design - auf kleineren Bildschirmen wird die Anordnung vertikal */
@media (max-width: 768px) {
    .project-plan {
        flex-direction: column; /* Bild und Text untereinander */
    }

    #project img {
        max-width: 100%; /* Bild wird größer auf kleinen Bildschirmen */
        margin-bottom: 20px; /* Abstand unter dem Bild */
    }

    .project-text {
        max-width: 100%; /* Text nimmt volle Breite ein */
    }
}

/* Project-Grid *************************************************/

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Spalten */
    grid-gap: 20px; /* Abstand zwischen den Grid-Items */
    margin: auto;
    max-width: 1400px;
}

.project-grid div {
    background-color: #E4C5B4; /* Optional: Hintergrundfarbe */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Schatten */
}

.project-grid h4 {
    font-family: 'Roboto', sans-serif;
    margin-top: 0.2em;
}

.project-grid ul, .project-text ul {
    padding-left: 1.3em;
}

.project-grid ul li, .project-text ul li {
    font-family: 'Roboto Slab', serif;
    list-style-type: circle;
    color: #282828; /* Farbe des Listentextes */
    margin-bottom: 8px;
}

@media (max-width: 900px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Spalten für schmalere Bildschirme */
    }
}

@media (max-width: 600px) {
    .project-grid {
        grid-template-columns: 1fr; /* 1 Spalte für sehr schmale Bildschirme */
    }
}


/* Contact *************************************************/

#contact {
    padding: 30px;
    background-color: #E4C5B4;
    margin: 0;
}

#contact p, #contact h4, #contact h3 {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

#contact a {
    text-transform: none;
}

#contact p {
    padding: 5px 0 5px 0;
}


/* Footer *************************************************/

footer {
    width: 100%;
    height: 70px;
}

footer p {
    font-size: 12px;
    color: #282828;
    padding-top: 30px;
    text-align: center;
}