@import "https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Roboto:wght@300;400;500;700&display=swap";
@import "https://fonts.googleapis.com/icon?family=Material+Icons";

/* src/styles.css */
:root {
  --brand-primary: #7b5931;
  --brand-primary-light: #a67c52;
  --brand-primary-dark: #5a3d1a;
  --brand-primary-hover: #6a4c28;
  --brand-secondary: #c8a96e;
  --brand-surface: #f9f5f0;
  --brand-surface-2: #f0e8dc;
  --brand-surface-3: #e8ddd0;
  --brand-text: #2c1a0e;
  --brand-text-muted: #7a6655;
  --brand-border: #d9cfc4;
  --brand-error: #ba1a1a;
  --brand-success: #1a5c2e;
  --navbar-height: 64px;
  --container-max: 1280px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: "Roboto", sans-serif;
  background-color: var(--brand-surface);
  color: var(--brand-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--brand-primary-dark);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  cursor: pointer;
  font-family: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  color: var(--brand-primary-dark);
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
}
h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
h4 {
  font-size: 1.25rem;
  font-weight: 600;
}
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.page-content {
  padding-top: calc(var(--navbar-height) + 32px);
  padding-bottom: 64px;
  min-height: 100vh;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--brand-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--brand-primary-hover);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
}
.btn-outline:hover {
  background: var(--brand-surface-2);
}
.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}
.btn-sm {
  padding: 6px 16px;
  font-size: 0.8rem;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-md);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-text);
}
.form-label.required::after {
  content: " *";
  color: var(--brand-error);
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--brand-border);
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--brand-text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(123, 89, 49, 0.15);
}
.form-control.is-invalid {
  border-color: var(--brand-error);
}
.form-error {
  font-size: 0.8rem;
  color: var(--brand-error);
}
.form-grid {
  display: grid;
  gap: 16px;
}
.form-grid-2 {
  grid-template-columns: 1fr 1fr;
}
.form-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}
.badge-primary {
  background: var(--brand-surface-2);
  color: var(--brand-primary-dark);
}
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--brand-surface-3);
  border-top-color: var(--brand-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.spinner-sm {
  width: 18px;
  height: 18px;
  border-width: 2px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loading-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 0;
}
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 64px 32px;
  text-align: center;
  color: var(--brand-text-muted);
}
.empty-state .material-icons {
  font-size: 3rem;
  opacity: 0.5;
}
.empty-state p {
  font-size: 1rem;
}
.alert {
  padding: 12px 16px;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
}
.alert-success {
  background: #d4edda;
  color: var(--brand-success);
  border: 1px solid #b8d9c4;
}
.alert-error {
  background: #fde8e8;
  color: var(--brand-error);
  border: 1px solid #f5c0c0;
}
.alert-info {
  background: var(--brand-surface-2);
  color: var(--brand-primary-dark);
  border: 1px solid var(--brand-border);
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  .container {
    padding: 0 16px;
  }
  .form-grid-2,
  .form-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
