:root {
  --navy: #0A1128;
  --orange: #F38B3C;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Force Brand Colors */
.bg-navy { background-color: var(--navy) !important; }
.text-navy { color: var(--navy) !important; }
.text-orange { color: var(--orange) !important; }
.bg-orange { background-color: var(--orange) !important; }
.hover\:text-orange:hover { color: var(--orange) !important; }
.hover\:bg-orange:hover { background-color: var(--orange) !important; }

/* Glass Navigation */
.glass-nav {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.shadow-soft { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); }

/* ---  Mobile Menu Logic --- */
#mobile-menu {
  /* Direct placement and hidden state */
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  transform: translateX(100%); /* Initial hidden state */
  transition: transform 0.3s ease-in-out;
  z-index: 120;
  will-change: transform;
}

#menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 115;
  display: none; /* JS will change this to 'block' */
  opacity: 0;    /* JS will change this to '1' */
  transition: opacity 0.3s ease;
}

/* Ensure glass-nav has a subtle border for contrast on mobile */
.glass-nav {
background: rgba(255, 255, 255, 0.85) !important;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* --- Animations --- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.animate-float {
  display: inline-block;
  animation: float 4s ease-in-out infinite;
}

@keyframes bounce-slow {
  0%, 100% { transform: translateY(-8px); }
  50% { transform: translateY(0); }
}
.animate-bounce-slow {
  animation: bounce-slow 3s ease-in-out infinite;
}