/* ========================================
   JOIN.HTML SPECIFIC STYLES
   ======================================== */

/* Join Section */
.join-section {
    min-height: 100vh;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.join-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 70px;
    padding: 0 20px;
    text-align: center;
    position: relative;
}

.join-header {
    margin-bottom: 40px;
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.join-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.join-buttons {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.join-button-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 30px;
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 220px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.join-button-card:hover {
    transform: scale(1.02);
}

.join-button-card {
    display: flex;
    align-items: center;
    padding: 0;
}

.card-header {
    width: 200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    border-radius: 30px 0 0 30px;
}

.card-header.pink {
    background: #f8f9fa;
}

.card-header.purple {
    background: #f8f9fa;
}

.card-content {
    flex: 1;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    border-radius: 0 30px 30px 0;
}

.button-icon {
    font-size: 3rem;
    color: #564957;
}

.button-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0;
    letter-spacing: 1px;
    color: #495057;
}

.button-description {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    font-weight: 500;
}

.join-btn {
    background: #e9ecef;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 18px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #495057;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    align-self: stretch;
    margin-top: auto;
    min-height: 56px;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.join-btn:active {
    transform: translateY(2px) scale(0.98);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.join-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.join-btn:active::before {
    left: 100%;
}

.d-voucher-btn {
    background: linear-gradient(135deg, #ff91b6, #c44569);
    color: #ffffff;
    border: none;
}

.d-voucher-btn:active {
    background: linear-gradient(135deg, #ff7ba7, #b03d5a);
    transform: translateY(2px) scale(0.98);
}

.d-transform-btn {
    background: linear-gradient(135deg, #9d89dc, #332952);
    color: #ffffff;
    border: none;
}

.d-transform-btn:active {
    background: linear-gradient(135deg, #8b7bc7, #2a1f42);
    transform: translateY(2px) scale(0.98);
}


/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Hide loading bar on mobile */
    .loading-bar {
        display: none;
    }
    /* Join Section Mobile */
    .join-header {
        margin-top: 30px;
    }

    .join-logo {
        max-width: 230px;
    }

    .join-buttons {
        gap: 30px;
        margin-bottom: 40px;
        max-width: 400px;
    }

    .join-button-card {
        height: 200px;
        flex-direction: column;
    }

    .card-header {
        width: 100%;
        height: 80px;
        border-radius: 30px 30px 0 0;
    }

    .card-content {
        padding: 20px 25px 25px 25px;
        border-radius: 0 0 30px 30px;
        background: #f8f9fa;
    }

    .button-description {
        margin-bottom: 10px;
    }

}

@media (max-width: 480px) {
    /* Join Section Small Mobile */
    .join-header {
        margin-top: 40px;
    }

    .join-logo {
        max-width: 190px;
    }

    .join-buttons {
        gap: 25px;
        margin-bottom: 30px;
        max-width: 350px;
    }

    .join-button-card {
        height: 180px;
        flex-direction: column;
    }

    .card-header {
        width: 100%;
        height: 70px;
        border-radius: 30px 30px 0 0;
    }

    .card-content {
        padding: 15px 20px 20px 20px;
        border-radius: 0 0 30px 30px;
        background: #f8f9fa;
    }

    .button-icon {
        font-size: 1.4rem;
        padding-top: 10px;
    }

    .button-title {
        font-size: 1rem;
    }

    .button-description {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .join-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

}
