/* Material Symbols Outlined */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Global Font Settings */
body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, .font-headline {
    font-family: 'Manrope', sans-serif;
}

.logo, .site-logo {
    height: 2.5rem;
    width: auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
}

.site-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
}

.site-nav {
    display: none;
}

@media (min-width: 768px) {
    .site-nav {
        display: flex;
        gap: 2rem;
        align-items: center;
    }
}

.site-nav-link {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #475569;
    transition: color 0.2s ease;
    text-decoration: none;
}

.dark .site-nav-link {
    color: #cbd5e1;
}

.site-nav-link:hover {
    color: #009B96;
}

.site-nav-link.active {
    color: #009B96;
    border-bottom: 2px solid #009B96;
    padding-bottom: 0.25rem;
}

.site-header-action {
    background-color: #006764;
    color: #ffffff;
    padding: 0.625rem 1.5rem;
    border-radius: 0.75rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-header-action:hover {
    background-color: #00827e;
    transform: scale(1.02);
}

.site-header-action:active {
    transform: scale(0.98);
}