/**
 * JEA Onboarding / Registration Landing Pages CSS
 * Used by views: join, tenant, landlord
 *
 * @package     Joomla.Site
 * @subpackage  com_jea
 */

/* ── Join page ──────────────────────────────────────────────────────────────── */

.jea-join {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.jea-join__already-in {
    margin-bottom: 1.5rem;
}

.jea-join__hero {
    text-align: center;
    padding: 3rem 1rem 2rem;
}

.jea-join__title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.jea-join__sub {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.jea-join__paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 640px) {
    .jea-join__paths {
        grid-template-columns: 1fr;
    }
}

.jea-join__path {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.jea-join__path:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
    transform: translateY(-2px);
}

.jea-join__path--tenant {
    border-color: #3b82f6;
}

.jea-join__path--landlord {
    border-color: #10b981;
}

.jea-join__path-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: inherit;
}

.jea-join__path--tenant .jea-join__path-icon {
    color: #3b82f6;
}

.jea-join__path--landlord .jea-join__path-icon {
    color: #10b981;
}

.jea-join__path-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.jea-join__path-desc {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1.25rem;
}

.jea-join__path-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.jea-join__path-features li {
    padding: 0.3rem 0 0.3rem 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: #374151;
}

.jea-join__path-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.jea-join__path-cta {
    width: 100%;
}

.jea-join__login-hint {
    text-align: center;
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 1rem;
}

/* ── Onboarding (tenant/landlord) shared ─────────────────────────────────── */

.jea-onboard {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.jea-onboard__hero {
    padding: 3rem 1rem 2rem;
    margin-bottom: 2rem;
}

.jea-onboard--tenant .jea-onboard__hero {
    border-left: 4px solid #3b82f6;
    padding-left: 1.5rem;
}

.jea-onboard--landlord .jea-onboard__hero {
    border-left: 4px solid #10b981;
    padding-left: 1.5rem;
}

.jea-onboard__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.jea-onboard__tagline {
    font-size: 1.05rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.jea-onboard__hero-secondary {
    margin-left: 0.75rem;
}

.jea-onboard__section {
    margin-bottom: 3rem;
}

.jea-onboard__section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.jea-onboard__features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.jea-onboard__feature {
    padding: 1.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    position: relative;
}

.jea-onboard__feature--future {
    opacity: 0.7;
    background: #f9fafb;
}

.jea-onboard__feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    display: block;
    color: #3b82f6;
}

.jea-onboard--landlord .jea-onboard__feature-icon {
    color: #10b981;
}

.jea-onboard__feature h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.jea-onboard__feature p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.jea-onboard__badge-coming {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #fef3c7;
    color: #92400e;
    border-radius: 4px;
}

.jea-onboard__section--how .jea-onboard__steps {
    padding-left: 1.25rem;
}

.jea-onboard__section--how .jea-onboard__steps li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
}

.jea-onboard__bottom-cta {
    text-align: center;
    padding: 3rem 1rem;
    background: #f9fafb;
    border-radius: 12px;
    margin-top: 1rem;
}

.jea-onboard__bottom-cta p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.jea-onboard__login-hint {
    display: block;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}
