/* === Holiday Notification Modal === */
.holiday-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.holiday-content {
    position: relative;
    background: transparent;
    max-width: 800px;
    width: 100%;
}

.holiday-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-light);
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    border-radius: 50%;
}

.holiday-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.holiday-slideshow {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.holiday-slides-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.holiday-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.holiday-slide img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 80vh;
    object-fit: contain;
}

.holiday-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: var(--text-light);
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

/* .holiday-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
} */

.holiday-arrow.prev {
    left: 10px;
}

.holiday-arrow.next {
    right: 10px;
}


@media (max-width: 768px) {
    .holiday-content {
        max-width: 95%;
    }

    .holiday-close {
        width: 35px;
        height: 35px;
        font-size: 24px;
        top: 5px;
        right: 5px;
    }

    .holiday-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .holiday-arrow.prev {
        left: 5px;
    }

    .holiday-arrow.next {
        right: 5px;
    }

    .holiday-slide img {
        max-height: 70vh;
    }
}

@media (max-width: 480px) {
    .holiday-content {
        max-width: 100%;
    }

    .holiday-close {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

    .holiday-arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .holiday-slide img {
        max-height: 60vh;
    }
}
