@import url('https://fonts.loli.net/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

:root {
  --bg-color: #F9F7F5;
  --text-color: #2C2C2C;
  --accent-color: #B0A99F;
  --highlight-color: #D4C9BD;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Noto Sans SC', Helvetica Neue, Arial, sans-serif;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 500;
  letter-spacing: -0.02em;
}

a.current-page {
  position: relative;
}

a.current-page::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--highlight-color);
}

img {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

img:hover {
  transform: scale(1.05);
  opacity: 0.95;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Tailwind override protection */
[class*="tailwind"] {
  all: revert;
}