/* Core Navbar Structure */
.su-navbar {
    position: absolute;
    width: 100%;
    z-index: 1030;
    transition: all 0.3s ease;
    padding: 0;
    border-top: 3px solid var(--selcuk-yellow);
}

.container-fluid {
    padding: 0 2rem;
}

.su-navbar__wrapper {
    display: flex;
    align-items: flex-start;
    padding: 0.8rem 0;
    gap: 1rem;
    overflow: visible;
}

.navbar-content {
    overflow: visible;
}

/* Inner Pages */
.su-navbar:not(.su-navbar--homepage) {
    background: #0a193cfa !important;
    border-bottom: 1px solid rgba(255, 201, 13, 0.2);
}

/* Fixed Navigation */
.su-navbar--fixed {
    position: fixed;
    top: 0;
    animation: slideDown 0.35s ease-out;
}

.su-navbar--fixed:not(.su-navbar--homepage) {
    background: #0a193cfa !important;
    border-bottom: 1px solid rgba(255, 201, 13, 0.22);
    box-shadow: 0 6px 20px rgba(10, 17, 32, 0.45);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Responsive & Print */
@media (max-width: 1199.98px) {
    .container-fluid {
        padding: 0 1rem;
    }
}

/* Print Styles */
@media print {
    .su-navbar {
        position: relative !important;
        background: none !important;
        box-shadow: none !important;
        border: none !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .su-navbar,
    .su-navbar *,
    .su-navbar__menu-link,
    .su-navbar__main-menu-link,
    .su-navbar__search {
        transition: none !important;
        animation: none !important;
    }
}
