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

body {
  background: #ffffff;
  color: #0f172a;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  margin: 0;
}

/* Typography */
.text-gradient-gold {
  background: linear-gradient(135deg, #C9A84C 0%, #E8C97A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shimmer-gold {
  color: #0f172a;
  font-weight: 800;
}

.badge-gold {
  background: rgba(201, 168, 76, 0.15);
  color: #b48a28;
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

/* Clean Cards */
.glass-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.3);
}

.glass-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

/* Navigation */
.nav-link {
  color: #475569;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: #C9A84C;
}

/* Buttons */
.btn-primary, .btn-gold {
  background: linear-gradient(135deg, #E8C97A, #C9A84C);
  color: #0f172a !important; /* Force dark text for visibility against gold */
  font-weight: 800;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover, .btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.5);
}

.pulse-gold {
  box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(201, 168, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
}

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

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #0f172a;
}
