/* 全局樣式 */
body {
    font-family: 'Noto Sans TC', sans-serif;
    padding-top: 56px;
}

/* 首頁橫幅樣式 */
.hero-section {
    background: linear-gradient(rgba(26, 35, 126, 0.1), rgba(26, 35, 126, 0.1)), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

/* 導航欄樣式 */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: #1a237e !important;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* 卡片樣式 */
.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
}

/* 價格標籤樣式 */
.price-tag {
    color: #1a237e;
    font-size: 1.2rem;
    margin: 20px 0;
}

.price-tag .h2 {
    font-weight: bold;
}

/* 按鈕樣式 */
.btn {
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
}

.btn-primary {
    background-color: #1a237e;
    border-color: #1a237e;
}

.btn-primary:hover {
    background-color: #000051;
    border-color: #000051;
}

.btn-outline-primary {
    color: #1a237e;
    border-color: #1a237e;
}

.btn-outline-primary:hover {
    background-color: #1a237e;
    border-color: #1a237e;
}

/* 社交媒體圖標樣式 */
.social-icons {
    font-size: 2rem;
    margin: 20px 0;
}

.social-icons a {
    color: #1a237e;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #000051;
}

/* 表單樣式 */
.form-control {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

.form-control:focus {
    border-color: #1a237e;
    box-shadow: 0 0 0 0.2rem rgba(26, 35, 126, 0.25);
}

/* 頁尾樣式 */
footer {
    margin-top: 50px;
    background-color: #000051 !important;
}

footer hr {
    border-color: rgba(255,255,255,0.1);
}

/* 響應式調整 */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .card {
        margin-bottom: 20px;
    }
}

/* 動畫效果 */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 