html {
    /*
    width: auto;
    height: auto;
    */
    width: 100%;
    height: 100%;
    background-color: rgb(251, 252, 249); 
}
*/

body {
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%; 


    margin: 0;
    padding: 0;

    font-family: Arial, sans-serif;
    color: #333;
    background-color: rgb(251, 252, 249);
    line-height: 1.6;
    

    /*    
    display: grid;
    grid-template-areas:
        "header"
        "main"
        "footer";
    grid-template-rows: auto 1fr auto; */

    /*
    font-family: Arial, sans-serif;
    margin: 0; /* Margin entfernen, damit keine Lücken entstehen 
    text-align: center; /* Standard-Textausrichtung für den Body 
    min-height: 100vh; /* Stellt sicher, dass der Body mindestens die volle Höhe hat 
    display: flex; /* Flexbox für die Anordnung des Inhalts und Footers 
    flex-direction: column; /* Elemente werden untereinander angeordnet 
    */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    width: auto;
    height: 15vh;
    margin-top: 0; 

    font-family: arial, sans-serif;
    color: #333;
    background-color: rgb(251, 252, 249);
    /*grid-area: header;*/
}

    .centered-header {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-grow: 1;
            flex-wrap: nowrap;
            width: auto;
            height: 100%;

            color: #333;
            background-color: rgb(251, 252, 249);
            
            
    }    
    .centered-section {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-wrap: nowrap;
        height: 100%;
        width: auto;
        max-width: 100%;
        max-height: 100%;
        
        color: #333;
        background-color: rgb(251, 252, 249);

        
        
    }

    .center-logo {
            /*flex-grow: 1; */
            text-align: center;
            width: auto;
            height: 100%;
        }

    .logo-img {
            width: auto;
            height: 100%;
            /*object-fit: cover;*/
        }    

    nav.nav-menu {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            font-size: 2em;
            cursor: pointer;
            transition: color 0.3s;
            background-color: rgb(251, 252, 249);

            
        }
        
        nav.nav-menu:hover {
            color: #00aaff;
            
        }

    header a {
        text-decoration: none;
        color: #333;

    }

      

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: rgb(251, 252, 249);
}
.titelbild{
    display: flex;
    flex-grow: 1;
    overflow: hidden;
    height: 85vh;
    width: 100%;
    
    background-color: #333;
}

#indexfoto {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

@media (max-width: 900px) {
  .titelbild {
    height: 50vh;
    width: 100%;
    overflow: hidden;
    
  }
  #indexfoto {
    height: 100%;
    object-fit: cover;

  }
}

.blog-header{
    /*
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    position:static;
    */

    color: #333;
    background-color: rgb(251, 252, 249);
    font-family: 'Bretannic', sans-serif;
}
section {
    color: #333;
    background-color: rgb(251, 252, 249);
    font-family: 'Bretannic', sans-serif;
}

#top-articles {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    flex-flow: row;
    flex-wrap: nowrap;

    color: #333;
    background-color: rgb(251, 252, 249);
}

/*Inhalt der Website. Klasse muss im main erstellt werden*/
    .content {
                padding: 40px 20px;
                text-align: center;
            }  

    .blog-footer{
        color: #333;
    background-color: rgb(251, 252, 249);
    font-family: 'Bretannic', sans-serif;
}


footer {
    justify-content: space-between;
    align-items: center;
    text-align: center;
    width: 100%; 

    margin-top: 40px; /* Etwas Abstand zwischen Inhalt und Footer */
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgb(118, 117, 117); /* Hintergrundfarbe des Footers */
    color: #555555; /* Schriftfarbe im Footer */
    font-size: 0.3em;
            
    
    

    /*grid-area: footer;*/
    
}

    footer a {
        color: #555555;
        text-decoration: none;
        font-size: 0.3em;
        margin: 0 10px;
    }
    footer a:hover {
        text-decoration: underline;
    }

a:hover {
    text-decoration: underline;
}
/* 3. Sichtbarkeit & Verhalten */
.toggle-box {
    display: none;
}

h1, h2 {
    color: #2c3e50;
    text-align: left;
}


ul {
    font-size: 1.3em;
}

ul ul {
    font-size: inherit;
}

.blog-container {
    max-width: 900px;
    height: auto;
    

}

.blog-articles-foto {
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;

}


/*
.visible-box {
    background: #e74c3c;
    padding: 10px;
    color: white;
}

/* 4. Bilder & Hintergründe 
.hero {
    background-image: url('../img/hero.jpg'); /* Alternativ externes Bild verwenden 
    background-size: cover;
    background-position: center;
    height: 200px;
}

/* 5. Effekte & Animationen 
.btn {
    background: #3498db;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #2980b9;
    cursor: pointer;
}

/* 6. Struktur & Gliederung 
.card {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
*/

/* 7. Responsive Design */
/*
@media (max-width: 768px) {
    main {
        margin: 10px;
        padding: 10px;
    }

    h1 {
        font-size: 1.5em;
    }
}
*/

/* 8. Benutzerinteraktion */
input:focus {
    outline: 2px solid #27ae60;
}








/* Container für die Kacheln */
.blog-kacheln-container {
    display: grid;
    /* Erstellt ein responsives Raster: 
       Auf großen Bildschirmen 3 Spalten, auf kleinen 1 */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Stil für eine einzelne Kachel */
.blog-kachel {
    position: relative; /* Wichtig für den Hover-Effekt */
    display: block;
    text-decoration: none; /* Entfernt die Unterstreichung */
    color: #333;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden; /* Verhindert, dass der Auschnitt über die Kachel ragt */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-kachel:hover {
    transform: translateY(-5px); /* Hebt die Kachel beim Hovern an */
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.blog-kachel img {
    width: 100%;
    height: 200px;
    object-fit: cover; /* Stellt sicher, dass das Bild den Bereich ausfüllt */
}

.kachel-inhalt {
    padding: 15px;
    text-align: center;
}

.kachel-inhalt h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Hover-Effekt für den Textausschnitt */
.kachel-ausschnitt {
    position: absolute; /* Platziert den Text relativ zur Kachel */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    opacity: 0; /* Standardmäßig unsichtbar */
    transition: opacity 0.3s ease;
}

/* Zeigt den Textausschnitt beim Hovern an */
.blog-kachel:hover .kachel-ausschnitt {
    opacity: 1;
}