/* Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

body {
    font-family: 'Noto Sans KR', sans-serif;
}

/* Floating KakaoTalk Button */
.kakao-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}

.kakao-float:hover {
    transform: translateY(-5px);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 229, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(254, 229, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(254, 229, 0, 0);
    }
}

/* Smooth Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom Utilities */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
