@charset "utf-8";
/* CSS Document */

/* Banner 基礎樣式 */
.main-banner {
	background-size: cover;
	background-position: center;
	background-attachment: fixed; /* 視差滾動效果，手機版會自動轉為 static */
	position: relative;
}

/* 黑色遮罩，讓文字更清楚 */
.banner-overlay {
	background: rgba(0, 0, 0, 0.5); 
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
}

/* 將過場時間改為 2 秒 (預設通常是 0.6 秒) */
.carousel-item {
	transition: transform 2s ease-in-out, opacity 2s ease-in-out;
}