/* CSS Stylesheet */

/* HTML & Root Design  */
/* ================== */
:root {
    color-scheme: light;
    scroll-behavior: smooth;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    margin: 0;
    padding: 0;
    height: 100vh;
}

body {
    -webkit-font-smoothin: antialiased;
}

/* Navigationbar Design  */
/* ==================== */
.navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem;
    padding: 0.5rem 1rem;
    z-index: 1000;
    backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 4px 12px 6px rgba(0, 0, 0, 0.252);
    border-radius: 12px;
}

.navbar-list {
    list-style-type: none;
    display: flex;
    gap: 2rem;
}

.navbar-link a {
    color: rgb(11, 74, 246);
    display: inline-block;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}

.navbar-wrapper img {
    width: 96px;
    height: auto;
    border-radius: 12px;
    display: inline-block;
}

/* Impressum Card & Design  */
.impressum-card {
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding: 2rem;
    margin: 1rem auto;
    margin-top: 6rem;
    border-radius: 12px;
    max-width: 80%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}



/* Footer Design  */
.footer-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    backdrop-filter: blur(4px);
    box-shadow: 4px 12px 6px rgba(0, 0, 0, 0.252);
    border-radius: 12px;
    color: #f0f0f0;
    padding: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 4rem;
    bottom: 0;
    border-radius: 12px;
}

.footer-list {
    list-style-type: none;
    display: flex;
    gap: 6rem;
}

.footer-link a {
    color: rgb(11, 74, 246);
    text-decoration: none;
    font-size: 1.6rem;
}

/* MEDIA QUERY & Responsive Design  */
/* =============================== */

/* Smartphone Screens  */
/* ================== */
@media (max-width: 768px) {

    body {
    width: auto;
    max-width: 100%;
    overflow-x: hidden;
    }

    .navbar-wrapper {
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        padding: 0.10rem;
    }

    .navbar-wrapper img {
        width: 64px;
        height: auto;
    }

    .navbar-list {
        flex-wrap: wrap;
        max-width: 100%;
        overflow: hidden;
        gap: 0.3rem;
        margin-right: 2rem;
    }

    .navbar-link a {
        font-size: 0.8rem;
        padding: 0.3rem;
    }

    .blog-article p {
        text-align: block;
    }
    
    .blog-image-grid {
        grid-template-columns: 1fr;
    }

    .blog-image-grid img {
        width: 100%;
        height: auto;
    }

    .footer-wrapper {
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        padding: 0.15rem;  
    }

    .footer-list {
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 2.8rem;
        margin-right: 2rem;
    }

    .footer-link a {
        font-size: 0.8rem;
    }
    * {
         box-sizing: border-box;
    }

    body {
        overflow-x: hidden;
    }           
}