/* 🌿 Florén Valley Theme */

:root {
  /* 메인 컬러 */
  --floren-green-main: #6f7f5f;
  --floren-green-soft: #8f9f7a;

  /* 배경 */
  --floren-bg-main: #f5f2e8;
  --floren-bg-soft: #ebe6d8;

  /* 포인트 */
  --floren-brown: #8b6f47;
  --floren-lavender: #8c7aa8;

  /* 텍스트 */
  --floren-text-main: #3f3a33;
  --floren-text-sub: #6e665c;
}

/* 전체 배경 */
body {
  background-color: var(--floren-bg-main);
  color: var(--floren-text-main);
}

/* 사이드바 */
.columns-area__panels__pane {
  background-color: var(--floren-green-main);
}

/* 카드/타임라인 */
.column,
.status {
  background-color: var(--floren-bg-soft);
  border-radius: 12px;
}

/* 링크 & 강조 */
a {
  color: var(--floren-green-main);
}

a:hover {
  color: var(--floren-lavender);
}

/* 버튼 */
.button,
.icon-button {
  background-color: var(--floren-green-main);
  color: #ffffff;
  border-radius: 10px;
}

.button:hover,
.icon-button:hover {
  background-color: var(--floren-green-soft);
}

/* 작성창 */
.compose-form {
  background-color: #ffffff;
  border: 1px solid var(--floren-green-soft);
}

/* 헤더 */
.column-header {
  background-color: var(--floren-green-main);
  color: #ffffff;
}

/* 선택/포커스 */
:focus {
  outline: 2px solid var(--floren-lavender);
}

/* 강조선 */
hr {
  border-color: var(--floren-green-soft);
}

body {
  font-family: 'Noto Serif KR', serif;
}

h1, h2, .column-header {
  font-family: 'Playfair Display', serif;
}

