/* Full screen navbar */
.full-navbar {
    background-color: #ff4655;
    width: 100%;
    position: relative;
    text-align: center;
    padding: 2rem 0;
}

.full-navbar .navbar-brand {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.full-navbar .navbar-nav {
    text-align: center;
    margin-top: 1rem;
}

.full-navbar .nav-item {
    display: inline-block;
    margin: 0 1.5rem;
}

.full-navbar .nav-link {
    color: white !important;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s;
}

.full-navbar .nav-link:hover {
    color: #d73c4a !important;
}

/* Additional Styling for Responsive */
@media (max-width: 768px) {
    .full-navbar .navbar-toggler {
        display: block;
    }

    .full-navbar .nav-item {
        margin: 1rem 0;
    }
}
