/* ============================================ */
/* MarryVow 站內自訂 CSS                        */
/* Tailwind CSS 為主，此檔案僅放全域覆寫與動畫  */
/* ============================================ */

/* 平滑滾動 */
html {
    scroll-behavior: smooth;
}

/* 選取文字顏色 */
::selection {
    background-color: #B8860B;
    color: #ffffff;
}

/* 焦點樣式（無障礙） */
:focus-visible {
    outline: 2px solid #B8860B;
    outline-offset: 2px;
    border-radius: 4px;
}

/* 漸入動畫（供 Hero 區使用） */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* 延遲動畫（服務卡片等） */
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
