@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Brand Colors */
  --color-primary: #1A2F1E; /* Deep forest green */
  --color-bg: #F5F0E8;      /* Warm cream */
  --color-accent: #C9A84C;  /* Gold accent */
  --color-secondary: #8FAF8F; /* Sage green */
  --color-text-dark: #2B2B2B;
  --color-text-light: #F5F0E8;
  --color-error: #CE112D;
  --color-success: #2E8540;
  
  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Spacing & Borders */
  --border-radius: 16px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 20px rgba(201, 168, 76, 0.4); /* Gold glow for FAB */
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.container {
  max-width: 600px; /* Mobile focused max-width */
  margin: 0 auto;
  padding: 1.5rem;
}

/* Card components */
.card {
  background: #FFFFFF;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}

/* Button components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: #122215;
}

.btn-accent {
  background-color: var(--color-accent);
  color: #fff;
}

.btn-accent:hover {
  background-color: #b59541;
}

/* Forms */
.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-body);
  transition: var(--transition-smooth);
  background: white;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.2);
}

/* Alerts */
.alert {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.alert-error { background: #fee2e2; color: var(--color-error); }
.alert-success { background: #dcfce7; color: var(--color-success); }
