﻿/*body {
}*/
/* HEADER STYLING */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    width:100%;
    z-index: 1000;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.navbar-logo a {
    text-decoration: none;
    color: #333;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2d3436;
    font-family: 'Segoe UI', sans-serif;
}
/* LOGO IMAGE */
.navbar-logo img {
    height: 50px; /* Adjust height */
    width: auto; /* Auto width */
    object-fit: contain;
}

/* Remove old logo text styling if exists */
.logo-text {
    display: none;
}

/* NAVIGATION MENU */
.navbar-menu {
    flex-grow: 1;
    margin-left: 80px;
}

.menu-list {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.menu-link {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .menu-link:hover {
        color: #6fb583; /* Green color */
    }

    .menu-link.active {
        color: #6fb583;
        border-bottom: 2px solid #6fb583;
    }

/* LOGIN BUTTON */
.navbar-auth {
    margin-left: auto;
}

.btn-login {
    padding: 10px 25px;
    border: 2px solid #333;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-block;
}

    .btn-login:hover {
        background-color: #333;
        color: #fff;
    }

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .navbar-container {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .navbar-menu {
        margin-left: 0;
        width: 100%;
        margin-top: 15px;
    }

    .menu-list {
        flex-direction: column;
        gap: 15px;
    }

    .navbar-auth {
        margin-left: 0;
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
}

