/* Holiday Closure Popup Styles */

.holiday-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(38, 37, 38, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.holiday-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.holiday-popup {
    background-color: #262526;
    border: 2px solid #c59d5f;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.holiday-popup__content {
    padding: 50px 40px 40px;
    text-align: center;
    color: #ffffff;
}

.holiday-popup__close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #c59d5f;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 5px 10px;
    transition: transform 0.2s ease, color 0.2s ease;
    z-index: 1;
}

.holiday-popup__close:hover {
    color: #d4b278;
    transform: rotate(90deg);
}

.holiday-popup__icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #c59d5f;
}

.holiday-popup__title {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #c59d5f;
    margin-bottom: 20px;
    line-height: 1.2;
}

.holiday-popup__subtitle {
    font-family: "Herr Von Muellerhoff", cursive;
    font-size: 36px;
    color: #c59d5f;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.2;
}

.holiday-popup__dates {
    background-color: rgba(197, 157, 95, 0.1);
    border-left: 4px solid #c59d5f;
    padding: 25px;
    margin: 25px 0;
    text-align: left;
}

.holiday-popup__dates-title {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #c59d5f;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.holiday-popup__date-item {
    font-family: "Cabin", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 8px;
}

.holiday-popup__date-item strong {
    color: #c59d5f;
    font-weight: 600;
}

.holiday-popup__message {
    font-family: "Cabin", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #b3b3b3;
    margin-bottom: 25px;
}

.holiday-popup__button {
    background-color: #c59d5f;
    color: #262526;
    border: none;
    padding: 15px 40px;
    font-family: "Cabin", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 157, 95, 0.3);
}

.holiday-popup__button:hover {
    background-color: #d4b278;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 157, 95, 0.4);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .holiday-popup {
        width: 95%;
        max-height: 85vh;
    }

    .holiday-popup__content {
        padding: 45px 30px 30px;
    }

    .holiday-popup__title {
        font-size: 26px;
    }

    .holiday-popup__subtitle {
        font-size: 30px;
    }

    .holiday-popup__dates {
        padding: 20px;
    }

    .holiday-popup__dates-title {
        font-size: 16px;
    }

    .holiday-popup__date-item {
        font-size: 15px;
    }

    .holiday-popup__message {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .holiday-popup__content {
        padding: 40px 20px 25px;
    }

    .holiday-popup__icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .holiday-popup__title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .holiday-popup__subtitle {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .holiday-popup__dates {
        padding: 15px;
        margin: 20px 0;
    }

    .holiday-popup__dates-title {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .holiday-popup__date-item {
        font-size: 14px;
        line-height: 1.6;
    }

    .holiday-popup__message {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .holiday-popup__button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .holiday-popup__close {
        font-size: 28px;
        top: 10px;
        right: 10px;
    }
}

/* Prevent body scroll when popup is open */
body.holiday-popup-open {
    overflow: hidden;
}
