/*
Theme Name: JOYCOVE Landing Page
Theme URI: https://joycove.com
Author: JOYCOVE
Author URI: https://joycove.com
Description: JOYCOVE 鸟用智能饭盆官方着陆页主题 - 会打健康报告的鸟用智能饭盆
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: joycove
Tags: one-page, landing-page, custom-background
*/

/* ===== 导航栏浅色玻璃 ===== */
.glass-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* ===== 首页邮箱表单：深色磨砂玻璃 ===== */
.glass-dark-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* ===== 隐藏滚动条 ===== */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* ===== Bento Grid 卡片交互 ===== */
.bento-card {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.bento-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 10;
}

/* ===== 模态框动画 ===== */
.modal-enter {
    opacity: 0;
    transform: scale(0.95);
}

.modal-enter-active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 300ms ease-out, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-exit {
    opacity: 1;
    transform: scale(1);
}

.modal-exit-active {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 200ms ease-in, transform 200ms ease-in;
}

/* ===== 动画 ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
}

/* ===== 选中态边框 ===== */
.variant-selected {
    border-color: #4EE8B0;
    background-color: #E8F68F;
    box-shadow: 0 0 0 2px #4EE8B0;
}

/* ===== FAQ Accordion ===== */
details > summary {
    list-style: none;
}

details > summary::-webkit-details-marker {
    display: none;
}
