/* Daedalus Advisory Services - Stylesheet */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --navy-900: #1a1a1a;
  --navy-800: #2a2a2a;
  --navy-700: #3a3a3a;
  --navy-600: #4a4a4a;
  --gold-500: #e85d04;
  --gold-400: #f48c06;
  --gold-300: #faa307;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.font-display {
  font-family: 'Playfair Display', Georgia, serif;
}

/* Hero gradient */
.hero-gradient {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 40%, var(--navy-700) 100%);
}

/* Subtle pattern overlay */
.hero-pattern {
  position: relative;
}

.hero-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Gold accent line */
.gold-line {
  width: 48px;
  height: 3px;
  background: var(--gold-500);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.375rem;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 93, 4, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: white;
  font-weight: 500;
  font-size: 0.875rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 0.375rem;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--gold-500);
  font-weight: 600;
  font-size: 0.875rem;
  border: 1.5px solid var(--gold-500);
  border-radius: 0.375rem;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-outline-gold:hover {
  background: rgba(232, 93, 4, 0.08);
}

/* Cards */
.card-hover {
  transition: transform 0.2s, box-shadow 0.2s;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

/* Tags */
.insight-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(232, 93, 4, 0.1);
  color: var(--gold-500);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
}

/* Globe decoration */
.globe-container {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  opacity: 0.5;
}

.globe-container::before {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
}

.globe-container::after {
  content: '';
  position: absolute;
  inset: 120px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
}

/* Stat blocks */
.stat-block {
  text-align: center;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Navigation transitions */
.nav-link {
  transition: color 0.2s;
}

/* Testimonial card */
.testimonial-card {
  position: relative;
  padding-left: 2rem;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold-500);
}

/* Challenge card hover */
.challenge-card {
  transition: all 0.3s;
}

.challenge-card:hover {
  border-color: var(--gold-500);
}

/* Industry badge */
.industry-badge {
  transition: all 0.2s;
}

.industry-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
