/* White Room - Custom Styles */

/* 行動版選單動畫效果 */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-down {
    animation: slideDown 0.3s ease-out forwards;
}

/* 漢堡選單圖示旋轉動畫 */
#mobile-menu-button svg {
    transition: transform 0.3s ease-in-out;
}

#mobile-menu-button:hover svg {
    transform: scale(1.1);
}

/* 確保行動選單在動畫期間的層級 */
#mobile-menu {
    z-index: 40;
}

/* 平滑滾動效果 */
html {
    scroll-behavior: smooth;
}

/* 自訂樣式增強 */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* 焦點樣式改善無障礙體驗 */
button:focus,
a:focus {
    outline: 2px solid #3B82F6;
    outline-offset: 2px;
}

/* 載入狀態優化 */
@media (prefers-reduced-motion: reduce) {
    .animate-slide-down,
    .transition-all,
    html {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}