/* ==========================================================================
   首頁專屬區塊樣式 (Index Page Only)
   ========================================================================== */

/* Hero 首圖區塊 */
.hero-section .carousel-item img {
    height: 65vh;
    /* 預設高度 */
    min-height: 760px;
    object-position: center;
}

@media (max-width: 768px) {
    .hero-section .carousel-item img {
        height: 50vh;
    }
}

/* What's On 最新演出 */
.whats-on-section .section-title h2 {
    display: inline-block;
}

/* Video 影音區塊 */
.video-section {
    position: relative;
    overflow: hidden;
    background-image: url('../images/video.jpg');
    background-size: cover;
    background-position: center;
}

/* 背景設計：左側淺灰底色，若需要不規則設計可在此加入偽元素 */
.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background-color: #f0f0f0;
    /* 比外層更灰一點的裝飾 */
    z-index: 0;
    border-radius: 0 50px 50px 0;
    opacity: 0.5;
}

@media (max-width: 991px) {
    .video-section::before {
        width: 100%;
        border-radius: 0;
        height: 50%;
    }
}

.play-btn {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.ratio:hover .play-btn {
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4) !important;
}

/* What's On, Tour & Event 標題裝飾線 */
.whats-on-section .accent-line,
.tour-section .accent-line,
.event-section .accent-line {
    width: 80px;
    margin-top: 15px !important;
}

/* Tour & Event 列表清單 */
.tour-section .list-group-item h5,
.event-section .list-group-item h5 {
    font-size: 1.4rem !important;
}

.tour-section .list-group-item .col-md-3,
.event-section .list-group-item .col-md-3 {
    font-size: 1.5em !important;
}

.city-highlight {
    color: #ffc453 !important;
}

.tour-section .list-group-item,
.event-section .list-group-item {
    padding-top: 1.8rem !important;
    padding-bottom: 1.8rem !important;
    transition: background-color 0.2s ease, padding-left 0.3s ease;
}

.tour-section .list-group-item:hover,
.event-section .list-group-item:hover {
    background-color: #fafafa !important;
}

/* 讓星期標籤更精緻 */
.badge.border-dark {
    font-weight: 500;
}

/* Support Us 贊助區塊 */
.support-btns .btn-outline-dark {
    min-width: 160px;
    letter-spacing: 0.1em;
    transition: all 0.3s;
}

.support-btns .btn-outline-dark:hover {
    background-color: var(--primary-yellow) !important;
    border-color: var(--primary-yellow) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 205, 36, 0.3) !important;
}