/* Jars Mother's Day Popup Styles */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;600&display=swap');

.jars-md-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.jars-md-popup-overlay.active {
    opacity: 1;
}

.jars-md-popup-container {
    background: #0a1128;
    /* Deep dark blue */
    width: 90%;
    max-width: 450px;
    position: relative;
    border: 1px solid #c5a059;
    /* Gold border */
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.jars-md-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.3s ease;
}

.jars-md-popup-close:hover {
    color: #003b64;
}

.jars-md-popup-header {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.jars-md-popup-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #0a1128, transparent);
}

.jars-md-popup-content {
    padding: 30px 40px;
    text-align: center;
}

.special-invitation {
    color: #c5a059;
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
}

.jars-md-popup-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin: 0;
    font-weight: 400;
    line-height: 1.2;
}

.date {
    font-family: 'Playfair Display', serif;
    color: #c5a059;
    font-style: italic;
    font-size: 20px;
    margin: 10px 0 20px;
}

.divider {
    width: 40px;
    height: 1px;
    background: #c5a059;
    margin: 0 auto 25px;
}

.description {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
    font-weight: 300;
}

.offer {
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    padding: 15px 0;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.offer p {
    font-size: 11px;
    letter-spacing: 1px;
    margin: 0;
    font-weight: 600;
}

.offer .icon {
    color: #c5a059;
    font-size: 18px;
}

.book-button {
    display: inline-block;
    border: 1px solid #c5a059;
    color: #c5a059;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.book-button:hover {
    background: rgba(197, 160, 89, 0.1);
    color: #c5a059;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
}

.footer-info {
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #888;
}

.restaurant-name {
    margin: 0 0 5px;
    font-weight: 600;
    color: #aaa;
}

.address,
.contact {
    margin: 0;
}

@media (max-width: 480px) {
    .jars-md-popup-container {
        width: 95%;
    }

    .jars-md-popup-content {
        padding: 20px;
    }

    .jars-md-popup-content h1 {
        font-size: 28px;
    }
}