/* Font configuration for Google Material Symbols */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Custom glow and focus effects */
.gold-glow:focus {
  box-shadow: 0 0 0 2px rgba(201, 151, 58, 0);
}

/* Nav-link animated underline hover effect */
.nav-link-hover {
  position: relative;
}

.nav-link-hover::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #c9973a;
  transition: width 0.3s ease;
}

.nav-link-hover:hover::after {
  width: 100%;
}

/* Page boundaries and layout baseline styling */
body {
  min-height: max(884px, 100dvh);
}

/* Mobile drawer transition styling */
.mobile-menu-drawer {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

