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

/* Basic Reset & Font */
body {
    font-family: 'Noto Sans KR', sans-serif;
    scroll-behavior: smooth;
}

/* Custom Utilities */
html {
    scroll-padding-top: 80px; /* Fixed Header Height Compensation */
}

/* KakaoTalk Floating Button */
.kakao-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #FEE500;
    color: #3c1e1e;
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    animation: float 3s ease-in-out infinite;
}

.kakao-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background-color: #ffeb3b;
}

.kakao-icon {
    font-size: 24px;
}

.kakao-text {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
}

/* Floating Animation Keyframes */
@keyframes float {
    0% {
        box-shadow: 0 5px 15px 0px rgba(0,0,0,0.2);
        transform: translatey(0px);
    }
    50% {
        box-shadow: 0 25px 15px 0px rgba(0,0,0,0.1);
        transform: translatey(-10px);
    }
    100% {
        box-shadow: 0 5px 15px 0px rgba(0,0,0,0.2);
        transform: translatey(0px);
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .kakao-float {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
    }
    
    .kakao-text {
        font-size: 12px;
    }
    
    .kakao-icon {
        font-size: 20px;
    }
}