@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: #EAEAEA;
    text-align: center;
    background-color: #11151C;
}

main {
    flex-grow: 1;
}

.taskbar {
    position: sticky;
    top: 0;
    padding: 15px 30px;
    background: rgba(17, 21, 28, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.taskbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
}

.taskbar-nav {
    display: flex;
    gap: 25px;
}

.taskbar-nav a {
    text-decoration: none;
    color: #EAEAEA;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.taskbar-nav a:hover,
.taskbar-nav a.active {
    background-color: #007BFF;
    color: #fff;
}

.taskbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.taskbar-logo {
    height: 40px;
    width: auto;
}

.hamburger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 900px) {
    .taskbar-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #11151C;
        flex-direction: column;
        padding: 20px 0;
    }
    .taskbar-nav.active {
        display: flex;
    }
    .taskbar-nav a {
        padding: 15px;
        width: 100%;
        text-align: center;
        border-radius: 0;
    }
    .hamburger-button {
        display: block;
    }
    .taskbar-right .taskbar-logo {
        display: none;
    }
    .taskbar-brand {
        font-size: 0;
    }
    .taskbar-brand::before {
        content: '';
        display: block;
        width: 40px;
        height: 40px;
        background-image: url('../logo.png');
        background-size: contain;
        background-repeat: no-repeat;
    }
    .hamburger-button.active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger-button.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    .hamburger-button.active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
.footer {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a222b;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    margin-top: auto;
}

.footer p {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin: 0;
}

.footer .social-media {
    display: flex;
    gap: 20px;
}

.footer .social-media a {
    text-decoration: none;
    color: #a0a0a0;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer .social-media a:hover {
    color: #007BFF;
    transform: scale(1.1);
}
