/* Navbar Styling */
.navbar {
    background-color: transparent;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}
/* Navbar Brand Styling */
.navbar-brand {
    color: #fff !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Full name hidden on mobile, abbreviation shown */
.full-name {
    display: none;
}

.short-name {
    display: inline;
}

/* On larger screens, show full name, hide abbreviation */
@media (min-width: 992px) {
    .full-name {
        display: inline;
    }
    .short-name {
        display: none;
    }
}

/* Adjust font size and logo on smaller screens */
@media (max-width: 576px) {
    .navbar-brand span {
        font-size: 1rem;
    }

   .navbar-brand img {
        width: 35px;
        height: 35px;
    }

    .navbar-toggler {
        margin-left: auto;
    }
}






/* Navbar Links */
.navbar-nav .nav-link {
    font-size: 1rem;
    font-weight: 500;
    margin-left: 15px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #f0ad4e !important;; /* Gold accent on hover */
    /*text-decoration: underline;*/
}

.navbar-nav .nav-link.active {
    color: #f0ad4e !important; /* Gold accent */
    /*text-decoration: underline;*/
}


/* Navbar on Scroll: Blurred Black Background */
/* Navbar when page has no scroll or is scrolled */
.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.navbar .btn {
    margin-left: 10px; /* Space between buttons */
}

.navbar img.rounded-circle {
    border: 2px solid #fff; /* Optional: Border around the profile image */
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1325px;
    }
}


/* Adjust profile image size if needed */
@media (max-width: 576px) {
    .navbar img.rounded-circle {
        width: 40px; /* Smaller size for mobile */
        height: 40px; /* Maintain aspect ratio */
    }
}
.no-scroll-bg {
    background-color: rgba(0, 0, 0, 0.8) !important; /* Change this to your desired color */
}
