/* ==========================================================================
   NAVBAR REDESIGN - Modern Professional Layout
   Strategic positioning with Download Resume CTA
   ========================================================================== */

/* Reset previous logo styles */
.nav-logo,
.nav-logo-badge,
.nav-logo-text,
.nav-logo-name,
.nav-logo-subtitle,
.subtitle-dot {
  display: none !important;
}

/* ==========================================================================
   Container Layout - Left-Center-Right Distribution
   ========================================================================== */

.nav-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "brand nav actions";
  align-items: center;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   LEFT: Brand Section (Text-Based Logo)
   ========================================================================== */

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

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all var(--transition-smooth);
  padding: 0.5rem;
  border-radius: 12px;
}

.brand-link:hover {
  transform: translateY(-2px);
}

/* Initials Badge */
.brand-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #E50914 0%, #B20710 100%);
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.25rem;
  color: #FFFFFF;
  letter-spacing: 1px;
  box-shadow:
    0 4px 12px rgba(229, 9, 20, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.brand-initials::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, #E50914, #FF1E2D, #E50914);
  background-size: 300% 300%;
  border-radius: 14px;
  opacity: 0;
  z-index: -1;
  animation: gradient-shift 3s ease infinite;
  transition: opacity var(--transition-smooth);
}

.brand-link:hover .brand-initials::before {
  opacity: 1;
}

