/* header.css - 헤더 스타일 */

.header {
    text-align: center;
    padding: 30px 0;
}

.header h1 {
    color: #ffd700;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}

.header p {
    color: #e8e8e8;
    font-size: 0.95rem;
}

/* 트리 장식 아이콘 */
.tree-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 5px #ffd700); }
    to { filter: drop-shadow(0 0 20px #ffd700); }
}

/* 푸터 */
.footer {
    text-align: center;
    padding: 30px 0;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}
