/* =========================
   RESET
   ========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* =========================
   COLOR SYSTEM (YOUR PALETTE)
   ========================= */

:root {
  /* ===== COLOR PALETTE ===== */

  --bg-main: #F2E9E4;        /* background */
  --bg-card: #FFFFFF;       /* cards */
  --bg-muted: #F2E9E4;      

  --text-primary: #22223B;  /* main text */
  --text-secondary: #4A4E69;
  --text-muted: #9A8C98;

  --accent: #C9ADA7;        /* buttons / highlights */
  --accent-soft: #E6DAD5;   /* hover / soft fills */

  --border-soft: #D8CFC9;

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;

  /* Shadow */
  --shadow-soft: 0 12px 32px rgba(34, 34, 59, 0.08);

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
}



h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--text-primary);
}


h1 {
  font-size: 2.4rem;
  letter-spacing: 0.5px;
}

h2 {
  font-size: 1.7rem;
}

h3 {
  font-size: 1.3rem;
}


p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* =========================
   LINKS & BUTTONS
   ========================= */

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  background: none;
}

button:focus {
  outline: none;
}

/* Primary button */
.primary-btn {
  background-color: var(--accent);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* Outline button */
.outline-btn {
  border: 1px solid var(--border-soft);
  color: var(--text-primary);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background-color: transparent;
}

/* Text button */
.text-btn {
  color: var(--text-secondary);
  padding: 6px 8px;
}

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

/* =========================
   INPUTS
   ========================= */

input,
select,
textarea {
  font-family: inherit;
  font-size: 0.9rem;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  background-color: var(--bg-muted);
  color: var(--text-primary);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
}

/* =========================
   UTILITIES
   ========================= */

.hidden {
  display: none !important;
}

.center {
  text-align: center;
}

.between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =========================
   CARDS
   ========================= */

.card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
}

/* =========================
   EMPTY STATES
   ========================= */

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
}

.empty-icon {
  font-size: 42px;
  margin-bottom: 16px;
  opacity: 0.6;
}

.primary-btn {
  background-color: var(--accent);
  color: var(--text-primary);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 500;
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
}




