/* Navigation bar styling */
.nav-bar {
    position: relative;
    border-radius: 8px;
    width: 68.4%;
    height: 6px;
    background-color: #27292a;
    top: 5.5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* Navigation layout */
.navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 100%;
    padding: 5px;
    flex-wrap: wrap;
}

/* Navigation link styling */
.navigation a {
    color: #ededed;
    transition: color 0.3s, font-size 0.3s ease;
}

.navigation a.active {
    color: #e56699;
    font-weight: bold;
}

/* Navigation list styling */
.navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

/* Navigation item styling */
.navigation li {
    margin: 0 15px;
    transition: color 0.3s ease, font-size 0.3s ease;
}

/* Default link styling */
.navigation a {
    text-decoration: none;
    color: #ededed;
    font-size: 1rem;
    transition: color 0.3s ease, font-size 0.3s ease, margin 0.3s ease;
}

/* Link hover effect */
.navigation a:hover {
    color: #e56699;
}

/* -----------------------------Responsive Design----------------------------- */

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .navigation {
        padding: 5px;
    }
    
    .navigation a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .navigation li {
        margin: 0 5px;
    }
    .navigation a {
        font-size: 0.7rem;
    }
}
