/* ---------- Global Settings ---------- */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(90deg,#2b1d31, #1b121d);
    color: white;
}

/* ---------- Sidebar ---------- */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: rgba(49, 49, 49, 0.8);
    text-align: center;
    padding-top: 20px;
    transition: all 0.3s ease;
}

.logo {
    width: 60px;
    height: 60px;
}

.head {
    font-size: 160%;
    font-weight: bold;
    background: linear-gradient(90deg, #3fdadd, #176ece, #ae17ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------- Navigation ---------- */
.nav {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-left: 25px;
}

.nav_link {
    color: aliceblue;
    text-decoration: none;
    font-size: 16px;
    margin: 8px 0;
    transition: all 0.2s ease;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
}

.nav_link:hover {
    opacity: 0.7;
    transform: translateX(5px);
}

.nav_link_small {
    color: rgb(200, 200, 200);
    font-size: 13px;
    text-decoration: none;
    margin: 5px 0;
}

.nav_link_small:hover {
    opacity: 0.7;
}

/* ---------- Social Icons ---------- */
.socials img {
    width: 30px;
    margin: 0 8px;
    transition: transform 0.2s ease;
}

.socials img:hover {
    transform: scale(1.15);
}

.nav_bottom {
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.nav_hr {
    width: 80%;
    border: none;
    height: 1px;
    background: #555;
    margin: 14px auto;
}

/* ---------- Main Content ---------- */
.main {
    margin-left: 260px;
    padding: 30px;
}

.title {
    font-size: 60px;
    animation: fadeIn 1s ease, moveDown 0.6s ease-out;
    text-align: center;
    color: rgb(238, 224, 255);
}

.title_line {
    width: 280px;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    animation: fadeIn 1.2s ease;
    margin: 0 auto 30px;
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes moveDown {
    from { transform: translateY(-10px); }
    to { transform: translateY(0); }
}

.team_text {
    text-align: center;
}

.team_image {
    width: 90%;
    border-radius: 10px;
    transition: transform 0.5s ease, opacity 0.6s ease;

}


.team_image:hover {
    transform: scale(1.02);
}

.team_space_line {
    width: 80%;
    height: 1px;
    background: gray;
    border: none;
    margin: 40px auto;
}

.team_list {
    list-style: none;
    padding: 0;
    margin: 10px auto;
    margin-left: 120px;
    display: inline-block;
    max-width: 600px;
    text-align: left;
}

.team_list li {
    margin: 12px 0;
    font-size: 18px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.role {
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 14px;
}

.role.admin {
    background-color: #992d22;
    color: #fff;
}

.role.developer {
    background-color: aqua;
    color: #000;
}

.role.moderator {
    background-color: #e74c3c;
    color: #fff;
}

.role.builder {
    background-color: green;
    color: #fff;
}

.name {
    color: #eee;
    font-size: 16px;
}

/* ---------- Responsive ---------- */
@media (max-width: 850px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding-bottom: 15px;
    }

    .main {
        margin-left: 0;
        padding-top: 20px;
    }


    .nav_bottom {
        display: none;
    }

    .nav_hr {
        display: none;
    }
    
}

@media (min-width: 851px) {
    .nav_bottom_ {
        display: none;
    }
}

.footer {
    width: 100%;
    text-align: center;
    color: #ddd;
    padding: 20px 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 11px;
    opacity: 0.8;
    margin-top: 50px;
}
