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

:root {
  --background: 40 33% 98%;
  --foreground: 216 54% 14%;
  --card: 0 0% 100%;
  --card-foreground: 216 54% 14%;
  --popover: 0 0% 100%;
  --popover-foreground: 216 54% 14%;
  --primary: 216 54% 14%;
  --primary-foreground: 40 33% 98%;
  --secondary: 42 58% 59%;
  --secondary-foreground: 216 54% 14%;
  --muted: 40 24% 94%;
  --muted-foreground: 216 14% 43%;
  --accent: 42 58% 59%;
  --accent-foreground: 216 54% 14%;
  --border: 40 18% 87%;
  --input: 40 18% 87%;
  --ring: 42 58% 59%;
  --success: 142 71% 45%;
  --warning: 38 92% 50%;
  --gradient-primary: linear-gradient(135deg, hsl(216 54% 14%), hsl(216 43% 25%));
  --gradient-secondary: linear-gradient(135deg, hsl(42 58% 59%), hsl(36 63% 48%));
  --gradient-subtle: linear-gradient(135deg, hsl(40 33% 98%), hsl(42 36% 94%));
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 30px hsl(42 58% 59% / 0.25);
  --radius: 0.75rem;
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  min-height: 100vh;
  overflow-x: hidden;
}

/* Custom Utilities & Animations */
.bg-gradient-subtle {
  background: var(--gradient-subtle);
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

/* Floating animation for badge widget */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

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

/* Coming Soon Badge and Buttons */
.badge-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: linear-gradient(135deg, hsl(42 58% 59%), hsl(36 63% 48%));
  color: hsl(216 54% 14%);
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(212, 160, 23, 0.25);
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.btn-coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: hsl(216 54% 14%);
  color: hsl(40 33% 98%);
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-coming-soon:hover {
  background-color: hsl(216 43% 22%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: hsl(0 0% 100%);
  border: 1px solid hsl(40 18% 87%);
  border-radius: var(--radius);
  max-width: 32rem;
  width: 100%;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

/* Accordion Details */
details summary::-webkit-details-marker {
  display: none;
}

details summary {
  list-style: none;
}

details[open] summary svg {
  transform: rotate(180deg);
}
