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

:root {
  --primary: #0f172a;
  --accent: #3b82f6; 
  --secondary: #10b981;
  --bg-dark: #f8fafc;
  --bg-darker: #f1f5f9;
  --glass: #ffffff;
  --glass-border: #e2e8f0;
  --text-main: #1e293b;
  --text-dim: #64748b;
  --transit: 0.2s ease-in-out;
  --grad-main: linear-gradient(135deg, #1e293b, #334155);
  --grad-accent: linear-gradient(135deg, #3b82f6, #2563eb);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-darker);
  color: var(--text-main);
  min-height: 100vh;
}

h1, h2, h3, .brand {
  font-family: 'Outfit', sans-serif;
}

/* Glass Component */
/* Corporate Card */
.glass-card {
  background: white;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: var(--transit);
}

.glass-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* Button UI */
.btn {
  padding: 12px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transit);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--grad-accent);
  color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  opacity: 0.95;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.4);
}

/* Form UI */
input, textarea, select {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  padding: 12px 16px;
  border-radius: 10px;
  color: #1e293b !important;
  width: 100%;
  font-size: 1rem;
  outline: none;
  transition: var(--transit);
}

input:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-main);
  font-size: 0.85rem;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

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

/* Dashboard Specific */
.stat-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

/* Survey Stars */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 10px;
}

.star-rating input {
  display: none;
}

.star-rating label {
  font-size: 2.5rem;
  color: #334155;
  cursor: pointer;
  transition: var(--transit);
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: #fbbf24;
  transform: scale(1.1);
}

/* QR Code Gen Styling */
.qr-container {
  background: white;
  padding: 1rem;
  border-radius: 15px;
  display: inline-block;
  margin-top: 1rem;
}
