﻿.christmas-bg {
    background: radial-gradient(circle at top, #ffcccc, #b30000 60%, #660000 100%);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    border: 3px solid gold;
}

.carousel-item img,
.carousel-item video {
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
}

.christmas-title {
    font-family: 'Georgia', serif;
    font-size: 28px; /* default for tablets + small laptops */
    color: maroon;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 15px;
}


/* ✅ Mobile phones (up to 480px) */
@media (max-width: 480px) {
    .christmas-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
}

/* ✅ Small tablets (481px–768px) */
@media (max-width: 768px) {
    .christmas-title {
        font-size: 24px;
    }
}
@media (min-width: 992px) {
    .christmas-title {
        font-size: 32px;
    }
}

.slide-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 0 6px rgba(0,0,0,0.7);
}


#mediaPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    z-index: 9999;
}

#mediaContent {
    width: 70%;
    margin: 50px auto;
    background: #fa8507;
    padding: 20px;
    border-radius: 10px;
    max-height: 80%;
    overflow-y: auto;
}

.media-item {
    margin-bottom: 20px;
    text-align: center;
}

    .media-item img, .media-item video {
        width: 300px;
        border-radius: 8px;
    }

#closePopup {
    float: right;
    cursor: pointer;
    font-size: 25px;
    color: white;
}
/* ✅ Mobile phones (up to 480px) */
@media (max-width: 480px) {
    #closePopup {
        font-size: 12px;
        margin-bottom: 10px;
    }
}

/* ✅ Small tablets (481px–768px) */
@media (max-width: 768px) {
    #closePopup {
        font-size: 15px;
    }
}

@media (min-width: 992px) {
    #closePopup {
        font-size: 20px;
    }
}
.video-wrapper {
    position: relative;
}

.tap-to-sound-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.65);
    color: gold;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    text-shadow: 1px 1px 4px red;
    border: 2px solid gold;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.1);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

.tap-to-close-overlay {
    position: absolute;
    top: 1%;
    left: 80%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: gold;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    text-shadow: 1px 1px 4px red;
    border: 2px solid gold;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.1);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

.snow-container {
    position: relative;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: white;
    font-size: 18px;
    opacity: 0.9;
    pointer-events: none;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(800px);
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%; /* optional: makes the hover area larger */

    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease;
}

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        width: 15%; /* optional: makes the hover area larger */

        background-color: rgba(0, 0, 0, 0.4); /* your custom hover color */
    }
