/* ========================================== */
/* 흉터치료 페이지 커스텀 스타일 */
/* ========================================== */

/* ===== 공통 애니메이션 ===== */

/* Ken Burns Effect */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.animate-ken-burns {
    animation: kenBurns 20s ease-out forwards;
}

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

.animation-delay-300 {
    animation-delay: 0.3s;
    opacity: 0;
}

.animation-delay-500 {
    animation-delay: 0.5s;
    opacity: 0;
}

.animation-delay-700 {
    animation-delay: 0.7s;
    opacity: 0;
}

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-float-slow {
    animation: float 6s ease-in-out infinite;
}

/* Breathing Animation */
@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.animate-breathe {
    animation: breathe 8s infinite ease-in-out;
}

/* Pulse Glow */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
    }
}

.animate-pulse-glow {
    animation: pulseGlow 4s ease-in-out infinite;
}

/* ===== 페이지 테마 컬러 ===== */

/* 
 * 흉터치료 페이지 컬러 팔레트
 * 메인: #E8D5C4 (소프트 베이지 / 피부톤 연상)
 * 서브: #F5EDE6 (크림 베이지)
 * 강조: #C9A88E (웜 테라코타)
 * 배경: #FFFBF8 (웜 화이트)
 * 다크: #6B5344 (딥 브라운)
 * 악센트: #E07A5F (코랄 / 활력 & 재생 상징)
 */

:root {
    --scar-primary: #E8D5C4;
    --scar-primary-light: #F5EDE6;
    --scar-accent-terracotta: #C9A88E;
    --scar-bg-warm: #FFFBF8;
    --scar-text-dark: #6B5344;
    --scar-accent-coral: #E07A5F;
}

/* ===== 섹션별 스타일 ===== */

/* 추가 스타일은 각 섹션 코드와 함께 여기에 추가해주세요 */