/* 🎨 Seasonal Themes for Pastel Exhibition */

:root {
    /* Default: Spring */
    --theme-bg: #fdf2f8;
    --theme-accent-1: #fbcfe8;
    --theme-accent-2: #ccfbf1;
    --theme-text: #5d6d7e;
}

/* Spring (봄) */
.theme-spring {
    --theme-bg: #fdf2f8;
    --theme-accent-1: #fbcfe8;
    --theme-accent-2: #ccfbf1;
}

/* Summer (여름) */
.theme-summer {
    --theme-bg: #bae6fd; /* 더 시원하고 선명한 여름 하늘색 */
    --theme-accent-1: #38bdf8; /* 더 뚜렷한 파란색 강조 */
    --theme-accent-2: #7dd3fc;
}

/* Autumn (가을) */
.theme-autumn {
    --theme-bg: #fffaf0;
    --theme-accent-1: #fed7aa;
    --theme-accent-2: #fef08a;
}

/* Winter (겨울) */
.theme-winter {
    --theme-bg: #b8d8f0; /* 조금 더 깊이 있고 차분한 겨울 배경색 */
    --theme-accent-1: #e5e7eb; /* 순백색에 약간의 회색빛을 추가하여 차분한 느낌 */
    --theme-accent-2: #93c5fd; /* 얼음처럼 맑은 파란색 */
}

/* Global Shared Styles */
body {
    background: linear-gradient(135deg, var(--theme-bg) 0%, #ffffff 100%) !important;
}

/* Apply variables to common elements */
.dream-tree, .dream-tree-mobile {
    border-color: var(--theme-accent-1) !important;
}

.qr-card {
    border-color: var(--theme-accent-1) !important;
}

button[type="submit"] {
    background: var(--theme-accent-1) !important;
    box-shadow: 0 5px 15px var(--theme-accent-1)66 !important;
}
