/* ================================ */
/* DAYOFF 多媒體輪播器樣式          */
/* ================================ */

/* 外層 wrapper */
.dayoff-slider-wrapper-outer {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* 輪播器容器 */
.dayoff-slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: #000;
    box-sizing: border-box;
    display: block;
    margin: 0 auto;
}

/* wrapper */
.dayoff-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* 輪播項目 */
.dayoff-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.dayoff-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* 圖片樣式 */
.dayoff-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: #000;
}

/* 影片樣式 */
.dayoff-slide video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* YouTube 影片 */
.dayoff-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
}

.dayoff-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* 左右箭咀 */
.dayoff-slider-prev,
.dayoff-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dayoff-slider-prev { left: 20px; }
.dayoff-slider-next { right: 20px; }

/* 指示點 */
.dayoff-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dayoff-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.dayoff-dot.active {
    background: rgba(255,255,255,1);
}

/* ================================ */
/* 手機版響應式                     */
/* ================================ */
@media screen and (max-width: 768px) {
    .dayoff-slider-container {
        height: 250px !important;
    }
    
    .dayoff-slide {
        width: 100% !important;
        height: 100% !important;
    }
    
    .dayoff-slide img,
    .dayoff-slide video {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }
    
    .dayoff-slider-prev,
    .dayoff-slider-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .dayoff-slider-prev { left: 10px; }
    .dayoff-slider-next { right: 10px; }
}

@media screen and (max-width: 480px) {
    .dayoff-slider-container {
        height: 200px !important;
    }
    
    .dayoff-slider-prev,
    .dayoff-slider-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .dayoff-dot {
        width: 10px;
        height: 10px;
    }
}
