/* Custom Fonts */
body {
    font-family: 'Noto Sans KR', sans-serif;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #00a99d; /* dyTeal */
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0085ca; /* dyBlue */
}

/* Animations for Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    transform: translateX(-50px);
}
.slide-left.visible {
    transform: translateX(0);
}

.slide-right {
    transform: translateX(50px);
}
.slide-right.visible {
    transform: translateX(0);
}

/* Floating Animation Keyframes */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Packdori Specific Styles */
.packdori-svg {
    width: 80px;
    height: 80px;
}

/* Speech Bubble Styles */
.speech-bubble {
    position: relative;
    background: #ffffff;
}

.speech-arrow {
    position: absolute;
    width: 0;
    height: 0;
}