@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: url('assets/dashboardbg.png') no-repeat center center fixed;
    background-size: cover;
    font-family: "Exo 2", sans-serif;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(22, 22, 24, 0.9);
    padding: 15px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3fb9c1;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #3fb9c1;
}

/* ========== LOGIN SECTION ========== */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.login-container {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    max-width: 400px;
    width: 90%;
}

.login-container h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.LogIn-btn {
    padding: 12px 25px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #3fb9c1, #2596be);
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(63, 185, 193, 0.4);
}

.LogIn-btn:hover {
    background: linear-gradient(135deg, #2596be, #3fb9c1);
    box-shadow: 0 0 25px rgba(63, 185, 193, 0.7);
    transform: scale(1.05);
}

/* ========== MEDIA QUERIES ========== */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background-color: rgba(22, 22, 24, 0.95);
        flex-direction: column;
        width: 100%;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 15px;
        text-align: center;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        padding-top: 100px;
    }
}
