
/* ---------- 輪播圖 ---------- */
.image-carousel {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
.image-carousel-slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}
.image-carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.image-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.image-carousel-controls {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}
.image-carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.image-carousel-dot.active {
    background-color: var(--background-main-color);
}
.image-carousel-prev,
.image-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.image-carousel-prev img,
.image-carousel-next img {
    width: 100%;
}
.image-carousel-prev {
  left: 25px;
}
.image-carousel-next {
  right: 25px;
}
/* 輪播圖文字 */
.image-carousel-caption {
    position: absolute;
    top: 58.5%;
    left: 3%;
    max-width: 60%;
    padding: 12px 18px;
    z-index: 2;
    text-align: left;
    border-radius: 4px;
    font-size: 16px;
}
.image-carousel-title {
    font-weight: 700px;
    color: var(--background-main-color);
    opacity: 0.95;
}
.image-carousel-title:nth-of-type(2) {
    font-size: 38.5px;
    font-family: ZenAntiqueSoft-Regular;
    letter-spacing: 5px;
}
.image-carousel-title:nth-of-type(3) {
    font-size: 12px;
    font-family: palatinolinotype-bold;
    letter-spacing: 1.3px;
}
.image-carousel-small-title {
    font-size: 9px;
    font-family: palatinolinotype-bold;
    margin-bottom: 10px;
    font-weight: 400;
    color: var(--background-main-color);
    letter-spacing: 1.3px;
}
.more-container {
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.image-carousel-btn {
    font-size: 9px;
    font-family: palatinolinotype-bold;
    font-weight: 100;
    color: var(--background-main-color);
    border: solid 0.1px #b3b3b3;
    display: inline-block;
    padding: 1px 2px 1px 3px;
    height: 10px;
    letter-spacing: 1.3px;
}
.more-container .line {
    width: 65px;
    height: 1px;
    background-color: #b3b3b3;
}
.more-container .circle {
    width: 8px;
    height: 8px;
    border: 1px solid #b3b3b3;
    border-radius: 50%;
    background-color: transparent;
}

@media (max-width: 992px) {
    /* ---------- 輪播圖 ---------- */
    .image-carousel-controls {
        bottom: 5%;
    }
    .image-carousel-dot {
        width: 8px;
        height: 8px;
    }
    /* 輪播圖文字 */
    .image-carousel-caption {
        top: 55%;
        left: 6%;
        transform: translateY(0%);
    }
    .image-carousel-title {
        font-size: 41px;
    }
    .image-carousel-small-title {
        font-size: 14px;
    }
    .more-container {
        margin-top: 10px;
    }
    .image-carousel-btn {
        font-size: 10px;
        height: 11px;
    }
}