.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.gallery-slider {
    scroll-snap-type: x mandatory;
}

.gallery-slide {
    scroll-snap-align: center;
}

/* Ambient, forest-tinted shadows instead of neutral grey drop shadows */
.shadow-soft {
    box-shadow: 0 8px 20px -6px rgba(24, 40, 30, 0.12), 0 2px 6px -2px rgba(24, 40, 30, 0.08);
}

.shadow-soft-lg {
    box-shadow: 0 16px 32px -8px rgba(24, 40, 30, 0.18), 0 6px 12px -4px rgba(24, 40, 30, 0.1);
}

.shadow-soft-xl {
    box-shadow: 0 24px 48px -12px rgba(24, 40, 30, 0.24), 0 10px 20px -6px rgba(24, 40, 30, 0.12);
}

/* Editorial underline for top-level nav links */
.nav-link {
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Collapsible mobile nav drawer */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

.mobile-menu.is-open {
    max-height: 28rem;
    opacity: 1;
}