.brand-link:hover .brand-initials {
  transform: rotate(-5deg);
  box-shadow:
    0 8px 20px rgba(229, 9, 20, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

/* Brand Text */
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.brand-name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-primary);
  letter-spacing: 0.3px;
  line-height: 1;
  background: linear-gradient(135deg, #FFFFFF 0%, #E0E0E0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all var(--transition-smooth);
}

.brand-subtitle {
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.brand-link:hover .brand-name {
  background: linear-gradient(135deg, #FFFFFF 0%, #E50914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   CENTER: Navigation Menu
   ========================================================================== */

.nav-menu {
  grid-area: nav;
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

/* Simplified nav links - removed icons for cleaner look */
.nav-link {
  display: flex;
  align-items: center;
  padding: 0.625rem 1.125rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
  text-transform: capitalize;
  letter-spacing: 0.3px;
  position: relative;
  border-radius: 10px;
  background: transparent;
  border: 1px solid transparent;
  transition: all var(--transition-smooth);
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  border-radius: 10px;
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-link.active {
  background: rgba(229, 9, 20, 0.12);
  border-color: rgba(229, 9, 20, 0.3);
  color: var(--netflix-white);
  box-shadow: 0 4px 12px rgba(229, 9, 20, 0.25);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: var(--netflix-red);
  border-radius: 2px;
}

/* ==========================================================================
   RIGHT: Action Buttons (Resume + Contact)
   ========================================================================== */

.nav-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Hide mobile nav-actions on desktop */
.nav-menu .nav-actions {
  display: none;
}

/* Show desktop nav-actions */
.nav-actions-desktop {
  display: flex;
}

/* Base button styles for both CTAs */
.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}

.nav-btn .btn-icon {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  transition: transform var(--transition-smooth);
}

.nav-btn:hover .btn-icon {
  transform: scale(1.1);
}

/* Resume Button - Secondary Style (Glassmorphic) */
.nav-btn-resume {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-btn-resume::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 1.5px;
  background: linear-gradient(135deg, #00D9FF, #7C3AED, #00FF85);
  background-size: 200% 200%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: border-flow 3s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav-btn-resume:hover::before {
  opacity: 1;
}

.nav-btn-resume:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow:
    0 8px 20px rgba(0, 182, 212, 0.3),
    0 4px 12px rgba(124, 58, 237, 0.2);
}

.nav-btn-resume .btn-icon {
  color: #00D9FF;
}

/* Glow effect for resume button */
.btn-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.3), rgba(124, 58, 237, 0.3));
  border-radius: 12px;
  opacity: 0;
  filter: blur(8px);
  transition: opacity var(--transition-smooth);
  z-index: -1;
}

.nav-btn-resume:hover .btn-glow {
  opacity: 0.6;
}

/* Contact Button - Primary CTA (Netflix Red) */
.nav-btn-contact {
  background: linear-gradient(135deg, #E50914 0%, #B20710 100%);
  color: var(--netflix-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 4px 15px rgba(229, 9, 20, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-btn-contact::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, #FF1E2D, #E50914, #B20710, #E50914);
  background-size: 400% 400%;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  animation: gradient-rotate 8s ease infinite;
}

@keyframes gradient-rotate {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.nav-btn-contact:hover::before {
  opacity: 1;
}

.nav-btn-contact:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 10px 30px rgba(229, 9, 20, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.nav-btn-contact .btn-icon {
  color: #FFFFFF;
}

/* Shine effect for contact button */
.cta-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.nav-btn-contact:hover .cta-shine {
  left: 100%;
}

/* ==========================================================================
   Mobile Menu Toggle
   ========================================================================== */

.nav-toggle {
  display: none;
  grid-area: actions;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 0.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-smooth);
  justify-self: end;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(229, 9, 20, 0.3);
}

.nav-toggle .bar {
  width: 24px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

.nav-toggle:hover .bar {
  background: var(--netflix-red);
}

.nav-toggle.active .bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ==========================================================================
   Animations
   ========================================================================== */

/* Navbar slide-down animation */
.navbar-visible .nav-brand {
  animation: brand-appear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes brand-appear {
  0% {
    opacity: 0;
    transform: translateX(-20px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Staggered nav item animations */
.navbar-visible .nav-item {
  animation: nav-item-appear 0.4s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.navbar-visible .nav-item:nth-child(1) { animation-delay: 0.05s; }
.navbar-visible .nav-item:nth-child(2) { animation-delay: 0.1s; }
.navbar-visible .nav-item:nth-child(3) { animation-delay: 0.15s; }
.navbar-visible .nav-item:nth-child(4) { animation-delay: 0.2s; }

@keyframes nav-item-appear {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Action buttons appear */
.navbar-visible .nav-actions {
  animation: actions-appear 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s backwards;
}

@keyframes actions-appear {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==========================================================================
   Responsive Design - Mobile-First Approach
   ========================================================================== */

/* Large Tablet */
@media (max-width: 1024px) {
  .nav-container {
    gap: 1.25rem;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 0.7rem;
  }

  .nav-link,
  .nav-btn {
    font-size: 0.813rem;
    padding: 0.563rem 0.875rem;
  }

  .nav-menu {
    gap: 0.25rem;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .brand-initials {
    width: 42px;
    height: 42px;
    font-size: 1.125rem;
  }
}

/* Medium Tablet - Better spacing */
@media (max-width: 900px) {
  .nav-container {
    gap: 1rem;
  }

  /* Hide brand text, keep only initials */
  .brand-text {
    display: none;
  }

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

  .nav-btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
  }

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

  .nav-btn .btn-icon {
    font-size: 1rem;
  }

  .nav-menu {
    gap: 0.25rem;
  }

  .nav-actions {
    gap: 0.5rem;
  }
}

/* ==========================================================================
   MOBILE NAVBAR REDESIGN - Slide-out Menu with Backdrop
   ========================================================================== */

@media (max-width: 768px) {

  /* Hide desktop nav-actions, show mobile ones */
  .nav-actions-desktop {
    display: none !important;
  }

  .nav-menu .nav-actions {
    display: flex;
  }

  /* Navbar Container - Fixed Header Only */
  .navbar {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    max-width: 100%;
  }

  /* Brand Section - Mobile Optimized */
  .nav-brand {
    display: flex;
    align-items: center;
    z-index: 1002;
  }

  .brand-link {
    padding: 0;
    margin: 0;
  }

  .brand-text {
    display: none;
  }

  .brand-initials {
    width: 44px;
    height: 44px;
    font-size: 1.125rem;
    min-width: 44px; /* Ensure minimum touch target */
    min-height: 44px;
  }

  /* Mobile Toggle Button - Enhanced */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0.75rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    z-index: 1002;
    min-width: 48px; /* Optimal touch target */
    min-height: 48px;
    transition: all var(--transition-smooth);
  }

  .nav-toggle:active {
    transform: scale(0.95);
  }

  .nav-toggle .bar {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Hamburger to X animation */
  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--netflix-red);
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--netflix-red);
  }

  .nav-toggle.active {
    background: rgba(229, 9, 20, 0.1);
    border-color: rgba(229, 9, 20, 0.3);
  }

  /* Mobile Menu Backdrop Overlay */
  .mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
  }

  /* Mobile Menu - Slide-out Panel */
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(85%, 320px);
    max-width: 320px;
    background: linear-gradient(
      135deg,
      rgba(20, 20, 20, 0.98) 0%,
      rgba(10, 10, 10, 0.98) 100%
    );
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(229, 9, 20, 0.2);
    box-shadow:
      -10px 0 40px rgba(0, 0, 0, 0.8),
      inset 1px 0 0 rgba(255, 255, 255, 0.05);

    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;

    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  /* Menu Header - Close Area */
  .nav-menu::before {
    content: 'Menu';
    display: block;
    padding: 1.5rem 1.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1rem;
  }

  /* Mobile Menu Items */
  .nav-item {
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Staggered animation for menu items */
  .nav-menu.active .nav-item:nth-child(1) {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
  }
  .nav-menu.active .nav-item:nth-child(2) {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.15s forwards;
  }
  .nav-menu.active .nav-item:nth-child(3) {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
  }
  .nav-menu.active .nav-item:nth-child(4) {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.25s forwards;
  }

  @keyframes slideInRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Mobile Nav Links - Enhanced Touch Targets */
  .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.5rem;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-left: 1rem;
    margin-right: 1rem;
    min-height: 52px; /* Optimal touch target */
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
  }

  .nav-link::after {
    content: '';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    opacity: 0.4;
    transition: all var(--transition-smooth);
  }

  .nav-link:active {
    transform: scale(0.98);
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(229, 9, 20, 0.15);
    border-color: rgba(229, 9, 20, 0.3);
    color: var(--netflix-white);
    transform: translateX(5px);
  }

  .nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--netflix-red);
    border-radius: 0 4px 4px 0;
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    opacity: 1;
    transform: translateX(5px);
  }

  /* Mobile Actions - Fixed at Bottom */
  .nav-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    background: linear-gradient(
      to top,
      rgba(10, 10, 10, 1) 0%,
      rgba(20, 20, 20, 0.95) 50%,
      transparent 100%
    );
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-menu.active .nav-actions {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
  }

  /* Mobile CTA Buttons - Full Width */
  .nav-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 0.938rem;
    min-height: 52px; /* Optimal touch target */
    border-radius: 12px;
  }

  .nav-btn .btn-text {
    display: inline;
    font-weight: 600;
  }

  .nav-btn .btn-icon {
    font-size: 1rem;
  }

  .nav-btn:active {
    transform: scale(0.98);
  }

  /* Resume Button - Mobile Style */
  .nav-btn-resume {
    order: 2; /* Show below Contact button */
  }

  /* Contact Button - Mobile Style (Primary) */
  .nav-btn-contact {
    order: 1; /* Show first */
    box-shadow:
      0 6px 20px rgba(229, 9, 20, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .nav-btn-contact:hover {
    transform: translateY(-2px) scale(1.02);
  }

  .nav-btn-contact:active {
    transform: scale(0.98);
  }

  /* Hide desktop-only elements */
  .nav-menu:not(.active) {
    pointer-events: none;
  }

  .nav-menu.active {
    pointer-events: auto;
  }

  /* Prevent body scroll when menu is open */
  body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  /* Enhanced scrollbar for mobile menu */
  .nav-menu::-webkit-scrollbar {
    width: 4px;
  }

  .nav-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-menu::-webkit-scrollbar-thumb {
    background: rgba(229, 9, 20, 0.5);
    border-radius: 4px;
  }

  .nav-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(229, 9, 20, 0.7);
  }
}

/* Small Mobile Phones (< 480px) */
@media (max-width: 480px) {
  .nav-container {
    padding: 0.875rem 1rem;
  }

  .brand-initials {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    min-width: 40px;
    min-height: 40px;
  }

  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    padding: 0.625rem;
  }

  .nav-menu {
    width: min(90%, 280px);
    max-width: 280px;
  }

  .nav-link {
    padding: 0.938rem 1.25rem;
    font-size: 0.938rem;
    min-height: 48px;
  }

  .nav-btn {
    padding: 0.938rem 1.25rem;
    font-size: 0.875rem;
    min-height: 48px;
  }

  .nav-actions {
    padding: 1.25rem 1rem;
    gap: 0.625rem;
  }
}

/* Very Small Screens (< 360px) */
@media (max-width: 360px) {
  .nav-container {
    padding: 0.75rem 0.875rem;
  }

  .brand-initials {
    width: 38px;
    height: 38px;
    font-size: 0.938rem;
    min-width: 38px;
    min-height: 38px;
  }

  .nav-menu {
    width: 100%;
    max-width: 100%;
    border-left: none;
  }

  .nav-link,
  .nav-btn {
    font-size: 0.875rem;
    min-height: 44px;
  }
}

/* ==========================================================================
   Dark Mode Enhancements (Future-ready)
   ========================================================================== */

@media (prefers-color-scheme: dark) {
  .nav-background-blur {
    background: rgba(20, 20, 20, 0.5);
  }

  .navbar.scrolled .nav-background-blur {
    background: rgba(25, 25, 25, 0.6);
  }
}