.nav-arrow {
    font-size: 1.5rem;
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.2s;
    user-select: none;
    cursor: pointer;
}

.nav-arrow:hover {
    color: #000;
    opacity: 0.7;
}

.nav-arrow.disabled {
    color: #ccc;
    cursor: default;
    pointer-events: none;
}

/* Ensure arrows are visible on mobile */
@media (max-width: 600px) {
    .nav-arrow {
        font-size: 1.25rem;
        padding: 0.5rem;
    }
}

/* New Navigation Styles */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    /* Ensure button is above menu */
    position: relative;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-instagram {
    color: var(--text-muted);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.2s;
    gap: 0.5rem;
}

.nav-instagram-text {
    display: none;
}

.nav-instagram:hover {
    color: var(--text-main);
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: var(--text-main);
    opacity: 0.7;
    transition: opacity 0.2s;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    header {
        padding: 0.75rem 1rem !important;
        /* Reduce padding on mobile */
        transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    }

    /* Reduce title size */
    header h1 {
        font-size: 1.1rem !important;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background-color: var(--bg-card);
        /* Opaque background for readability */
        padding: 1.5rem 0;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 0;
    }

    .nav-brand {
        gap: 0.5rem;
    }

    .nav-instagram {
        font-size: 1.5rem;
        margin-top: 0.5rem;
        color: var(--text-main);
    }

    .nav-instagram-text {
        display: inline;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
}

/* Hide header on scroll down (mobile) */
@media (max-width: 768px) {
    header.nav-hidden {
        transform: translateY(-100%);
    }
}