/* ========================================== */
/* 여성질환·월경 페이지 커스텀 스타일 */
/* ========================================== */

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

/* 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;
}

.animate-breathe-delayed {
    animation: breathe 10s infinite ease-in-out;
    animation-delay: 2s;
}

/* Pulse Warmth */
@keyframes pulseWarmth {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.animate-pulse-warmth {
    animation: pulseWarmth 4s ease-in-out infinite;
}

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

/* 
 * 여성질환/월경 페이지 컬러 팔레트
 * 메인: #C47A8A (로즈 핑크) 
 * 서브: #F2D4D7 (소프트 핑크)
 * 강조: #9B5A6A (다크 로즈)
 * 배경: #FFF9FA (웜 화이트 핑크)
 */

:root {
    --wh-primary: #C47A8A;
    --wh-primary-light: #F2D4D7;
    --wh-primary-dark: #9B5A6A;
    --wh-bg-warm: #FFF9FA;
    --wh-accent-lavender: #E8D5E7;
    --wh-accent-cream: #FFF5F0;
}

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

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