/* Summer Camp Temporary Popup */
.summer-camp-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.summer-camp-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.summer-camp-popup {
    background: #FFFCF7; /* Warm white / cream */
    width: 100%;
    max-width: 560px;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    text-align: center;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.summer-camp-popup-overlay.show .summer-camp-popup {
    transform: scale(1) translateY(0);
}

.summer-camp-popup-close-x {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(184, 216, 216, 0.2);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    color: #444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}

.summer-camp-popup-close-x:hover {
    background: rgba(184, 216, 216, 0.5);
    transform: rotate(90deg);
}

.summer-camp-popup-logo {
    display: block;
    margin: 0 auto 1.5rem auto; /* 24px spacing */
    width: 200px;
    height: auto;
}

.summer-camp-popup-subtitle {
    font-family: 'Open Sauce One', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--color-brand-green);
    text-align: center;
    margin-bottom: 1.75rem; /* ~28px spacing */
    line-height: 1.2;
}

.summer-camp-popup-text {
    font-family: 'Open Sauce One', sans-serif;
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.summer-camp-popup-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem; /* 20px spacing */
}

.summer-camp-popup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--color-brand-green);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Open Sauce One', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    width: 100%;
    max-width: 320px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.summer-camp-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(95, 143, 116, 0.3);
}

.summer-camp-popup-close-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-family: 'Open Sauce One', sans-serif;
    font-size: 0.95rem;
    text-decoration: underline;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}

.summer-camp-popup-close-btn:hover {
    color: var(--color-text);
}

@media (max-width: 768px) {
    .summer-camp-popup {
        max-width: 90vw;
        padding: 2.5rem 1.5rem;
    }
    
    .summer-camp-popup-logo {
        width: 150px;
    }
    
    .summer-camp-popup-subtitle {
        font-size: 1.15rem;
    }
    
    .summer-camp-popup-text {
        font-size: 1rem;
    }
    
    .summer-camp-popup-btn {
        max-width: 100%;
    }
}
