.navbar-custom {
    background: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 15px 20px;
    transition: all 0.3s ease;
}
 
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    margin-right: 15px;
}

.brand-text {
    font-size: 2rem;
    font-weight: bold;
    color: #ffde59; /* Bright accent color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Subtle text shadow */
}

.nav-link {
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.2s ease;
    text-transform: uppercase; /* Make the links uppercase */
}

.nav-link:hover {
    color: #ffde59 !important; /* Bright accent color on hover */
}

.nav-link.active {
    color: #ff5733 !important; /* Bright color for active link */
}

/* Smooth scroll for internal links */
html {
    scroll-behavior: smooth;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }
    .nav-item {
        margin: 10px 0;
    }
}

/* Styling for Buy Button */
.buy-button {
    background-color: #ff9800; /* A vibrant orange color */
    color: #fff; /* White text color */
    border-radius: 25px; /* Rounded corners for a modern look */
    padding: 8px 20px; /* Padding to give the button a substantial feel */
    margin-left: 10px; /* Spacing from other nav items */
    transition: background-color 0.3s ease; /* Smooth transition effect */
}

.buy-button:hover {
    background-color: #e67e22; /* Slightly darker shade on hover */
    text-decoration: none; /* Remove underline on hover */
    color: #fff; /* Keep text white on hover */
}

