.z-1200 {
    z-index: 1200;
}

.bg-white {
    background-color: white;
}

.bg-hexe2e8f0 {
    background-color: #e2e8f0;
}

.bg-hexbea489 {
    background-color: #bea489;
}

.bg-hexc8ba9b {
    background-color: #c8ba9b;
}

.bg-hex221f1e {
    background-color: #221f1e;
    height: 150px;
}

.bg-hex3e3a39 {
    background-color: #3e3a39;
}

.bg-hexefebe2 {
    background-color: #efebe2;
}

.bg-secondary {
    background-color: #e9ecef;
}

.text-hexEF7927 {
    color: #EF7927;
}

.text-hex9d8367 {
    color: #9d8367;
}

.text-hexaa2b48 {
    color: #aa2b48;
}

.text-hexc7b099 {
    color: #c7b099;
}

.border-hexc7b099 {
    border: 1px solid #c7b099;
}

.h-400 {
    height: 400px;
}

.h-230 {
    height: 230px;
}

.pt-6 {
    padding-top: 3rem;
}

/*Navbar*/
.content-bar {
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    width: 100%;
}

.content-bar-block {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0rem 1.5rem;
    background-color: white;
    border-radius: 2rem;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    max-width: fit-content;
}

.decorated-link::after {
    content: "|";
    margin-left: 1.4rem;
}

.link-wrapper:last-child .decorated-link::after {
    content: "";
}

.sticky-hover {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#hoverStickyNav {
    transition: top 0.3s ease;
    z-index: 1999;
}


/*FA100*/
.border-radius {
    border-radius: 3rem;
}

.box-shadow {
    box-shadow: .1em .2em .4em rgba(0, 0, 0, 0.795);
}

.carousel-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.swiper-button-prev-style, .swiper-button-next-style {
    color: #000;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    color: white;
    background-color: #bea489;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    position: absolute;
}

    .swiper-button-prev-style::after, .swiper-button-next-style::after {
        font-size: 1.25rem;
    }

.swiper-container-wrapper,
.swiper-wrapper,
.swiper-slide {
    height: auto; /* 讓 slide 高度隨內容自動 */
}

.swiper-container-wrapper {
    position: relative;
    padding: 0 60px;
}

.pv16 .card {
    height: 100%; /* 卡片跟內容一樣高 */
}



.title-label {
    border: 2.5px solid;
    color: #bea489;
    width: 10em;
}

.card-img-height {
    height: 300px;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.card.slide-up {
    animation: slideUp 0.6s ease-out;
}

.card-img-height {
    height: 200px;
    object-fit: cover;
}

.carousel-bg {
    background-color: #efebe2;
}

#carouselBanner {
    max-width: 80%;
    margin: 0 auto;
}



/*FB200*/
#dt tbody tr {
    cursor: pointer;
}

.filter-item {
    cursor: pointer;
}

    .filter-item.selected i {
        color: dodgerblue;
    }


/*FC100*/
.circle-overlay {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin: 10px auto;
    cursor: pointer;
}

    .circle-overlay img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.3s ease;
        filter: brightness(60%);
    }

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    pointer-events: none;
    z-index: 2;
}



.circle-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(165, 134, 103, 0);
    transition: background-color 0.3s ease;
    z-index: 1;
}

.circle-overlay:hover::before {
    background-color: #a58667;
}

/*FC200*/
.fancybox__container {
    z-index: 5000 !important;
}



.badge-lg {
    font-size: 1rem;
    padding: 0.5em 1em;
}

.badge-md {
    font-size: 0.9rem;
    padding: 0.5em 1em;
    color: black;
}

img {
    -webkit-user-drag: none;
    user-select: none;
}

.font-size-21 {
    font-size: 21px;
}

.font-size-17 {
    font-size: 17px;
}

#stickyTitleNav {
    position: sticky;
    top: 0;
    z-index: 1020;
    height: 80px;
}

#pageNav {
    position: sticky;
    top: 80px;
    z-index: 1010;
    padding: 1rem 9rem;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    flex-wrap: nowrap; /* 不換行 */
    gap: 0.5rem;
}

#pageButtons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}
