/* 自定义样式补充，用于增强Tailwind未覆盖的交互效果 */
html {
    scroll-behavior: smooth;
}

/* 导航栏滚动效果 */
#navbar.scrolled {
    padding: 0.5rem 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 表单提交按钮hover增强 */
button[type="submit"]:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* 卡片hover效果增强 */
.hover\:shadow-lg:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* 移动端菜单动画 */
#mobileMenu {
    transition: all 0.3s ease-in-out;
}

/* 输入框焦点样式优化 */
input:focus, select:focus, textarea:focus {
    border-color: #FF6B35 !important;
}

/* 响应式图片适配 */
img {
    max-width: 100%;
    height: auto;
}

/* 解决小屏幕下内容溢出问题 */
@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    h1 {
        font-size: 2rem !important;
    }
}