/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --color-gold-300: #fef08a;
  --color-gold-400: #facc15;
  --color-gold-500: #eab308;
  --color-gold-600: #ca8a04;
  --color-gold-metallic: #d4af37;
  --color-gold-amber: #f59e0b;
  --color-dark-900: #050505;
  --color-dark-800: #0a0a0d;
  --color-dark-700: #121217;
  --color-dark-600: #1a1a24;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--color-dark-900);
  color: #e2e8f0;
  overflow-x: hidden;
  selection-background-color: #d4af37;
  selection-color: #000000;
}

::selection {
  background: #d4af37;
  color: #050505;
}

h1, h2, h3, h4, .font-heading {
  font-family: 'Outfit', sans-serif;
}

.font-mono-accent {
  font-family: 'Space Grotesk', monospace;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0a0a0d;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d4af37 0%, #785a18 100%);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #facc15;
}

/* Gold Gradient Text */
.gold-gradient-text {
  background: linear-gradient(135deg, #FFF6D6 0%, #F5CE66 35%, #D4AF37 60%, #AA7C11 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-gradient-text-subtle {
  background: linear-gradient(135deg, #FFFFFF 0%, #FDE68A 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Gold Gradients and Borders */
.gold-border-glow {
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 25px -5px rgba(212, 175, 55, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gold-border-glow:hover {
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 0 35px 2px rgba(212, 175, 55, 0.25);
}

.btn-gold-primary {
  background: linear-gradient(135deg, #FDE68A 0%, #F5CE66 25%, #D4AF37 70%, #996515 100%);
  color: #050505;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.btn-gold-primary:hover::before {
  left: 100%;
}

.btn-gold-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
  color: #000000;
}

.btn-gold-outline {
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #fef08a;
  transition: all 0.3s ease;
}

.btn-gold-outline:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: #facc15;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Glassmorphic Cards */
.glass-panel {
  background: rgba(18, 18, 24, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.glass-panel-gold {
  background: linear-gradient(180deg, rgba(26, 22, 14, 0.7) 0%, rgba(12, 12, 16, 0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Ambient Lights */
.ambient-glow-gold {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 70%);
}

.ambient-glow-amber {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.14) 0%, rgba(245, 158, 11, 0) 70%);
}

/* Animated Shimmer Line */
.shimmer-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.8) 50%, transparent 100%);
  position: relative;
}

/* Grid Pattern */
.bg-grid-pattern {
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

.bg-radial-vignette {
  background: radial-gradient(circle at 50% 30%, transparent 20%, #050505 90%);
}

/* Pulse animation */
@keyframes goldPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.animate-gold-pulse {
  animation: goldPulse 4s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.animate-float {
  animation: floatUp 5s ease-in-out infinite;
}

/* Tech tag pill */
.tech-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.25s ease;
}

.tech-badge:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
  color: #fef08a;
  transform: translateY(-2px);
}

/* Card Hover tilt and lift */
.card-hover-effect {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-hover-effect:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.15);
}

/* Gold glow icon container */
.gold-icon-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(146, 105, 16, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #facc15;
}

/* Tab active state */
.tab-btn.active {
  background: linear-gradient(135deg, #d4af37, #996515);
  color: #050505;
  font-weight: 700;
  border-color: #fef08a;
}

/* Animated Navbar Links */
.nav-link {
  position: relative;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FDE68A, #D4AF37);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

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

.nav-link:hover,
.nav-link.active {
  color: #fef08a;
}

/* Smooth Drawer Transition */
#mobile-menu {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dropdown Menu Styles */
.dropdown-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 60;
}

.dropdown-wrapper:hover .dropdown-menu,
.dropdown-wrapper:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}


