/* Gowda Connect — Premium Styles */

:root {
  --radius: 0.75rem;

  --navy-deep: #0B1320;
  --navy-black: #111111;
  --navy-steel: #2D3748;
  --gold-royal: #D4AF37;
  --gold-deep: #B8860B;
  --gold-light: #F7D774;
  --blue-glow: #3BA9FF;

  --background: #0B1320;
  --foreground: #F5F7FA;
  --card: rgba(255, 255, 255, 0.04);
  --card-foreground: #F5F7FA;
  --popover: #111827;
  --popover-foreground: #F5F7FA;
  --primary: #D4AF37;
  --primary-foreground: #0B1320;
  --secondary: #1A202C;
  --secondary-foreground: #F5F7FA;
  --muted: #1A202C;
  --muted-foreground: #9CA3AF;
  --accent: #3BA9FF;
  --accent-foreground: #0B1320;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: rgba(212, 175, 55, 0.18);
  --input: rgba(255, 255, 255, 0.08);
  --ring: #D4AF37;

  --gradient-hero: linear-gradient(135deg, #0B1320 0%, #111111 50%, #1A202C 100%);
  --gradient-gold: linear-gradient(135deg, #F7D774 0%, #D4AF37 50%, #B8860B 100%);
  --gradient-radial-glow: radial-gradient(circle at 50% 0%, rgba(59,169,255,0.18) 0%, transparent 60%);
  --shadow-gold: 0 10px 40px -10px rgba(212, 175, 55, 0.45);
  --shadow-blue: 0 10px 40px -10px rgba(59, 169, 255, 0.45);
  --shadow-premium: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
}

body {
  background: var(--gradient-hero);
  background-attachment: fixed;
  color: var(--foreground);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', 'Inter', serif;
  letter-spacing: -0.01em;
}

/* Glassmorphism Card styling */
.glass-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow-premium);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.glass-card-hover:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: var(--shadow-gold);
}

/* Gold Gradient Text */
.text-gold-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Premium Buttons */
.btn-gold {
  background: var(--gradient-gold);
  color: #0B1320;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px -6px rgba(212, 175, 55, 0.6);
  border: 1px solid rgba(247, 215, 116, 0.5);
  cursor: pointer;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -6px rgba(212, 175, 55, 0.8);
}

.btn-outline-gold {
  background: transparent;
  color: #F7D774;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1.5px solid rgba(212, 175, 55, 0.7);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #F7D774;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
}

/* Nav Link Hover Effect */
.nav-link-gold {
  position: relative;
  color: #F5F7FA;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.25s ease;
}

.nav-link-gold::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link-gold:hover {
  color: #F7D774;
}

.nav-link-gold:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.section-pad {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-glow-pulse { animation: glow-pulse 3s ease-in-out infinite; }
.animate-fade-up { animation: fade-up 0.7s ease-out both; }
