/* Global smooth scroll and selection color */
html {
  scroll-behavior: smooth;
}

::selection {
  background: #f59e0b;
  color: #1f2937;
}

/* Warm burger-themed gradient helper */
.burger-gradient {
  background-image: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

/* Shared card look */
.glass-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
}

/* Hero image overlay for better text contrast */
.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(17, 24, 39, 0.78) 0%,
    rgba(17, 24, 39, 0.55) 45%,
    rgba(17, 24, 39, 0.3) 100%
  );
}
