.NavBarGrid {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 10px 50px; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fefaed;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-height: 80px; 
    box-sizing: border-box; 
}

.LogoContainer {
    justify-self: start;
    margin-left:50px;
}

.CenterItems {
    display: flex;
    gap: 1.25rem;; 
    flex-wrap: wrap; 
    justify-content: center;
}

    .CenterItems span {
        font-size: 1em;
        transition: all 0.3s ease;
        user-select: none;
    }

        .CenterItems span:hover {
            color: #bf5860;
            transform: translateY(-2px);
            cursor: pointer;
            user-select: none;
        }

.navBarText {
    color:black;
}

/* Footer */

.FooterContainer {
    display: flex;
    justify-content: center;
    min-height: 30vh;
    width: 100%;
    background-color: #ede9d8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    flex-direction:column;
    align-items:center
}

.footerBox {
    display: flex;
    flex-direction: row;
    margin: 10px;
    gap: 20px;
    align-items: center;
}
