/* 輪播照片設定 */
.gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.hero-image {
	width: 100%;
	height: 100vh; /* 讓圖片高度等於視口高度 */
	position: relative;
	overflow: hidden;
	padding-top: 56px; /* 確保導覽列不會遮住圖片 */
}

.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* 確保圖片適應不同螢幕大小 */
}

@media (max-width: 768px) {
	.hero-image {
		height: 50vh; /* 手機版高度縮小 */
	}
}

/* 橢圓形圖片 */
.img-oval {
	border-radius: 50%;
	width: 250px;
	height: 150px;
	object-fit: cover;
}

/* 禁止選取文字 */
body, img {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
