/* PurpleTech Professional Design System */

/* Color Palette */
:root {
  --primary: #7F56D9;
  --secondary: #E9D7FE;
  --accent: #027A48;
  --background-default: #F9FAFB;
  --background-paper: #FFFFFF;
  --text-primary: #101828;
  --text-secondary: #475467;
  --text-disabled: #667085;
  --feedback-success: #027A48;
  --feedback-warning: #F79009;
  --feedback-error: #D92D20;
  --border: #EAECF0;
}

/* Typography */
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background-default);
  color: var(--text-primary);
}

/* Spacing */
.container {
  padding: 4rem 1.5rem;
}

/* Buttons */
.btn {
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 250ms ease-in-out;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  filter: brightness(1.1);
}

/* Cards */
.card {
  background-color: var(--background-paper);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.05);
  transition: all 250ms ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(127, 86, 217, 0.15);
}

/* Input Fields */
.input-field {
  height: 44px;
  padding: 0 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  width: 100%;
  font-family: 'Inter', sans-serif;
}

.input-field:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(127, 86, 217, 0.1);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--text-secondary); }
.text-disabled { color: var(--text-disabled); }


/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--background-paper);
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cookie-consent-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-consent-text {
  flex: 1;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.cookie-consent-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-consent-btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 250ms ease-in-out;
}

.cookie-consent-accept {
  background-color: var(--primary);
  color: white;
}

.cookie-consent-accept:hover {
  filter: brightness(1.1);
}

.cookie-consent-decline {
  background-color: var(--background-default);
  color: var(--text-primary);
  border: 1px solid var(--border) !important;
}

.cookie-consent-decline:hover {
  background-color: var(--background-default);
}

.cookie-consent-link {
  color: var(--primary);
  text-decoration: none;
}

.cookie-consent-link:hover {
  text-decoration: underline;
}