/* 페이지 제목 & 설명 */
h1 {
  text-align: center;
  font-size: 2rem;
  margin-top: 2rem;
  color: var(--text-color);
}

.description {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

/* 텍스트 입력창 */
textarea {
  display: block;
  width: 95%;
  max-width: 800px;
  height: clamp(200px, 30vh, 400px);
  margin: 1rem auto;
  padding: 1.2rem;
  border-radius: 10px;
  border: 1px solid var(--border-color, #ccc);
  background: var(--card-bg);
  color: var(--text-color);
  font-size: 1.05rem;
  line-height: 1;
  transition: background 0.3s, color 0.3s, border-color 0.3s, height 0.3s;
}

textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

/* 글자 수 표시 */
#count_result {
  text-align: center;
  font-size: 1.2rem;
  margin: 1rem 0 2rem;
  color: var(--text-color);
}

/* 헤더 홈 링크 전용 */
.logo {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.8;
}

/* 결과 표시 박스 */
#result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 1.5rem auto 2rem;
  padding: 1rem;
  border-radius: 10px;
  background: var(--card-bg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 600px;
}

#result p {
  font-size: 1.1rem;
  color: var(--text-color);
}

#result span {
  font-weight: bold;
  color: var(--accent-color);
}
