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

body {
    font-family: 'Noto Sans KR', 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Custom Utilities */
.text-gold {
    color: #E5A91E;
}

.bg-gold {
    background-color: #E5A91E;
}

.hover-bg-gold:hover {
    background-color: #D49817;
}

.text-green {
    color: #2E7D32;
}

.bg-green {
    background-color: #2E7D32;
}

.hover-bg-green:hover {
    background-color: #1B5E20;
}

/* Micro-animations */
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Hero Image Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

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

/* Glassmorphism for Navbar */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}