:root {
    --primary-color: #f3bfc3;
    --secondary-color: #efcbb5;
    --primary-dark: #e8a7ac;
    --secondary-dark: #e6b89e;
    --text-dark: #5d4e37;
    --gradient-bg: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

body {
    font-family: 'Microsoft JhengHei', sans-serif;
    background: var(--gradient-bg);
    color: var(--text-dark);
}

/* 導航欄樣式 */
.navbar {
    background: rgba(243, 191, 195, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
    color: var(--text-dark) !important;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-dark) !important;
}

/* 側邊選單樣式 */
.offcanvas {
    background: var(--gradient-bg);
    width: 280px !important;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.offcanvas-body .nav-link {
    color: var(--text-dark);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.offcanvas-body .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--primary-dark);
}

/* 頁尾樣式 */
.footer {
    background: rgba(93, 78, 55, 0.9);
    color: white;
    padding: 50px 0 30px;
    margin-top: 50px;
}

.footer-section h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-icons a {
    color: #ccc;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

/* 動畫效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}