body {
    margin: 0;
}

/* Base Styles (for Desktop) */
.navbar-nav {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    /* This padding is a fixed value and will not be responsive. Let's make this flexible for smaller screens. */
    /* padding-left: 710px; */
}

.navbar {
    background-color: #0d1b2a;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.navbar-brand {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    margin-right: auto;
}

.navbar-brand span {
    color: #ffffff;
    font-size: 3.25rem;
    letter-spacing: 1px;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background: no-repeat center center;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-nav .nav-link {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 1.3rem;
    transition: color 0.3s ease;
    text-decoration: none !important;
    border-bottom: none !important;
    padding-right: 10px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fca311;
    text-decoration: none !important;
}

/* Make sure the container is flexible */
.navbar .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%; /* Ensure container takes full width */
}

.navbar-toggler-icon {
    /* Ensure it displays and is visible */
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    
    /* NEW: Use a reliable white SVG icon */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

/* Also, ensure the toggler button has no border so it doesn't look like a box */
.navbar-toggler {
    border: none; 
}


