/* ========================================
   UNITE US ONLINE - MAIN STYLESHEET
   Imports all CSS modules and handles global styles
   ======================================== */

/* Import all CSS modules */
@import url('variables.css');
@import url('base.css');
@import url('layout.css');
@import url('components.css');
@import url('utilities.css');

/* ========================================
   RECAPTCHA STYLES - Small Logo Only
   ======================================== */
.grecaptcha-badge {
    position: fixed !important;
    bottom: 100px !important;
    right: 20px !important;
    z-index: 1000 !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    width: 70px !important;
    height: 60px !important;
    overflow: hidden !important;
}

/* Ensure reCAPTCHA iframe uses small logo */
iframe[src*="recaptcha"] {
    position: fixed !important;
    bottom: 100px !important;
    right: 20px !important;
    z-index: 1000 !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    width: 70px !important;
    height: 60px !important;
    border: none !important;
}

/* ========================================
   HERO SECTION STYLES
   ======================================== */
.hero {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.hero .slogan {
    font-size: 1.25rem;
    color: #a0a0a0;
    margin: 0 0 2rem 0;
    line-height: 1.4;
}

/* ========================================
   ROADMAP STYLES
   ======================================== */
.roadmap-phase {
    background-color: #1f1f1f;
    border: 1px solid #404040;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.roadmap-phase.completed {
    border-color: #059669;
}

.roadmap-phase.in-progress {
    border-color: #d97706;
}

.roadmap-phase.planned {
    border-color: #6b7280;
}

.phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.phase-header h2 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.completed {
    background-color: #059669;
    color: #ffffff;
}

.status-badge.in-progress {
    background-color: #d97706;
    color: #ffffff;
}

.status-badge.planned {
    background-color: #6b7280;
    color: #ffffff;
}

.phase-progress {
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #404040;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #3b82f6;
    transition: width 0.3s ease;
}

.phase-description {
    color: #a0a0a0;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.features-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #404040;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-name {
    color: #e5e5e5;
    font-weight: 500;
}

.feature-details {
    color: #a0a0a0;
    font-size: 0.875rem;
}

.feature-completed {
    color: #059669;
}

.feature-in-progress {
    color: #d97706;
}

.feature-planned {
    color: #6b7280;
}

/* ========================================
   AUTH FORM STYLES
   ======================================== */
.auth-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #1f1f1f;
    border: 1px solid #404040;
    border-radius: 8px;
}

.auth-form h2 {
    color: #ffffff;
    text-align: center;
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form .btn {
    width: 100%;
    margin-top: 1rem;
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #404040;
}

.auth-links a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* ========================================
   PASSWORD STRENGTH INDICATOR
   ======================================== */
.password-strength {
    margin-top: 0.5rem;
}

.strength-bar {
    height: 4px;
    background-color: #404040;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill {
    height: 100%;
    transition: all 0.3s ease;
}

.strength-weak .strength-fill {
    background-color: #dc2626;
    width: 25%;
}

.strength-fair .strength-fill {
    background-color: #d97706;
    width: 50%;
}

.strength-good .strength-fill {
    background-color: #3b82f6;
    width: 75%;
}

.strength-strong .strength-fill {
    background-color: #059669;
    width: 100%;
}

.strength-text {
    font-size: 0.75rem;
    color: #a0a0a0;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .slogan {
        font-size: 1rem;
    }
    
    .auth-form {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .roadmap-phase {
        padding: 1rem;
    }
    
    .phase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}