/* Join Us Page Specific Styles */

/* Base Styles */
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 20%, #5b21b6 40%, #4c1d95 60%, #2d1b4e 80%, #1a0f2e 90%, #0f0820 100%);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.9);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
header {
    padding: 20px;
    border-bottom: 2px solid rgba(124, 58, 237, 0.3);
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-family: 'Courier New', 'Courier', monospace;
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(124, 58, 237, 0.8),
                 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-icon {
    width: 40px;
    height: 40px;
}

/* Footer */
footer {
    padding: 30px 20px;
    text-align: center;
    border-top: 2px solid rgba(124, 58, 237, 0.3);
    margin-top: 60px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

/* Hidden Admin Access */
.admin-secret {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: transparent;
    cursor: default;
    z-index: 9999;
}

.admin-secret:hover {
    background: rgba(124, 58, 237, 0.05);
}

.join-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.join-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    text-align: center;
    font-family: 'Courier New', 'Courier', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.8),
                 0 0 40px rgba(124, 58, 237, 0.6),
                 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.join-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Educational Notice */
.educational-notice {
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.educational-notice p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.educational-notice a {
    color: #a78bfa;
    text-decoration: none;
    font-weight: 600;
}

.educational-notice a:hover {
    color: #c4b5fd;
    text-decoration: underline;
}

/* Success Message */
.success-message {
    background: rgba(124, 58, 237, 0.15);
    border: 2px solid #7c3aed;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.success-message h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(124, 58, 237, 0.8),
                 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.success-message p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
}

.success-message a {
    color: #00d9ff;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.success-message a:hover {
    color: #33e4ff;
    text-decoration: underline;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.8);
}

/* Form Styles */
.join-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    background: #fff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #7c3aed;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: #7c3aed;
    color: #fff;
    border: 2px solid #7c3aed;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.submit-btn:hover {
    background: #fff;
    color: #7c3aed;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Contribute Section */
.contribute-section {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
}

.contribute-section h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.contribute-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 20px;
}

.contribute-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #dc2626;
    color: #fff;
    text-decoration: none;
    border: 2px solid #dc2626;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contribute-btn:hover {
    background: #fff;
    color: #dc2626;
    transform: translateY(-2px);
}

/* Partners Section */
.partners-section {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 30px;
    text-align: center;
}

.partners-section h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 24px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(124, 58, 237, 0.8),
                 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.partners-grid a {
    display: block;
    text-decoration: none;
}

.partner-logo {
    max-width: 100px;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
}

.partner-logo:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .join-form {
        padding: 24px;
    }

    .join-title {
        font-size: 1.8rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-logo {
        max-width: 80px;
    }
}

@media screen and (max-width: 480px) {
    .join-section {
        padding: 20px 10px;
    }

    .join-form {
        padding: 20px;
    }

    .submit-btn,
    .contribute-btn {
        font-size: 16px;
        padding: 12px 24px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}
