/* Section Wkndr Waitlist Modal */
.section-wkndr-waitlist-modal {
    padding: 40px 20px;
    text-align: center;
}

.wkndr-waitlist-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.wkndr-waitlist-button {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
    border-radius: 50px;
    padding: 10px 24px;
    gap: 10px;
    font-family: "Neue Haas Grotesk Display Pro";
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    white-space: nowrap;
    line-height: 30px;
}

.wkndr-waitlist-button:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px);
}

.wkndr-waitlist-description {
    color: #000;
    text-align: center;
    font-family: "Helvetica Neue";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 112%;
    letter-spacing: -0.48px;
}

/* Modal Styles */
.wkndr-waitlist-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

.wkndr-waitlist-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.wkndr-waitlist-modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    max-width: 650px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

#mc_embed_signup {
    max-width: 100% !important;
    width: 100% !important;
}

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

.wkndr-waitlist-modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    z-index: 10;
}

.wkndr-waitlist-modal-close:hover {
    color: #000;
}

.wkndr-waitlist-modal-title {
    margin: 0 0 30px 0;
    font-size: 28px;
    font-weight: 600;
    color: #000;
    text-align: center;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .wkndr-waitlist-container {
        flex-direction: column;
        gap: 10px;
    }

    .wkndr-waitlist-button {
        font-size: 16px;
        padding: 12px 30px;
    }

    .wkndr-waitlist-description {
        font-size: 16px;
    }

    .wkndr-waitlist-modal-content {
        padding: 30px 20px;
    }

    .wkndr-waitlist-modal-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
}