/* ── Island Navbar ── */
.nav-island {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 900px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 16px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nav-logo-link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.nav-logo-fallback {
    display: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}
.nav-logo-fallback span { color: #FF6B00; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-shrink: 1;
}
.nav-links a {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.75);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}
.nav-links a:hover { color: #FF6B00; }

.nav-cta {
    flex-shrink: 0;
    background: #000;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: 900;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 999px;
    white-space: nowrap;
    transition: background 0.2s;
}
.nav-cta:hover { background: #FF6B00; }

/* Hide nav links on mobile */
@media (max-width: 767px) {
    .nav-links { display: none; }
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: #ffffff;
    color: #000000;
}

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

.kinetic-border {
    border: 2px solid #000000;
}

.orange-hover:hover {
    background-color: #FF6B00;
    color: #ffffff;
    border-color: #FF6B00;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    animation: marquee 30s linear infinite;
}

/* Nav logo */
.logo-nav {
    display: block;
    height: 50px;
    width: 200px;
    object-fit: cover;
    object-position: center;
}

/* Footer logo: same crop, invert to white on the black footer */
.logo-footer {
    display: block;
    height: 50px;
    width: 200px;
    object-fit: cover;
    object-position: center;
    filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
    .logo-footer {
        height: 60px;
        width: 240px;
    }
}
