/* 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;
}

/* Team Design  */
/* =========== */
.team-wrapper {
    padding: 2rem;
    text-align: center;
}

.team-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0b4af6;
}

.team-card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 4px 8px 24px rgba(0, 0, 0, 0.47);
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.756);
}

.team-image {
    width: 180px;
    height: auto;
    border-radius: 32px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.team-role {
    font-size: 1.1rem;
    color: #0b4af6;
    margin-bottom: 0.5rem;
}

.team-description {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 1rem;
}


/* 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;
    }

    .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;
    }           
}