.header-spacer {
        position: relative;
    height: 3rem; 
    background-color: #94C7BB;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-spacer p {
    position: absolute;
    opacity: 0;
    transition: opacity 0.6s ease;
     font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.header-spacer p.active {
    opacity: 1;
}

.header-placeholder p{
    display: flex;
    height: 3rem;
    justify-content: center;
    align-items: center;
}

header.topnav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 50px;
    color: rgb(0, 0, 0);
    position: relative;
}


.topnav h1 a {
    color: #000000;
    text-decoration: none;
    font-family: serif;
    font-size: 0.8em;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 4rem;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
    font-size: 0.9rem;
    
}

.nav-links a:hover {
   font-weight: 500;
}

.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ffffff;
}

.cart-container {
    position: absolute;
    right: 50px;
}

.cart-icon {
    width: 24px;
    height: 24px;
    stroke: #000000;
    color: #000000;
    stroke-width: 2;
    fill: none;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    stroke: #ffffff;
    color: #ffffff;
}