/* senggack.com - Cottagecore Thinking Journal */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --hanji-cream: #F8F3E8;
    --garden-white: #FFFEF8;
    --ink-persimmon: #B84A2A;
    --leaf-sage: #6B8E6B;
    --dried-flower: #9B7E8E;
    --reed-tan: #C8B898;
    --brush-black: #1A1A14;
    --stone-gray: #6A665A;
}
body {
    background: var(--hanji-cream);
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.015'/%3E%3C/svg%3E");
    color: var(--brush-black);
    font-family: 'Nanum Myeongjo', serif;
    font-size: 1.05rem;
    line-height: 1.9;
    font-weight: 400;
    overflow-x: hidden;
}

/* Vine Scroll Indicator */
.vine-track {
    position: fixed;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 20px;
    z-index: 10;
    pointer-events: none;
}
.vine-svg {
    width: 20px;
    height: 100%;
}
.vine-path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    transition: stroke-dashoffset 0.3s ease;
}
.vine-leaf {
    transition: opacity 0.5s ease;
}

/* Hero */
#hero {
    max-width: 620px;
    margin: 0 auto;
    padding: 5rem 2rem 2rem;
    text-align: center;
}
.hero-hangul {
    font-family: 'Nanum Myeongjo', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--brush-black);
}
.hero-domain {
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    color: var(--ink-persimmon);
    margin-top: 0.25rem;
}

/* Flower Dividers */
.flower-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 620px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    position: relative;
}
.flower-divider::before,
.flower-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--reed-tan);
}
.flower-svg {
    margin: 0 12px;
    flex-shrink: 0;
}

/* Journal */
#journal {
    max-width: 620px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}
.entry {
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.entry.visible {
    opacity: 1;
    transform: translateY(0);
}
.entry-date {
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    color: var(--ink-persimmon);
    display: block;
    margin-bottom: 0.5rem;
}
.entry-title {
    font-family: 'Nanum Myeongjo', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--brush-black);
    margin-bottom: 1rem;
}
.entry-body {
    color: var(--brush-black);
    margin-bottom: 1rem;
}
.entry-body:last-child { margin-bottom: 0; }

/* Section animation */
.section {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
#footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid var(--reed-tan);
    max-width: 620px;
    margin: 0 auto;
}
.footer-text {
    font-family: 'Caveat', cursive;
    font-size: 1rem;
    color: var(--stone-gray);
}

/* Responsive */
@media (max-width: 600px) {
    .vine-track { display: none; }
}
