/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
}

/* NAVBAR */
.navbar {
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-logo:hover {
    color: #f1f1f1;
}

/* MENU */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-item .nav-link {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-item .nav-link:hover {
    color: #f1f1f1;
}

/* MENU MOBILE */
.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 0.3rem;
}

.menu-bar {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        background: #28a745;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        text-align: center;
    }
}
