/*
  /Users/esshka/hireme/styles.css
  Premium dark theme styling for HIREME landing page
  Glassmorphism overlays, modern typography, smooth animations
  RELEVANT FILES: index.html, webgl.js
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #00d4ff;
  --primary-glow: rgba(0, 212, 255, 0.3);
  --bg-dark: #0a0a0f;
  --glass-bg: rgba(10, 10, 20, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* WebGL Canvas - Fixed Background */
#canyon {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Content Overlay */
.content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 2rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 3rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  max-width: 600px;
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--primary), #00ff88);
  color: #000;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 0.9rem;
  color: var(--primary);
}

/* Expertise Grid */
.expertise {
  max-width: 900px;
  width: 100%;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.expertise-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px var(--primary-glow);
  border-color: var(--primary);
}

.expertise-card .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.expertise-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.expertise-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Tech Stack Pills */
.tech-stack {
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.tech-pills span {
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.tech-pills span:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.5s backwards;
}

.social-links a {
  color: var(--text-secondary);
  transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
  color: var(--primary);
  transform: scale(1.2);
}

/* CTA Section */
.cta {
  text-align: center;
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary), #00ff88);
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px var(--primary-glow);
}

.cta-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .content {
    padding: 1rem;
  }

  .hero {
    padding: 2rem 1.5rem;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }
}