*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Poppins,sans-serif;
}

body{

    background:url("/static/images/background_login.jpeg") center/cover fixed;
    min-height:100vh;
}

body::before{

    content:"";
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:-1;
}

/* Navbar */

nav{

    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    width:95%;
    height:75px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 30px;

    border-radius:18px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    z-index:1000;
}

.logo{

    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{

    width:55px;
}

.logo h2{

    color:#fff;
}

nav ul{

    display:flex;
    list-style:none;
    gap:25px;
}

nav ul li a{

    color:#fff;
    text-decoration:none;
}
/* Hamburger */

.menu-toggle{
    display:none;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

/* Hero */

.hero{

    padding:130px 20px 40px;
    display:flex;
    justify-content:center;
}

.glass{

    width:100%;
    max-width:1400px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(20px);

    border-radius:20px;

    padding:40px;

    color:#fff;
}

.glass h1{

    text-align:center;
    font-size:42px;
}

.glass>p{

    text-align:center;
    margin:15px 0 40px;
}

/* Team Grid */

.team-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;
}

/* Card */

.team-card{

    background:rgba(255,255,255,.08);

    border-radius:20px;

    padding:30px;

    text-align:center;

    transition:.3s;
}

.team-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 30px rgba(0,0,0,.30);
}

.team-card img{

    width:140px;

    height:140px;

    object-fit:cover;

    border-radius:50%;

    border:5px solid #60a5fa;

    margin-bottom:20px;
}

.team-card h3{

    font-size:24px;

    margin-bottom:8px;
}

.team-card h4{

    color:#60a5fa;

    margin-bottom:15px;

    font-weight:500;
}

.team-card p{

    font-size:16px;

    color:#e5e7eb;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    nav{
        width:100%;
        left:0;
        top:0;
        transform:none;
        border-radius:0;
        padding:15px 20px;
        height:auto;
        flex-wrap:wrap;
    }

    .menu-toggle{
        display:block;
    }

    nav ul{
        display:none;
        flex-direction:column;
        width:100%;
        margin-top:15px;
        gap:0;
    }

    nav ul.show{
        display:flex;
    }

    nav ul li{
        width:100%;
    }

    nav ul li a{
        display:block;
        padding:15px;
        border-top:1px solid rgba(255,255,255,.15);
    }

    .hero{
        padding-top:130px;
    }

    .glass{
        padding:20px;
    }

    .glass h1{
        font-size:28px;
    }

    .glass p{
        font-size:15px;
        line-height:26px;
    }

    .employee-table{
        min-width:1000px;
    }

    .employee-table th,
    .employee-table td{
        padding:12px;
        font-size:13px;
    }

}

/* ================= SMALL MOBILE ================= */

@media(max-width:480px){

    .logo img{
        width:42px;
    }

    .logo h2{
        font-size:20px;
    }

    .glass{
        padding:15px;
    }

    .glass h1{
        font-size:24px;
    }

    .glass p{
        font-size:14px;
    }

    .employee-table th,
    .employee-table td{
        padding:10px;
        font-size:12px;
    }

}


