body {
    font-family: "Geist", sans-serif;
    font-optical-sizing: auto;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: none !important;
}

.outline-text {
    color: transparent; /* makes fill invisible */
    -webkit-text-stroke: 1px white; /* outline thickness + color */
    font-weight: 700; /* makes it look sharper */
}

.nav-fixed {
    position: fixed;
    top: -100%;
    left: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05); /* slightly stronger shadow */
    animation: slideDown 0.3s forwards;
}

@keyframes slideDown {
    to {
        top: 0;
    }
}

@media (min-width: 1024px) {
    /* Links turn white only on desktop */
    #navbar.nav-fixed a {
        color: black !important;
        border-color: black !important;
    }
}

@media (max-width: 767px) {
    #navbar.nav-fixed .mobileLogo img {
        width: 60px;
        height: auto;
    }
}
