@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --dark-bg: #e0f2fe;
  --dark-card: #ffffff;
}

body {
  background: linear-gradient(-45deg, #e0f2fe, #fce7f3, #eef2ff, #fff1f2, #f3e8ff);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  color: #0f172a;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
}
@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Custom utility classes that might have been lost */
.text-gradient-gold {
  background: linear-gradient(135deg, #E8C97A 0%, #C9A84C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-gold {
  background: rgba(201, 168, 76, 0.15);
  color: #E8C97A;
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

.price-tag {
  font-size: 1.25rem;
  font-weight: 900;
  color: #E8C97A;
}

.glass-card {
  background: rgba(25, 25, 25, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
}

.glass-header {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link {
  color: #9CA3AF;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #E8C97A;
}

.nav-link.active {
  color: #E8C97A;
}

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

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #C9A84C, #E8C97A);
  color: #000;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
}
