/* ===============================================
   Theme Styles
   - Brand colors
   - Gradients
   - Glassmorphism cards
   - Dark theme enhancements
   =============================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&family=Roboto+Slab:wght@400;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background-color: #0f172a;
}

.gradient-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.dark .gradient-bg {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e1b4b 100%);
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.tool-card {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.tool-card:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-4px);
}

.contact-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.glass-card,
.tool-card {
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .glass-card {
    padding: 1rem;
  }

  .tool-card {
    padding: 1rem;
  }

  .contact-input {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

.legal-text {
  font-family: 'Roboto Slab', serif;
}

.prose-invert h1,
.prose-invert h2,
.prose-invert h3 {
  font-family: 'Inter', sans-serif;
}

/* Existing logo glow */
.logo-glow {
  filter: drop-shadow(0 0 12px rgba(165, 180, 252, 0.5));
  transition: all 0.3s ease-in-out;
}

.logo-glow:hover {
  filter: drop-shadow(0 0 20px rgba(199, 210, 254, 0.7));
  transform: scale(1.05);
}

/* Timer circle styles */
.timer-circle {
  transition: stroke-dashoffset 1s linear;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
